Rakefile in ideal-mollie-0.0.8 vs Rakefile in ideal-mollie-1.0.0
- old
+ new
@@ -1,8 +1,10 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new("spec")
-require "yard"
-YARD::Rake::YardocTask.new do |t|
- t.options += ["--title", "Ideal-Mollie #{IdealMollie::VERSION} Documentation"]
+if ENV['TRAVIS_BUILD'].nil?
+ require "yard"
+ YARD::Rake::YardocTask.new do |t|
+ t.options += ["--title", "Ideal-Mollie #{IdealMollie::VERSION} Documentation"]
+ end
end