forked from altrabio/CITIEsForRAILS
-
Notifications
You must be signed in to change notification settings - Fork 24
/
citier.gemspec
48 lines (44 loc) · 1.93 KB
/
citier.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
45
46
47
48
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{citier}
s.version = "0.1.15"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Peter Hamilton, Originally from Laurent Buffat, Pierre-Emmanuel Jouve"]
s.date = %q{2012-01-08}
s.description = %q{CITIER (Class Inheritance & Table Inheritance Embeddings for Rails) is a solution for single and multiple class table inheritance.
For full information: http://peterhamilton.github.com/citier/
For the original version by ALTRABio see www.github.com/altrabio/}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["lib/citier.rb",
"lib/citier/acts_as_citier.rb",
"lib/citier/core_ext.rb",
"lib/citier/class_methods.rb",
"lib/citier/instance_methods.rb",
"lib/citier/child_instance_methods.rb",
"lib/citier/root_instance_methods.rb",
"lib/citier/sql_adapters.rb",
"lib/citier/relation_methods.rb"]
s.files = ["Rakefile",
"lib/citier.rb",
"lib/citier/acts_as_citier.rb",
"lib/citier/core_ext.rb",
"lib/citier/class_methods.rb",
"lib/citier/instance_methods.rb",
"lib/citier/child_instance_methods.rb",
"lib/citier/root_instance_methods.rb",
"lib/citier/sql_adapters.rb",
"lib/citier/relation_methods.rb",
"Manifest",
"citier.gemspec"]
s.homepage = %q{https://github.com/peterhamilton/citier/}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "citier", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{citier}
s.rubygems_version = %q{1.3.7}
s.summary = s.description
s.add_dependency('rails_sql_views') #needs the 'rails_sql_views', :git => 'git://github.com/morgz/rails_sql_views.git' fork. Set this in your apps bundle
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
end
end