Sha256: 9e39cf3308805ea72c164e4ba6011d6922f2efe065672fb8d6dac543529e4bac

Contents?: true

Size: 870 Bytes

Versions: 6

Compression:

Stored size: 870 Bytes

Contents

task :default => :spec
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new {|t| t.rspec_opts = ['--color']}

# rake install -> install gem locally (for tests)
# rake release -> push to github and release to gemcutter
# rake version:bump:patch -> increase version and add a git-tag
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = 'standalone_migrations'
    gem.summary = "A thin wrapper to use Rails Migrations in non Rails projects"
    gem.email = "thuss@gabrito.com"
    gem.homepage = "http://github.com/thuss/standalone-migrations"
    gem.authors = ["Todd Huss", "Michael Grosser"]
    gem.files += ["lib/tasks/*"]
    %w[rake activerecord].each{|d| gem.add_dependency d}
  end

  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
standalone_migrations-0.4.5 Rakefile
standalone_migrations-0.4.4 Rakefile
standalone_migrations-0.4.3 Rakefile
standalone_migrations-0.4.2 Rakefile
standalone_migrations-0.4.1 Rakefile
standalone_migrations-0.4.0 Rakefile