-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (25 loc) · 744 Bytes
/
Rakefile
File metadata and controls
32 lines (25 loc) · 744 Bytes
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
require 'bundler'
Bundler.setup
require 'rspec'
require 'rspec/core/rake_task'
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'geo_ruby/version'
desc 'Builds the gem'
task gem: :build
task :build do
system 'gem build georuby.gemspec'
Dir.mkdir('pkg') unless Dir.exist?('pkg')
system "mv georuby-#{GeoRuby::VERSION}.gem pkg/"
end
task install: :build do
system "sudo gem install pkg/georuby-#{GeoRuby::VERSION}.gem"
end
task release: :build do
system "git tag -a v#{GeoRuby::VERSION} -m 'Tagging #{GeoRuby::VERSION}'"
system 'git push --tags'
system "gem push pkg/georuby-#{GeoRuby::VERSION}.gem"
end
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
end
task default: [:spec]