-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
26 lines (24 loc) · 1 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
require 'rubygems'
require 'rake'
require 'spec/rake/spectask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "modesty"
gem.summary = %Q{Modesty is simple and scalable split testing and event tracking framework.}
gem.description = %Q{Modesty is simple and scalable split testing and event tracking framework. It was inspired by assaf's Vanity (github.com/assaf/vanity).}
gem.email = "jay@causes.com"
gem.homepage = "http://github.com/causes/modesty"
gem.authors = ["Jay Adkisson", "Kevin Ball", "Kristján Pétursson"]
gem.add_development_dependency "rspec"
gem.add_runtime_dependency "redis"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
Spec::Rake::SpecTask.new('spec') do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.ruby_opts = ['-Ilib']
t.spec_opts = ['-O spec/spec.opts']
end