forked from kjvarga/sitemap_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
43 lines (36 loc) · 995 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
39
40
41
42
43
require 'bundler/setup'
Bundler.require
desc 'Default: run spec tests.'
task :default => :spec
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = Dir.glob(['spec/sitemap_generator/**/*'])
spec.rspec_opts = ['--backtrace']
end
#
# Helpers
#
def name; @name ||= Dir['*.gemspec'].first.split('.').first end
def version; File.read('VERSION').chomp end
def gemspec_file; "#{name}.gemspec" end
def gem_file; "#{name}-#{version}.gem" end
#
# Release Tasks
# @see https://github.com/mojombo/rakegem
#
desc "Create tag v#{version}, build the gem and push to Git"
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git tag v#{version}"
sh "git push origin master --tags"
end
desc "Build #{gem_file} into the pkg/ directory"
task :build do
sh "mkdir -p pkg"
sh "gem build #{gemspec_file}"
sh "mv #{gem_file} pkg"
sh "bundle --local"
end