Sha256: f6ec85d6c13bc37919d541df2d57d7bcba5dd40bbfe4f25b4932d76f7589c099
Contents?: true
Size: 636 Bytes
Versions: 5
Compression:
Stored size: 636 Bytes
Contents
require "bundler" Bundler.setup require "rake" require "rspec" require "rspec/core/rake_task" $LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require "origin/version" task :gem => :build task :build do system "gem build origin.gemspec" end task :install => :build do system "sudo gem install origin-#{Origin::VERSION}.gem" end task :release => :build do system "git tag -a v#{Origin::VERSION} -m 'Tagging #{Origin::VERSION}'" system "git push --tags" system "gem push origin-#{Origin::VERSION}.gem" end RSpec::Core::RakeTask.new("spec") do |spec| spec.pattern = "spec/**/*_spec.rb" end task :default => :spec
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
origin-1.0.3 | Rakefile |
origin-1.0.2 | Rakefile |
origin-1.0.1 | Rakefile |
origin-1.0.0 | Rakefile |
origin-1.0.0.rc | Rakefile |