From 44b78cc477c5433a383edf027d324c61e796be4c Mon Sep 17 00:00:00 2001 From: Ross Reinhardt Date: Fri, 29 May 2020 09:39:42 -0400 Subject: [PATCH] Release of 0.1.0.beta --- CHANGELOG.md | 9 +++++++++ demux.gemspec | 15 +++------------ lib/demux/version.rb | 4 +++- 3 files changed, 15 insertions(+), 13 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c5e5885 --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/demux.gemspec b/demux.gemspec index c43561e..db2d1f0 100644 --- a/demux.gemspec +++ b/demux.gemspec @@ -9,20 +9,11 @@ Gem::Specification.new do |spec| spec.version = Demux::VERSION spec.authors = ["Ross Reinhardt"] spec.email = ["rreinhardt9@gmail.com"] - 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" diff --git a/lib/demux/version.rb b/lib/demux/version.rb index 73a8ae3..071a1d1 100644 --- a/lib/demux/version.rb +++ b/lib/demux/version.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Demux - VERSION = '0.1.0' + VERSION = "0.1.0.beta" end