Sha256: c2c352949a335f1d48c186c91bb3eb7e6d2523d3868fba7ffeb0c7c7b4e7faf5
Contents?: true
Size: 1.19 KB
Versions: 3
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 = "tusharranka@gmail.com" gem.authors = ["Tushar Ranka"] 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activeforce-1.7.0 | Rakefile |
activeforce-1.6.0 | Rakefile |
activeforce-1.5.0 | Rakefile |