forked from Mango/mango-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmango-ruby.gemspec
More file actions
executable file
·32 lines (27 loc) · 855 Bytes
/
Copy pathmango-ruby.gemspec
File metadata and controls
executable file
·32 lines (27 loc) · 855 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
31
32
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "mango-ruby"
s.version = "0.0.5"
s.summary = "Ruby wrapper for Mango API"
s.description = "API to interact with Mango\nhttps://getmango.com/"
s.authors = ["Mango development team", "Joaquín Vicente"]
s.email = ["support@getmango.com"]
s.homepage = "https://getmango.com/"
s.files = []
s.license = "MIT"
s.executables.push("mango")
s.add_dependency('rest-client', '~> 1.7')
s.add_development_dependency('cutest', '~> 1.2')
s.add_development_dependency('mocha', '~> 1.1')
s.files = %w{
bin/mango
lib/mango.rb
lib/mango-ruby.rb
lib/mango/resources.rb
lib/mango/operations.rb
}
s.test_files = %w{
test/mango_test.rb
test/test_helper.rb
}
end