Sha256: f3121cdd1a54cf24ef460013e9335f005f692a3d98bc279abdfdd46a13d913c9

Contents?: true

Size: 969 Bytes

Versions: 3

Compression:

Stored size: 969 Bytes

Contents

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 = "app_store_pricing_matrix"
  gem.homepage = "http://github.com/kenn/app_store_pricing_matrix"
  gem.license = "MIT"
  gem.summary = "Constants for App Store Pricing Matrix"
  gem.description = "A simple module that holds currencies and prices from the Apple's iOS App Store."
  gem.email = "kenn.ejima@gmail.com"
  gem.authors = ["Kenn Ejima", "Elliot Bowes"]
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

task :default => :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
app_store_pricing_matrix-1.3.0 Rakefile
app_store_pricing_matrix-1.2.0 Rakefile
app_store_pricing_matrix-1.1.0 Rakefile