forked from davidsantoso/markety
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmarkety.gemspec
More file actions
19 lines (18 loc) · 733 Bytes
/
markety.gemspec
File metadata and controls
19 lines (18 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.push File.expand_path("../lib", __FILE__)
require 'markety/version'
Gem::Specification.new do |s|
s.name = "markety"
s.version = Markety::VERSION
s.summary = "Marketo SOAP API integration"
s.description = "A client to allow easy integration with Marketo's SOAP API"
s.authors = "David Santoso"
s.email = "david.e.santoso@gmail.com"
s.homepage = "https://github.com/davidsantoso/markety"
s.files = Dir['lib/**/*.rb']
s.require_path = 'lib'
s.executables << 'markety'
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'savon', '= 2.3.1'
s.add_dependency 'wasabi', '= 3.2.1'
s.add_development_dependency 'rspec', '>= 2.3.0'
end