Sha256: 6e2f8434c3dd39d5734dbfd41e7ebbe81f6cbc6766fc28324410f1c30d4f3011
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "activeforce" gem.homepage = "http://github.com/appfolio/activeforce" gem.license = "MIT" gem.summary = %Q{A Simple gem to interact with the Salesforce REST API} gem.description = %Q{ Activeforce provides a simple to use and extend interface to Salesforce using the REST API} gem.email = "andrew.mutz@appfolio.com" gem.authors = "Andrew Mutz" end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = true end require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = true test.rcov_opts = ['--exclude "gems/*"'] end task :default => :test require 'yard' YARD::Rake::YardocTask.new
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activeforce-1.7.1 | Rakefile |