File tree Expand file tree Collapse file tree 5 files changed +14
-12
lines changed
Expand file tree Collapse file tree 5 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,24 @@ language: ruby
33cache :
44 - apt
55rvm :
6- - ruby- 2.5.3
6+ - 2.5.6
77
88gemfile :
99 - Gemfile-rails-4.2.x
1010 - Gemfile-rails-5.0.x
1111 - Gemfile-rails-5.1.x
1212
1313before_install :
14- - " find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
15- - ' gem uninstall -i /home/travis/.rvm/gems/ruby-2.5.3@global bundler -x'
16- - ' gem uninstall bundler -x'
17- - ' gem install bundler -v 1.17.3'
18- - ' gem update --system'
14+ - gem update --system
15+ - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
16+ - gem install bundler -v '< 2'
17+ - bundle --version
1918
2019notifications :
2120 email : false
2221
23- script : " bundle _1.17.3_ exec rspec spec --color --profile"
22+ script : " bundle exec rspec spec --color --profile"
23+
24+ env :
25+ global :
26+ - BUNDLER_VERSION=1.17.3
Original file line number Diff line number Diff line change 1- source ' https://rubygems.org '
1+ source ' https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems '
22
33gem ' activesupport' , ' ~> 4.2.11'
44
Original file line number Diff line number Diff line change 1- source ' https://rubygems.org '
1+ source ' https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems '
22
33gem ' activesupport' , ' ~> 5.0.0'
44
Original file line number Diff line number Diff line change 1- source ' https://rubygems.org '
1+ source ' https://artifactory.ops.aws.lumoslabs.net/artifactory/api/gems/gems '
22
33gem ' activesupport' , ' ~> 5.1.0'
44
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616 # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
1717 # to allow pushing to a single host or delete this section to allow pushing to any host.
1818 if spec . respond_to? ( :metadata )
19- spec . metadata [ "allowed_push_host" ] = "TODO: Set to 'http ://mygemserver.com'"
19+ spec . metadata [ "allowed_push_host" ] = 'https ://artifactory.ops.aws.lumoslabs.net'
2020 else
2121 raise "RubyGems 2.0 or newer is required to protect against " \
2222 "public gem pushes."
@@ -31,7 +31,6 @@ Gem::Specification.new do |spec|
3131 spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
3232 spec . require_paths = [ "lib" ]
3333
34- spec . add_development_dependency "bundler" , "~> 1.17.3"
3534 spec . add_development_dependency "rake" , "~> 10.0"
3635 spec . add_development_dependency "rspec" , "~> 3.0"
3736end
You can’t perform that action at this time.
0 commit comments