Sha256: 3d04bcb91e161fc63f683198b06bc508e13a3a0206b644cc5ee167c9247a69e2

Contents?: true

Size: 1.41 KB

Versions: 17

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
require 'pry'
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://guides.rubygems.org/specification-reference/ for more options
  gem.name = "historiographer"
  gem.homepage = "http://github.com/brettshollenberger/historiographer"
  gem.license = "MIT"
  gem.summary = %Q{Create histories of your ActiveRecord tables}
  gem.description = %Q{Creates separate tables for each history table}
  gem.email = "brett.shollenberger@gmail.com"
  gem.authors = ["brettshollenberger"]
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'spec'
  test.pattern = 'rspec/**/*_spec.rb'
  test.verbose = true
end

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['test'].execute
end

task :default => :test

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

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

require 'standalone_migrations'
StandaloneMigrations::Tasks.load_tasks

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
historiographer-4.1.0 /Users/brettshollenberger/programming/historiographer/Rakefile
historiographer-4.0.0 Rakefile
historiographer-3.1.2 Rakefile
historiographer-3.1.1 Rakefile
historiographer-3.1.0 Rakefile
historiographer-3.0.0 Rakefile
historiographer-2.0.1 Rakefile
historiographer-2.0.0 Rakefile
historiographer-1.4.3 Rakefile
historiographer-1.4.1 Rakefile
historiographer-1.4.0 Rakefile
historiographer-1.3.1 Rakefile
historiographer-1.3.0 Rakefile
historiographer-1.2.0 Rakefile
historiographer-1.1.0 Rakefile
historiographer-1.0.2 Rakefile
historiographer-1.0.0 Rakefile