Skip to content

Commit

Permalink
don't install yardoc on travis
Browse files Browse the repository at this point in the history
rdiscount install seems to break under some circumstances and we don't need that to run the tests.
  • Loading branch information
Xylakant committed Apr 8, 2013
1 parent 6d2b34b commit 009df28
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
#bundler_args: --binstubs
bundler_args: --without documentation

# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
Expand Down
11 changes: 7 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
source :rubygems
source "https://rubygems.org"

group :documentation do
gem "rdiscount", :group => "documentation", :platforms => [:ruby_19] # added here since jruby does not like rdiscount
gem "yard", :group => "documentation", :platforms => [:ruby_19] # added here since jruby does not like rdiscount
end

gem "rdiscount", :group => "documentation", :platforms => [:ruby_19] # added here since jruby does not like rdiscount
gem "yard", :group => "documentation", :platforms => [:ruby_19] # added here since jruby does not like rdiscount
gem "jruby-openssl", :platforms => [:jruby]

gem "faraday", :group => :development

gemspec
gemspec

0 comments on commit 009df28

Please sign in to comment.