Skip to content

Commit

Permalink
Add appraisal gem and config
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Larraz committed Oct 10, 2014
1 parent abda2cf commit da939c2
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,6 +4,7 @@
.config
.yardoc
Gemfile.lock
gemfiles/*.lock
InstalledFiles
_yardoc
coverage
Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -2,3 +2,7 @@ language: ruby
rvm:
- 1.9.3
- rbx-19mode
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
11 changes: 11 additions & 0 deletions Appraisals
@@ -0,0 +1,11 @@
appraise 'rails-3' do
gem 'rails', '~> 3.1'
end

appraise 'rails-4.0' do
gem 'rails', '~> 4.0.0'
end

appraise 'rails-4.1' do
gem 'rails', '~> 4.1.0'
end
7 changes: 7 additions & 0 deletions gemfiles/rails_3.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 3.1"

gemspec :path => "../"
7 changes: 7 additions & 0 deletions gemfiles/rails_4.0.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 4.0.0"

gemspec :path => "../"
7 changes: 7 additions & 0 deletions gemfiles/rails_4.1.gemfile
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "~> 4.1.0"

gemspec :path => "../"
1 change: 1 addition & 0 deletions kalendae_assets.gemspec
Expand Up @@ -15,6 +15,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = KalendaeAssets::VERSION
gem.add_dependency 'rails', '>= 3.1'
gem.add_development_dependency 'appraisal'
gem.add_development_dependency 'sqlite3'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'capybara'
Expand Down

0 comments on commit da939c2

Please sign in to comment.