-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
38 lines (30 loc) · 928 Bytes
/
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
#coding:utf-8
require 'rake'
require 'echoe'
Echoe.new('rack-i18n_locale_switcher', '0.5.2') do |p|
p.description = "Detects the current locale from query parameter, path prefix, host or accept header."
p.url = "http://github.com/christoph-buente/rack-i18n_locale_switcher"
p.author = ["Christoph Bünte", "Andreas Korth"]
p.email = ["[email protected]", "[email protected]"]
p.retain_gemspec = true
p.ignore_pattern = %w{
Gemfile
Gemfile.lock
vendor/**/*
tmp/*
log/*
*.tmproj
}
p.runtime_dependencies = [ "rack", "i18n" ]
p.development_dependencies = [ "echoe", "rspec", "rack-test" ]
end
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
RSpec::Core::RakeTask.new(:rcov) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end
task :default => :spec