Sha256: 4ea11086e28442402108288a3e9c5d52850c4ea0301cea86933c9aa7950896d5

Contents?: true

Size: 994 Bytes

Versions: 24

Compression:

Stored size: 994 Bytes

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 = "active_record_schema"
  gem.homepage = "http://github.com/mcasimir/active_record_schema"
  gem.license = "MIT"
  gem.summary = %Q{ActiveRecord extension allowing to write schema in models and to generate migrations from models}
  gem.description = %Q{ActiveRecordSchema is an ActiveRecord extension that allows you to write the database schema for a model within the model itself and to generate migrations directly from models.}
  gem.email = "maurizio.cas@gmail.com"
  gem.authors = ["mcasimir"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new


Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
active_record_schema-0.2.4 Rakefile
active_record_schema-0.2.2 Rakefile
active_record_schema-0.2.1 Rakefile
active_record_schema-0.2.0 Rakefile