Sha256: 7f43eec0f6ba455d1dbd1420e908a8aaf3c578d7e04a971ab7d4ed68b2f38d60
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
PROJECT_NAME = "ruby-station" begin require 'jeweler' rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end Jeweler::Tasks.new do |gemspec| gemspec.name = "#{PROJECT_NAME}" gemspec.summary = "Create, Distribute, and Install Ruby applications easily" gemspec.email = "yutaka.hara/at/gmail.com" gemspec.homepage = "http://github.com/yhara/#{PROJECT_NAME}" gemspec.description = gemspec.summary gemspec.authors = ["Yutaka HARA"] gemspec.add_dependency('ramaze', '>= 2009.07') gemspec.add_dependency('dm-core', '>= 0.10.1') gemspec.add_dependency('do_sqlite3', '>= 0.10.0') gemspec.add_development_dependency('rspec', '>= 1.2.8') gemspec.add_development_dependency('cucumber', '>= 0.3.101') gemspec.executables = ["ruby-station"] end desc "install current source as gem" task :dogfood => [:gemspec, :build] do sh "sudo gem install pkg/#{PROJECT_NAME}-#{File.read("VERSION").chomp}.gem" end desc "uninstall the installed gem" task :undogfood do sh "sudo gem uninstall #{PROJECT_NAME}" end desc "uninstall, then install current source as gem" task :redogfood => [:undogfood, :dogfood] desc "uninstall temporary gem and install from github" task :nodogfood do sh "sudo gem uninstall #{PROJECT_NAME}" sh "sudo gem install yhara-#{PROJECT_NAME}" end desc "check for gem to be built" task :stalk do sh "gemstalk yhara #{PROJECT_NAME}" end # for runtime runtime_version = File.read("runtime/VERSION").chomp desc "Create runtime gem" task :runtime do cd "runtime/" sh "rake gemspec" sh "gem build ruby-station-runtime.gemspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-station-0.1.3 | Rakefile |