forked from charlotte-ruby/impressionist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Rails 4 as a permitted dependency. Add Rails 4 to the test matrix…
…. Remove Ruby 1.8.x from test matrix because specs were failing anyway because of capybara dependency. Add JRuby to the test matrix and neaten up the JRuby dependencies.
- Loading branch information
1 parent
6ff7729
commit 28298d5
Showing
5 changed files
with
40 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
/test_app/test | ||
/test_app/vendor | ||
Gemfile.lock | ||
gemfiles/*.lock | ||
*.swo | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
language: ruby | ||
|
||
bundler_args: '--binstubs --without documentation' | ||
before_install: gem install bundler | ||
|
||
before_script: "cd tests/test_app && bundle install && ./script/rails generate impressionist -f && rake db:migrate && cd .." | ||
|
||
before_script: | ||
- cd tests/test_app | ||
- bundle exec rails g impressionist -f | ||
- bundle exec rake db:migrate | ||
- cd .. | ||
rvm: | ||
- rbx-18mode | ||
- rbx-19mode | ||
- 1.8.7 | ||
- 1.9.2 | ||
- 1.9.3 | ||
- ruby-head | ||
|
||
- 2.0.0 | ||
- jruby-19mode | ||
- rbx-19mode | ||
gemfile: | ||
- gemfiles/rails32.gemfile | ||
- gemfiles/rails40.gemfile | ||
matrix: | ||
exclude: | ||
- rvm: 1.9.2 | ||
gemfile: gemfiles/rails40.gemfile | ||
allow_failures: | ||
- rvm: rbx-18mode | ||
- rvm: 1.8.7 | ||
- rvm: 1.9.2 | ||
- rvm: ruby-head |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 3.2.12' | ||
gem 'jquery-rails' | ||
gem 'json' | ||
|
||
gem 'activerecord-jdbcsqlite3-adapter', :platforms => [:jruby] | ||
gem 'jdbc-sqlite3', :platforms => [:jruby] | ||
|
||
gem 'sqlite3', :platforms => [:ruby, :mswin, :mingw] | ||
|
||
gemspec :path => '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 4.0.0' | ||
gem 'jquery-rails' | ||
gem 'json' | ||
|
||
gem 'activerecord-jdbcsqlite3-adapter', '1.3.0.rc1', :platforms => [:jruby] | ||
|
||
gem 'sqlite3', :platforms => [:ruby, :mswin, :mingw] | ||
|
||
gemspec :path => '../' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters