public
Description: Access the Get Satisfaction API using Ruby
Homepage: http://api.getsatisfaction.com/
Clone URL: git://github.com/nullstyle/ruby-satisfaction.git
Click here to lend your support to: ruby-satisfaction and make a donation at www.pledgie.com !
ruby-satisfaction / Rakefile
100644 19 lines (18 sloc) 0.802 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "ruby-satisfaction"
    gemspec.summary = "Ruby interface to Get Satisfaction"
    gemspec.description = "Ruby interface to Get Satisfaction"
    gemspec.email = "scott@getsatisfaction.com"
    gemspec.homepage = "http://github.com/nullstyle/ruby-satisfaction"
    gemspec.authors = ["Scott Fleckenstein", "Josh Nichols", "Pius Uzamere"]
    gemspec.rubyforge_project = "satisfaction"
    gemspec.add_dependency('memcache-client', '>= 1.5.0')
    gemspec.add_dependency('oauth', '>= 0.3.5')
    gemspec.add_dependency('activesupport', '>= 2.3.2')
  end
  
  Jeweler::RubyforgeTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end