Sha256: 4d0603544d272599550f9c0d702a0d8b26d06cdde45cdd60390c912b9c9738eb

Contents?: true

Size: 1.17 KB

Versions: 22

Compression:

Stored size: 1.17 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 = "amazon_seller_central"
  gem.homepage = "http://github.com/optoro/amazon_seller_central"
  gem.license = "MIT"
  gem.summary = %Q{Ruby API to access Amazon's SellerCentral}
  gem.description = %Q{This gem is intended to wrap Amazon's SellerCentral pages with a Ruby API. Currently this gem supports accessing buyer feedback only.}
  gem.email = "dev@optoro.com"
  gem.authors = ["optoro"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
amazon_seller_central-0.3.2 Rakefile
amazon_seller_central-0.3.1 Rakefile
amazon_seller_central-0.3.0 Rakefile
amazon_seller_central-0.2.16 Rakefile
amazon_seller_central-0.2.15 Rakefile
amazon_seller_central-0.2.14 Rakefile
amazon_seller_central-0.2.13 Rakefile
amazon_seller_central-0.2.12 Rakefile
amazon_seller_central-0.2.11 Rakefile
amazon_seller_central-0.2.10 Rakefile
amazon_seller_central-0.2.9 Rakefile
amazon_seller_central-0.2.8 Rakefile
amazon_seller_central-0.2.7 Rakefile
amazon_seller_central-0.2.6 Rakefile
amazon_seller_central-0.2.5 Rakefile
amazon_seller_central-0.2.4 Rakefile
amazon_seller_central-0.2.3 Rakefile
amazon_seller_central-0.2.2 Rakefile
amazon_seller_central-0.2.1 Rakefile
amazon_seller_central-0.2.0 Rakefile