forked from albertosaurus/themis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
57 lines (43 loc) · 1.31 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
#!/usr/bin/env rake
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'themis/version'
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
def gemspec
@gem_spec ||= eval( open( `ls *.gemspec`.strip ){|file| file.read } )
end
def gem_version
gemspec.version
end
def gem_version_tag
"v#{gem_version}"
end
def gem_name
gemspec.name
end
def gem_file_name
"#{gem_name}-#{gem_version}.gem"
end
require "jeweler"
Jeweler::Tasks.new do |gem|
gem.name = "themis"
gem.summary = "Flexible and modular validations for ActiveRecord models"
gem.description = "Flexible and modular validations for ActiveRecord models"
gem.email = ['[email protected]', '[email protected]']
gem.authors = ['TMX Credit' , 'Potapov Sergey']
gem.files = Dir["{app,config,db,lib}/**/*"] + Dir['Rakefie', 'README.markdown']
gem.version = Themis::VERSION
gem.license = 'MIT'
end
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
#Rake::Task[:spec].enhance ['db:setup']
task :default => :spec