Skip to content

Commit

Permalink
Actually, guard-ronn doesn't support JRuby so ensure it isn't loaded …
Browse files Browse the repository at this point in the history
…on the CI
  • Loading branch information
rymai committed Oct 15, 2013
1 parent c3849df commit b948558
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ gem 'rake'
group :development, :test do
# This plugin is required in the tests!
gem 'guard-rspec', require: false
gem 'guard-ronn', require: false
end

# The development group will no be
Expand All @@ -16,7 +15,7 @@ end
group :development do
gem 'yard'
gem 'redcarpet'
gem 'pimpmychangelog'
gem 'guard-ronn', require: false

require 'rbconfig'

Expand Down
8 changes: 5 additions & 3 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ group :specs do
end
end

group :docs do
guard :ronn do
watch(%r{^man/.+\.ronn?$})
if ENV['CI'] != 'true'
group :docs do
guard :ronn do
watch(%r{^man/.+\.ronn?$})
end
end
end

0 comments on commit b948558

Please sign in to comment.