forked from twoixter/trackoid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
trackoid.gemspec
25 lines (22 loc) · 967 Bytes
/
trackoid.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
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "trackoid/version"
Gem::Specification.new do |s|
s.name = "trackoid"
s.version = Trackoid::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jose Miguel Perez"]
s.email = "josemiguel@perezruiz.com"
s.homepage = "http://github.com/twoixter/trackoid"
s.summary = "Trackoid is an easy scalable analytics tracker using MongoDB and Mongoid"
s.description = "Trackoid uses an embeddable approach to track analytics data using the poweful features of MongoDB for scalability"
s.rubyforge_project = "trackoid"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_dependency 'mongoid', "~> 4.0.0"
s.add_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'mocha'
end