forked from wasabhi/databasedotcom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabasedotcom.gemspec
28 lines (23 loc) · 1.02 KB
/
databasedotcom.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
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'databasedotcom/version'
Gem::Specification.new do |s|
s.name = 'databasedotcom'
s.version = Databasedotcom::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Glenn Gillen, Danny Burkes & Richard Zhao']
s.email = ['[email protected]']
s.homepage = 'https://github.com/heroku/databasedotcom'
s.summary = %q{[DEPRECATED] A ruby wrapper for the Force.com REST API}
s.description = %q{[DEPRECATED] A ruby wrapper for the Force.com REST API. Try restforce instead: https://github.com/ejholmes/restforce}
s.license = 'MIT'
s.rubyforge_project = 'databasedotcom'
s.files = Dir['README.md', 'MIT-LICENSE', 'lib/**/*']
s.require_paths = ['lib']
s.add_dependency 'multipart-post', '~> 2.0.0'
s.add_dependency 'json'
s.add_dependency 'activesupport'
s.add_development_dependency 'rspec', '~> 2.6'
s.add_development_dependency 'webmock'
s.add_development_dependency 'rake', '>= 0.8.6'
end