Sha256: 7835d72670fd15b167795e9bda39c99b631e2b1b9dabfc3181ec1654bdd3b7c6

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 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 = "USPS-intelligent-barcode"
  gem.homepage = "http://github.com/wconrad/USPS-intelligent-barcode"
  gem.license = "MIT"
  gem.summary = %Q{Generates a USPS Intelligent Mail Barcode.}
  gem.description =
    ("A pure Ruby gem to generate a USPS Intelligent "\
     "Mail barcode.  It generates the string of characters "\
     "to print with one of the USPS Intelligent Mail barcode "\
     "fonts.")
  gem.email = "wayne@databill.com"
  gem.authors = ["Wayne Conrad"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "USPS-intelligent-barcode #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
USPS-intelligent-barcode-0.2.2 Rakefile
USPS-intelligent-barcode-0.2.1 Rakefile
USPS-intelligent-barcode-0.2.0 Rakefile
USPS-intelligent-barcode-0.1.2 Rakefile
USPS-intelligent-barcode-0.1.1 Rakefile
USPS-intelligent-barcode-0.1.0 Rakefile