forked from johnreilly/activerecord-activesalesforce-adapter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Rakefile
20 lines (16 loc) · 1016 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "althor880-activerecord-activesalesforce-adapter"
gemspec.summary = "ActiveSalesforce (ASF) is a Rails connection adapter that provides direct access to Salesforce.com hosted data and metadata via the ActiveRecord model layer. Objects, fields, and relationships are all auto surfaced as active record attributes and rels."
gemspec.email = "althor880@gmail.com"
gemspec.homepage = "http://github.com/althor880/althor880-activerecord-activesalesforce-adapter"
gemspec.authors = ["Doug Chasman","Luigi Montanez","Senthil Nayagam","Justin Ball","Jesse Hallett", "Andrew Freeberg"]
gemspec.test_files = 'test/**/*'
gemspec.add_dependency('rails', '>= 2.3.3')
gemspec.add_dependency('builder', '>= 1.2.4')
gemspec.add_dependency('hpricot', '>=0.8.2')
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end