-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d70d35
commit 44b78cc
Showing
3 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Upcoming | ||
|
||
Nothing yet | ||
|
||
# 0.1.0.beta / 5-29-2020 | ||
|
||
- Ability to create new "apps" and "connections" to an account | ||
- Ability to generate signed token and redirect to a setup URL | ||
- Introduce basic "signals". When a signal is sent from a given account demux will split that signal and send it to all apps that are connected to that account and listening for that signal. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,20 +9,11 @@ Gem::Specification.new do |spec| | |
spec.version = Demux::VERSION | ||
spec.authors = ["Ross Reinhardt"] | ||
spec.email = ["[email protected]"] | ||
spec.homepage = "" | ||
spec.summary = "" | ||
spec.description = "" | ||
spec.homepage = "https://github.com/rreinhardt9/demux" | ||
spec.summary = "Configure your application to send signals to a constellation of other 'apps'" | ||
spec.description = "Configure your application to send signals to a constellation of other 'apps'" | ||
spec.license = "MIT" | ||
|
||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | ||
if spec.respond_to?(:metadata) | ||
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||
else | ||
raise "RubyGems 2.0 or newer is required to protect against " \ | ||
"public gem pushes." | ||
end | ||
|
||
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] | ||
|
||
spec.add_dependency "jwt", ">= 1.5", "< 3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Demux | ||
VERSION = '0.1.0' | ||
VERSION = "0.1.0.beta" | ||
end |