forked from adhearsion/adhearsion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
59 lines (50 loc) · 1.5 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
# -*- ruby -*-
require 'bundler/gem_tasks'
require 'bundler/setup'
task :default => [:spec, :features]
task :gem => :build
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
# t.ruby_opts = "-w -r./spec/capture_warnings"
end
require 'ci/reporter/rake/rspec'
require 'ci/reporter/rake/cucumber'
task :ci => ['ci:setup:rspec', :spec, 'ci:setup:rspec', :features]
require 'cucumber'
require 'cucumber/rake/task'
require 'ci/reporter/rake/cucumber'
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = %w{--tags ~@jruby} unless defined?(JRUBY_VERSION)
end
Cucumber::Rake::Task.new(:wip) do |t|
t.cucumber_opts = %w{-p wip -q}
end
begin
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.files = ['lib/**/*.rb'] + %w[README.markdown TODO.markdown LICENSE]
end
rescue LoadError
STDERR.puts "\nCould not require() YARD! Install with 'gem install yard' to get the 'yardoc' task\n\n"
end
task :stats do
system 'doc/cloc-1.55.pl . --exclude-dir=.git,vendor,coverage,doc'
end
task :encodeify do
Dir['{bin,features,lib,spec}/**/*.rb'].each do |filename|
File.open filename do |file|
first_line = file.first
if first_line == "# encoding: utf-8\n"
puts "#{filename} is utf-8"
else
puts "Making #{filename} utf-8..."
File.unlink filename
File.open filename, "w" do |new_file|
new_file.write "# encoding: utf-8\n\n"
new_file.write first_line
new_file.write file.read
end
end
end
end
end