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
23 lines (20 loc) · 896 Bytes
/
analytics-ruby.gemspec
File metadata and controls
23 lines (20 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/segment_io/analytics/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'analytics-ruby'
spec.version = SegmentIo::Analytics::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'
# Ruby 1.8 requires json
spec.add_dependency 'json', ['~> 1.7'] if RUBY_VERSION < "1.9"
spec.add_development_dependency 'rake', '~> 10.3'
spec.add_development_dependency 'wrong', '~> 0.0'
spec.add_development_dependency 'rspec', '~> 3.3'
spec.add_development_dependency 'tzinfo', '1.2.1'
spec.add_development_dependency 'activesupport', '>= 3.0.0', '<4.0.0'
end