forked from phstc/mongomapper_id2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
38 lines (31 loc) · 973 Bytes
/
Rakefile
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
32
33
34
35
36
37
38
require 'rubygems'
require 'rake'
require 'rake/testtask'
require File.expand_path('../lib/mongomapper_id2/version', __FILE__)
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/{functional,unit}/**/test_*.rb'
end
namespace :test do
Rake::TestTask.new(:lint) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/test_active_model_lint.rb'
end
task :all => ['test', 'test:lint']
end
task :default => 'test:all'
desc 'Builds the gem'
task :build do
sh "gem build mongomapper_id2.gemspec"
end
desc 'Builds and installs the gem'
task :install => :build do
sh "gem install mongomapper_id2-#{MongomapperId2::VERSION}"
end
desc 'Tags version, pushes to remote, and pushes gem'
task :release => :build do
sh "git tag v#{MongomapperId2::VERSION}"
sh "git push origin master"
sh "git push origin v#{MongomapperId2::VERSION}"
sh "gem push mongomapper_id2-#{MongomapperId2::VERSION}.gem"
end