Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TravisCI integration #36

Merged
merged 17 commits into from
May 18, 2018
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: ruby
cache: bundler
sudo: false
rvm:
- 2.0.0-p598
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- jruby-9.0.5.0
- jruby-9.1.9.0
before_install:
- gem update --system
script:
- bundle exec rubocop && bundle exec rake
2 changes: 1 addition & 1 deletion rosetta.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Gem::Specification.new do |s|
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']

s.add_dependency 'rails'

s.add_dependency 'request_store'

# Development/Test dependencies
Expand All @@ -25,5 +24,6 @@ Gem::Specification.new do |s|
s.add_development_dependency 'pry-rails'
s.add_development_dependency 'rspec-its'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'sqlite3'
end