forked from albertosaurus/power_enum_2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpower_enum.gemspec
More file actions
69 lines (64 loc) · 2.99 KB
/
power_enum.gemspec
File metadata and controls
69 lines (64 loc) · 2.99 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: power_enum 2.9.1 ruby lib
Gem::Specification.new do |s|
s.name = "power_enum"
s.version = "2.9.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Trevor Squires", "Pivotal Labs", "Arthur Shagall", "Sergey Potapov"]
s.cert_chain = ["gem-public_cert.pem"]
s.date = "2016-04-08"
s.description = "Power Enum allows you to treat instances of your ActiveRecord models as though they were an enumeration of values.\nIt allows you to cleanly solve many of the problems that the traditional Rails alternatives handle poorly if at all.\nIt is particularly suitable for scenarios where your Rails application is not the only user of the database, such as\nwhen it's used for analytics or reporting.\n"
s.email = "arthur.shagall@gmail.com"
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
"lib/active_record/virtual_enumerations.rb",
"lib/generators/enum/USAGE",
"lib/generators/enum/enum_generator.rb",
"lib/generators/enum/enum_generator_helpers/migration_number.rb",
"lib/generators/enum/templates/model.rb.erb",
"lib/generators/enum/templates/rails31_migration.rb.erb",
"lib/generators/virtual_enumerations_initializer/USAGE",
"lib/generators/virtual_enumerations_initializer/templates/virtual_enumerations.rb.erb",
"lib/generators/virtual_enumerations_initializer/virtual_enumerations_initializer_generator.rb",
"lib/power_enum.rb",
"lib/power_enum/enumerated.rb",
"lib/power_enum/has_enumerated.rb",
"lib/power_enum/migration/command_recorder.rb",
"lib/power_enum/reflection.rb",
"lib/power_enum/schema/schema_statements.rb",
"lib/testing/rspec.rb"
]
s.homepage = "http://github.com/albertosaurus/power_enum_2"
s.licenses = ["MIT"]
s.rubygems_version = "2.2.2"
s.summary = "Allows you to treat instances of your ActiveRecord models as though they were an enumeration of values"
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, ["~> 4.0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
s.add_development_dependency(%q<rspec>, ["~> 3.1"])
s.add_development_dependency(%q<sqlite3>, [">= 0"])
else
s.add_dependency(%q<rails>, ["~> 4.0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 3.1"])
s.add_dependency(%q<sqlite3>, [">= 0"])
end
else
s.add_dependency(%q<rails>, ["~> 4.0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 3.1"])
s.add_dependency(%q<sqlite3>, [">= 0"])
end
end