-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaarrr.gemspec
36 lines (30 loc) · 1004 Bytes
/
aarrr.gemspec
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
Gem::Specification.new do |s|
s.name = "aarrr"
s.version = "0.0.1"
s.authors = ["Jacques Crocker"]
s.summary = "metrics for pirates"
s.description = "AARRR helps track user lifecycle metrics via MongoDB. It also provides cohort and reporting tools."
s.email = "[email protected]"
s.homepage = "http://github.com/railsjedi/aarrr"
s.rubyforge_project = "none"
s.require_paths = ["lib"]
s.files = Dir['lib/**/*',
'spec/**/*',
'aarrr.gemspec',
'Gemfile',
'Gemfile.lock',
'Guardfile',
'LICENSE',
'Rakefile',
'README.md']
s.test_files = Dir['spec/**/*']
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.add_runtime_dependency "rack", ">= 1.2.2"
s.add_runtime_dependency "mongo", ">= 1.3.1"
s.add_runtime_dependency "activesupport", ">= 3.0"
s.add_development_dependency "rspec", ">= 2.0"
end