forked from keenlabs/keen-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeen.gemspec
More file actions
48 lines (39 loc) · 1.64 KB
/
keen.gemspec
File metadata and controls
48 lines (39 loc) · 1.64 KB
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
39
40
41
42
43
44
45
46
47
48
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "keen/version"
Gem::Specification.new do |s|
s.name = "keen"
s.version = Keen::VERSION
s.authors = ["Kyle Wild", "Josh Dzielak", "Daniel Kador"]
s.email = "josh@keen.io"
s.homepage = "https://github.com/keenlabs/keen-gem"
s.summary = "Keen IO API Client"
s.description = "Send events and build analytics features into your Ruby applications."
s.license = "MIT"
s.add_dependency "multi_json", "~> 1.3"
s.add_dependency "addressable", "~> 2.3.5"
s.add_dependency "jruby-openssl" if defined?(JRUBY_VERSION)
s.add_dependency 'rubysl', '~> 2.0' if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
# guard
unless RUBY_VERSION.start_with? '1.8'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
# guard cross-platform listener trick
s.add_development_dependency 'rb-inotify'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'rb-fchange'
# guard notifications
s.add_development_dependency 'ruby_gntp'
# fix guard prompt
s.add_development_dependency 'rb-readline' # or compile ruby w/ readline
end
# debuggers
if /\Aruby/ === RUBY_DESCRIPTION
s.add_development_dependency 'ruby-debug' if RUBY_VERSION.start_with? '1.8'
s.add_development_dependency 'debugger' if RUBY_VERSION.start_with? '1.9'
end
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"]
end