Sha256: 88ed4915f4ff7db0439691b00665b10c795b1441e6d2f6ac45d42c534386e98f
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "shippinglogic" gem.summary = "A simple and clean library to interface with shipping carriers" gem.description = "Easily use FedEx, UPS, USPS web services with an elegant and simple syntax." gem.email = "bjohnson@binarylogic.com" gem.homepage = "http://github.com/binarylogic/shippinglogic" gem.authors = ["Ben Johnson of Binary Logic"] gem.rubyforge_project = "shippinglogic" gem.add_development_dependency "rspec" gem.add_dependency "activesupport", ">= 2.2.0" gem.add_dependency "httparty", ">= 0.4.4" end Jeweler::RubyforgeTasks.new do |rubyforge| rubyforge.doc_task = nil end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs << 'lib' << 'spec' spec.spec_files = FileList['spec/**/*_spec.rb'] end Spec::Rake::SpecTask.new(:rcov) do |spec| spec.libs << 'lib' << 'spec' spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
binarylogic-shippinglogic-1.0.6 | Rakefile |
binarylogic-shippinglogic-1.0.7 | Rakefile |
binarylogic-shippinglogic-1.0.8 | Rakefile |