Skip to content

Commit

Permalink
gemfile and gemspec for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip (flip) Kromer committed Aug 12, 2012
1 parent e898d2d commit 581c340
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 9 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
language: ruby
rvm:
- 1.9.3
# - 1.9.2
# - jruby-19mode # JRuby in 1.9 mode
# - rbx-19mode

before_install: "git clone -b version_1 git://github.com/infochimps-labs/gorillib.git ~/builds/infochimps-labs/gorillib"

bundler_args: --without docs support

branches:
only:
- master
- wukong_ng
- vanilla_2

notifications:
email: false
21 changes: 12 additions & 9 deletions Gemfile
Expand Up @@ -12,25 +12,28 @@ gem 'home_run', :platform => :mri, :require=>'date'
group :development do
gem 'bundler', "~> 1.1"
gem 'rake'
gem 'rspec', "~> 2.8"
gem 'yard', ">= 0.7"
gem 'rspec', "~> 2.8"
gem 'jeweler', ">= 1.6"
#
gem 'RedCloth', "~> 4.2"
gem 'redcarpet', ">= 2.1"
gem 'oj', ">= 1.2"
gem 'oj', ">= 1.2", :platform => :ruby
gem 'json', :platform => :jruby
end

# Gems you would use if hacking on this gem (rather than with it)
group :support do
gem 'jeweler', ">= 1.6"
gem 'pry'
gem 'perftools.rb', :platform => :mri
group :docs do
gem 'RedCloth', ">= 4.2", :require => "redcloth"
gem 'redcarpet', ">= 2.1"
end

# Gems for testing and coverage
group :test do
gem 'simplecov', ">= 0.5", :platform => :ruby_19
end

# Gems you would use if hacking on this gem (rather than with it)
group :support do
gem 'pry'
gem 'perftools.rb', :platform => :mri
#
gem 'guard', ">= 1.0"
gem 'guard-rspec', ">= 0.6"
Expand Down

0 comments on commit 581c340

Please sign in to comment.