Sha256: c22c5cc19600ca2bc5b54e183b16a71a21a47b3fbc81eecf51d37ad4ab01489e
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "ironnails" gem.summary = %Q{IronNails brings rails like development to IronRuby and WPF} 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,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 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ironnails-0.0.3 | Rakefile |