Skip to content

Commit

Permalink
Rack dependency fix for Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
davidakachaos committed Aug 29, 2016
1 parent e29651c commit 42b75f6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -23,4 +23,6 @@ pkg
.rvmrc

## PROJECT::SPECIFIC
Gemfile.lock
Gemfile.lock
*.gem
gemfiles/*.lock
4 changes: 2 additions & 2 deletions Rakefile
@@ -1,11 +1,11 @@
require 'rubygems'
require 'rake'
require 'bundler'
require 'bundler/setup'

require 'rspec/core/rake_task'
desc "Run RSpec"
RSpec::Core::RakeTask.new do |t|
t.verbose = false
end

task :default => :spec
task :default => :spec
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails-3.2.x
Expand Up @@ -4,5 +4,8 @@ gem 'coveralls', :require => false
gem 'simplecov', :require => false

gem 'rails', '~> 3.2.22'
if RUBY_VERSION < "2.2.0"
gem 'rack', '<= 1.6.0'
end

gemspec :path => '..'
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails-4.0.x
Expand Up @@ -4,5 +4,8 @@ gem 'coveralls', :require => false
gem 'simplecov', :require => false

gem 'rails', '~> 4.0.0'
if RUBY_VERSION < "2.2.0"
gem 'rack', '1.6.0'
end

gemspec :path => '..'
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails-4.1.x
Expand Up @@ -4,5 +4,8 @@ gem 'coveralls', :require => false
gem 'simplecov', :require => false

gem 'rails', '~> 4.1.0'
if RUBY_VERSION < "2.2.0"
gem 'rack', '1.6.0'
end

gemspec :path => '..'
3 changes: 3 additions & 0 deletions gemfiles/Gemfile.rails-4.2.x
Expand Up @@ -4,5 +4,8 @@ gem 'coveralls', :require => false
gem 'simplecov', :require => false

gem 'rails', '~> 4.2.0'
if RUBY_VERSION < "2.2.0"
gem 'rack', '1.6.0'
end

gemspec :path => '..'

0 comments on commit 42b75f6

Please sign in to comment.