forked from halorgium/dm-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdm-salesforce-adapter.gemspec
26 lines (24 loc) · 1.07 KB
/
dm-salesforce-adapter.gemspec
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
Gem::Specification.new do |s|
s.name = "dm-salesforce-adapter"
s.version = "1.0.7git"
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = [ "README.markdown", "LICENSE" ]
s.summary = "A DataMapper 1.x adapter to the Salesforce API"
s.description = s.summary
s.authors = [ "Jordan Ritter", "Frederic Jean", "Tim Carey-Smith", "Andy Delcambre", "Yehuda Katz" ]
s.email = "[email protected]"
s.homepage = "https://github.com/jpr5/dm-salesforce-adapter"
s.add_dependency "httpclient", "= 2.1.5.2"
s.add_dependency "data_objects", "~> 0.10.6"
s.add_dependency "dm-core", ">= 1.1.0", "< 1.3.0"
s.add_dependency "dm-validations", ">= 1.1.0", "< 1.3.0"
s.add_dependency "dm-types", ">= 1.1.0", "< 1.3.0"
if RUBY_VERSION.to_f == 1.9
s.add_dependency "soap4r-ruby1.9", "~> 2.0.0"
else
s.add_dependency "soap4r", "~> 1.5.8"
end
s.require_path = 'lib'
s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("lib/**/*")
end