Sha256: d7dd656c5182d7aa4ff2d0be13cecae0ba094e1956820850edafb0aa6fe31711
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 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') gemspec.add_dependency('do_sqlite3') gemspec.add_development_dependency('rspec', '= 1.2.8') 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.0 | Rakefile |