Skip to content

Commit

Permalink
Release of 0.1.0.beta
Browse files Browse the repository at this point in the history
  • Loading branch information
rreinhardt9 committed May 29, 2020
1 parent 5d70d35 commit 44b78cc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
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.
15 changes: 3 additions & 12 deletions demux.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion lib/demux/version.rb
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

0 comments on commit 44b78cc

Please sign in to comment.