Sha256: 5ff939d5eafb724e93f2ed571ea75c2a1d24c54ae0873ad1868d11687ba15c71
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "schema_plus/version" Gem::Specification.new do |gem| gem.name = "schema_plus" gem.version = SchemaPlus::VERSION gem.platform = Gem::Platform::RUBY gem.required_ruby_version = ">= 1.9.2" gem.authors = ["Ronen Barzel", "Michal Lomnicki"] gem.email = ["ronen@barzel.org", "michal.lomnicki@gmail.com"] gem.homepage = "https://github.com/SchemaPlus/schema_plus" gem.summary = "Wrapper that pulls in many gems from the SchemaPlus family of ActiveRecord extensions" gem.description = "SchemaPlus is a gem that simply pulls in a collection of other gems from the SchemaPlus family of ActiveRecord extensions" gem.license = 'MIT' gem.rubyforge_project = "schema_plus" gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.require_paths = ["lib"] gem.add_dependency "activerecord", "~> 4.2" gem.add_dependency "schema_auto_foreign_keys", "~> 0.1" gem.add_dependency "schema_plus_core", "~> 0.4" gem.add_dependency "schema_monkey", "~> 2.1" gem.add_dependency "schema_plus_columns", "~> 0.1" gem.add_dependency "schema_plus_enums", "~> 0.1" gem.add_dependency "schema_plus_db_default", "~> 0.1" gem.add_dependency "schema_plus_default_expr", "~> 0.1" gem.add_dependency "schema_plus_foreign_keys", "~> 0.1" gem.add_dependency "schema_plus_indexes", "~> 0.1", ">= 0.1.3" gem.add_dependency "schema_plus_pg_indexes", "~> 0.1", ">= 0.1.3" gem.add_dependency "schema_plus_tables", "~> 0.1" gem.add_dependency "schema_plus_views", "~> 0.1" gem.add_development_dependency "schema_dev", "~> 3.4" gem.add_development_dependency "rake" gem.add_development_dependency "rspec", "~> 3.0" gem.add_development_dependency "rdoc" gem.add_development_dependency "simplecov" gem.add_development_dependency "simplecov-gem-profile" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
schema_plus-2.0.0 | schema_plus.gemspec |