Sha256: 12e64d683e8d3c84bb0e283dd9a5fc1833beb7e84ecd85c2a0f500fcf3c03b9a
Contents?: true
Size: 1.2 KB
Versions: 10
Compression:
Stored size: 1.2 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 = "lock_jar" gem.homepage = "http://github.com/mguymon/lock_jar" gem.license = "Apache" gem.summary = "Manage Jar files for Ruby" gem.description = "Manage Jar files for Ruby. In the spirit of Bundler, a Jarfile is used to generate a Jarfile.lock that contains all the resolved jar dependencies for scopes runtime, compile, and test. The Jarfile.lock can be used to populate the classpath" gem.email = "michael.guymon@gmail.com" gem.authors = ["Michael Guymon"] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "lockjar #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
10 entries across 10 versions & 1 rubygems