# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "schema_plus/version" Gem::Specification.new do |s| s.name = "schema_plus" s.version = SchemaPlus::VERSION s.platform = Gem::Platform::RUBY s.required_ruby_version = ">= 1.9.2" s.authors = ["Ronen Barzel", "Michal Lomnicki"] s.email = ["ronen@barzel.org", "michal.lomnicki@gmail.com"] s.homepage = "https://github.com/SchemaPlus/schema_plus" s.summary = "Enhances ActiveRecord schema mechanism, including more DRY index creation and support for foreign key constraints and views." s.description = "SchemaPlus is an ActiveRecord extension that provides enhanced capabilities for schema definition and querying, including: enhanced and more DRY index capabilities, support and automation for foreign key constraints, and support for views." s.license = 'MIT' s.rubyforge_project = "schema_plus" 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_dependency "activerecord", "~> 4.2" s.add_dependency "valuable" s.add_dependency "schema_monkey", "~> 1.0", ">= 1.0.1" s.add_dependency "schema_monkey_rails", "~> 0.1", ">= 0.1.1" s.add_dependency "schema_plus_indexes", "~> 0.1" s.add_dependency "schema_plus_pg_indexes", "~> 0.1" s.add_development_dependency "schema_dev", "~> 3.0" s.add_development_dependency "rake" s.add_development_dependency "rspec", "~> 3.0.0" s.add_development_dependency "rdoc" s.add_development_dependency "simplecov" s.add_development_dependency "simplecov-gem-profile" end