Sha256: 31935f04e0f2672974513161cbe2ae507cd15489c6e46d675eba7af49733c4ac

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 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 = "exp"
  gem.homepage = "http://github.com/gametheoretic/exp"
  gem.license = "MIT"
  gem.summary = %Q{quick-and-dirty #to_json exports for the extraordinarily lazy}
  gem.description = %Q{no; we're too lazy for that.}
  gem.email = "gametheoretic@gmail.com"
  gem.authors = ["michael d. towle"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new


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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
exp-1.0.2 Rakefile
exp-1.0.1 Rakefile
exp-1.0.0 Rakefile