Sha256: 7227997d1756c5a5f70b3c020440e8983d2995db557bf4711702a77459142450
Contents?: true
Size: 1.2 KB
Versions: 7
Compression:
Stored size: 1.2 KB
Contents
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.name = "migrant" gem.summary = %Q{All the fun of ActiveRecord, without writing your migrations, and a dash of mocking.} gem.description = %Q{Easier schema management for Rails that compliments your domain model.} gem.email = "101pascal@gmail.com" gem.homepage = "http://github.com/pascalh1011/migrant" gem.authors = ["Pascal Houliston"] # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "migrant #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
migrant-1.2.1 | Rakefile |
migrant-1.2.0 | Rakefile |
migrant-1.1.2 | Rakefile |
migrant-1.1.1 | Rakefile |
migrant-1.1.0 | Rakefile |
migrant-1.0.2 | Rakefile |
migrant-1.0.1 | Rakefile |