Rakefile in broken_link_finder-0.8.1 vs Rakefile in broken_link_finder-0.9.0
- old
+ new
@@ -13,9 +13,19 @@
desc "Print help information"
task :help do
system "bundle exec rake -D"
end
+desc "Run the setup script"
+task :setup do
+ system "./bin/setup"
+end
+
+desc "Run the development console"
+task :console do
+ system "./bin/console"
+end
+
desc "Compile all project Ruby files with warnings."
task :compile do
paths = Dir["**/*.rb", "**/*.gemspec", 'exe/broken_link_finder']
paths.each do |f|
puts "\nCompiling #{f}..."