Rakefile in trivial-0.0.6 vs Rakefile in trivial-0.0.7
- old
+ new
@@ -29,5 +29,12 @@
FileUtils.cp File.join('blueprint-css', 'LICENSE'), File.join('..', 'styles', 'blueprint')
Dir.chdir '..'
FileUtils.rm_r 'blueprint'
end
end
+
+namespace :php do
+ desc "Syntax check trivial.php"
+ task :syntax_check do
+ system %{php -l lib/trivial.php}
+ end
+end