Sha256: 74ae741a8b04b0475ca03991f3c4b2a947cdf563650864370e108f30f918cb3c
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 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 library 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 = "wconrad@yagni.com" gem.authors = ["Wayne Conrad"] gem.post_install_message = <<-MESSAGE The USPS-intelligent-barcode gem has been deprecated and has been replaced by usps-intelligent-barcode. See: https://rubygems.org/gems/usps_intelligent_barcode And: https://github.com/wconrad/usps_intellgent_barcode MESSAGE # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :spec require 'yard' YARD::Rake::YardocTask.new do |t| end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
USPS-intelligent-barcode-0.2.6 | Rakefile |