Rakefile in jets-0.8.18 vs Rakefile in jets-0.9.0
- old
+ new
@@ -3,10 +3,17 @@
task :default => :spec
RSpec::Core::RakeTask.new
+namespace :spec do
+ desc "Run integration test"
+ task :integration do
+ system("spec/bin/integration.sh")
+ end
+end
+
require_relative "lib/jets"
desc "Generates cli reference docs as markdown"
task :docs do
Jets::Commands::Markdown::Creator.create_all
end
@@ -15,6 +22,7 @@
require 'rdoc/task'
require 'jets/rdoc'
RDoc::Task.new do |rdoc|
rdoc.options += Jets::Rdoc.options
-end
\ No newline at end of file
+end
+