This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
schema_plus.gemspec
45 lines (39 loc) · 2 KB
/
schema_plus.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- 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 = ["[email protected]", "[email protected]"]
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", "~> 1.0"
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.6"
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