diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f4862b..3a967c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.2 +* Remove allowed_push_host from gemspec +* Switch to rubygems + # 0.1.1 * Fix Travis build diff --git a/Gemfile-rails-4.2.x b/Gemfile-rails-4.2.x index 718ce3d..d359f43 100644 --- a/Gemfile-rails-4.2.x +++ b/Gemfile-rails-4.2.x @@ -1,4 +1,4 @@ -source 'https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems' +source 'https://rubygems.org' gem 'activesupport', '~> 4.2.11' diff --git a/Gemfile-rails-5.0.x b/Gemfile-rails-5.0.x index 9af7f49..dc0e4b8 100644 --- a/Gemfile-rails-5.0.x +++ b/Gemfile-rails-5.0.x @@ -1,4 +1,4 @@ -source 'https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems' +source 'https://rubygems.org' gem 'activesupport', '~> 5.0.0' diff --git a/Gemfile-rails-5.1.x b/Gemfile-rails-5.1.x index 569982b..41f100e 100644 --- a/Gemfile-rails-5.1.x +++ b/Gemfile-rails-5.1.x @@ -1,4 +1,4 @@ -source 'https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems' +source 'https://rubygems.org' gem 'activesupport', '~> 5.1.0' diff --git a/lib/lumos_service/version.rb b/lib/lumos_service/version.rb index 02a08ad..1be7504 100644 --- a/lib/lumos_service/version.rb +++ b/lib/lumos_service/version.rb @@ -1,3 +1,3 @@ module LumosService - VERSION = "0.1.1" + VERSION = "0.1.2" end diff --git a/lumos_service.gemspec b/lumos_service.gemspec index 128c4aa..0eed143 100644 --- a/lumos_service.gemspec +++ b/lumos_service.gemspec @@ -6,22 +6,13 @@ Gem::Specification.new do |spec| spec.name = "lumos_service" spec.version = LumosService::VERSION spec.authors = ["Andrii Mosin"] - spec.email = ["andriymosin@gmail.com"] + spec.email = ["andrii@lumoslabs.com"] spec.summary = 'Service Objects for the win!' spec.description = 'Service Objects for Lumosity' spec.homepage = 'https://github.com/lumoslabs/lumos_service' 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"] = 'https://artifactory.ops.aws.lumoslabs.net' - else - raise "RubyGems 2.0 or newer is required to protect against " \ - "public gem pushes." - end - # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do