forked from inukshuk/csl-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
69 lines (54 loc) · 1.22 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
58
59
60
61
62
63
64
65
66
67
68
69
# encoding: utf-8
require 'bundler'
begin
Bundler.setup
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
$:.unshift(File.join(File.dirname(__FILE__), './lib'))
require 'csl/version'
desc 'Run a Pry session with CSL loaded'
task :console do
ARGV.clear
require 'pry'
require 'csl'
Pry.start
end
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:cucumber) do |t|
t.profile = 'default'
end
begin
require 'coveralls/rake/task'
Coveralls::RakeTask.new
task :test_with_coveralls => [:spec, :cucumber, 'coveralls:push']
rescue LoadError => e
# ignore
end if ENV['CI']
task :release do |t|
system "gem build csl.gemspec"
system "git tag #{CSL::VERSION}"
system "git push --tags"
system "gem push csl-#{CSL::VERSION}.gem"
end
task :default => [:spec, :cucumber]
task :check_warnings do
$VERBOSE = true
require 'csl'
CSL::Style.new
CSL::Locale.new
puts CSL::VERSION
end
begin
require 'yard'
YARD::Rake::YardocTask.new
rescue LoadError => e
# ignore
end