-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinnsights.gemspec
33 lines (28 loc) · 1.22 KB
/
innsights.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'innsights/version'
Gem::Specification.new do |s|
s.name = "innsights"
s.version = Innsights::VERSION
s.authors = ["Adrian Cuadros"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/innku/innsights"
s.summary = %q{Analytics that measure app metrics with the apps language}
s.description = %q{Analytics that model your apps metrics and concepts and measure your User engagement}
s.rubyforge_project = "innsights"
s.files = `git ls-files`.split("\n")
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.require_paths = ["lib"]
# Runtime dependencies
s.add_runtime_dependency "rails", '>=3.0.0'
s.add_runtime_dependency "rest-client"
s.add_runtime_dependency "ruby-progressbar", '~>0.0.10'
s.add_runtime_dependency "highline"
s.add_runtime_dependency "resque"
s.add_runtime_dependency "delayed_job"
s.add_runtime_dependency "daemons"
# Development dependencies
# s.add_development_dependency "factory_girl_rails"
end