forked from SchemaPlus/schema_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema_plus.gemspec
31 lines (25 loc) · 1.36 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
# -*- 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 = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/lomba/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.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("rails", ">= 3.2")
s.add_dependency("valuable")
s.add_development_dependency("rake")
s.add_development_dependency("rspec")
s.add_development_dependency("simplecov")
s.add_development_dependency("simplecov-gem-adapter")
end