forked from tobuy/localytics-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalytics-ruby.gemspec
More file actions
30 lines (25 loc) · 854 Bytes
/
localytics-ruby.gemspec
File metadata and controls
30 lines (25 loc) · 854 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
28
29
30
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'localytics-ruby'
s.version = '0.0.3'
s.summary = 'Ruby wrapper for Localytics API'
s.description = 'API to interact with Localytics https://localytics.com/'
s.authors = ['Tobuy development team', 'Marcos Chicote']
s.email = ['support@tob.uy']
s.homepage = 'https://github.com/tobuy/localytics-ruby'
s.files = []
s.license = 'MIT'
s.add_dependency('rest-client', '~> 1.7')
s.add_development_dependency('cutest', '~> 1.2')
s.add_development_dependency('mocha', '~> 1.1')
s.files = %w{
lib/localytics.rb
lib/localytics-ruby.rb
lib/localytics/profile.rb
lib/localytics/push.rb
}
s.test_files = %w{
test/localytics_test.rb
test/test_helper.rb
}
end