forked from segmentio/analytics-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics-ruby.gemspec
More file actions
27 lines (21 loc) · 890 Bytes
/
analytics-ruby.gemspec
File metadata and controls
27 lines (21 loc) · 890 Bytes
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
$:.push File.expand_path('../lib', __FILE__)
require 'analytics-ruby/version'
Gem::Specification.new do |spec|
spec.name = 'analytics-ruby'
spec.version = AnalyticsRuby::VERSION
spec.files = Dir.glob('**/*')
spec.require_paths = ['lib']
spec.summary = 'Segment.io analytics library'
spec.description = 'The Segment.io ruby analytics library'
spec.authors = ['Segment.io']
spec.email = 'friends@segment.io'
spec.homepage = 'https://github.com/segmentio/analytics-ruby'
spec.license = 'MIT'
spec.add_dependency 'faraday', ['>= 0.8', '< 0.10']
spec.add_dependency 'faraday_middleware', ['>= 0.8', '< 0.10']
spec.add_dependency 'multi_json', ['~> 1.0']
# Ruby 1.8 requires json for faraday_middleware
spec.add_dependency 'json', ['~> 1.7'] if RUBY_VERSION < "1.9"
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec')
end