Sha256: 84ec98fe94f11e33a7305b715de9a297111f2f868956da133ec360590594b9d9
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "migration_comments/version" Gem::Specification.new do |s| s.name = "migration_comments" s.version = MigrationComments::VERSION s.authors = ["Pinny"] s.email = ["pinny@medwiztech.com"] s.homepage = "https://github.com/pinnymz/migration_comments" s.summary = %q{Comments for your migrations} s.description = %q{Add schema comments in your migrations, see them in model annotations and db/schema.rb dump} s.rubyforge_project = "migration_comments" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency 'rails', '>= 2.3.2' # for development, we are testing against the 'annotate' gem # however, the comments should work with the original 'annotate_models' plugin as well at: # http://repo.pragprog.com/svn/Public/plugins/annotate_models # provided the environment is not loaded until _after_ the AnnotateModels module is declared s.add_development_dependency 'annotate' s.add_development_dependency 'pg' # replace with other adapter as needed # s.add_development_dependency 'postgres-pr' # s.add_development_dependency 'mysql' # s.add_development_dependency 'mysql2' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
migration_comments-0.1.1 | migration_comments.gemspec |