forked from jffjs/mongoid_auto_inc
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Rakefile
57 lines (48 loc) · 1.48 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'rubygems'
require 'rake'
require 'bundler'
Bundler::GemHelper.install_tasks
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = 'mongoid_auto_increment'
gem.homepage = 'http://github.com/proton/mongoid_auto_increment'
gem.license = 'MIT'
gem.summary = 'Auto-incrementing fields for Mongoid documents'
gem.description = 'Add SQL like auto-incrementing fields to your Mongoid documents.'
gem.email = '[email protected]'
gem.authors = ['Peter Savichev (proton)']
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
end
task default: :spec
require 'rdoc/task'
RDoc::Task.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ''
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "mongoid_auto_increment #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
desc 'Build gem'
task :build do
puts 'Regenerating gemspec'
system 'rake gemspec'
puts 'Building'
system 'gem build mongoid_auto_increment.gemspec'
end
desc 'Release gem'
task release: :build do
version = File.exist?('VERSION') ? File.read('VERSION') : ''
end