File: Rakefile

package info (click to toggle)
ruby-origin 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: ruby: 1,196; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
  system "rm origin-#{Origin::VERSION}.gem"
end

RSpec::Core::RakeTask.new("spec") do |spec|
  spec.pattern = "spec/**/*_spec.rb"
end

task :default => :spec