Rakefile in ironnails-0.0.1 vs Rakefile in ironnails-0.0.3
- old
+ new
@@ -9,13 +9,31 @@
gem.description = %Q{IronNails is a framework inspired by the Rails and rucola frameworks. It offers a rails-like way of developing
applications with IronRuby and Windows Presentation Foundation (WPF).}
gem.email = "ivan@flanders.co.nz"
gem.homepage = "http://github.com/casualjim/ironnails"
gem.authors = ["Ivan Porto Carrero"]
+ gem.bindir = "bin"
+ gem.executables = ['ironnails']
+ gem.add_runtime_dependency "thor", "= 0.11.8"
+ gem.add_runtime_dependency "activesupport", ">= 2.3.5"
+ gem.add_runtime_dependency "bundler", "= 0.9.2"
+ gem.add_runtime_dependency "uuidtools", ">= 2.1.1"
gem.add_development_dependency "rspec", ">= 0"
- gem.files = FileList["[A-Z]*", "{lib}/**/*"]
+ gem.files = FileList["[A-Z]*", "{lib,generators,bin}/**/*"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
-end
\ No newline at end of file
+end
+
+desc "Build the helpers project"
+task :helpers do
+ puts "Building the helpers project"
+ system "msbuild /clp:ErrorsOnly;WarningsOnly /nologo ../IronNails.Library/IronNails.Library.csproj"
+end
+
+desc "Cleans and builds the helpers project"
+task :rebuild_helpers do
+ puts "Reuilding the helpers project"
+ system "msbuild /clp:ErrorsOnly;WarningsOnly /t:Clean /nologo ../IronNails.Library/IronNails.Library.csproj"
+end