forked from electronick/enum_column
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enum_column.gemspec
42 lines (37 loc) · 1.05 KB
/
enum_column.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
Gem::Specification.new do |s|
s.name = %q{enum_column3}
s.version = "0.1.4"
s.authors = ['Nick Pohodnya']
s.files = [
"README.txt",
"LICENSE",
"init.rb",
"lib/enum_column.rb",
"lib/enum_column3.rb",
"lib/enum/active_record_helper.rb",
"lib/enum/enum_adapter.rb",
"lib/enum/mysql_adapter.rb",
"lib/enum/schema_definitions.rb",
"lib/enum/schema_statements.rb",
"lib/enum/validations.rb"
]
s.homepage = %q{http://github.com/electronick/enum_column}
s.require_paths = ["lib"]
s.summary = %q{Enable enum type for MySQL db.}
s.test_files = [
"test/test_helper.rb",
"test/db/schema.rb",
"test/fixtures/enumeration.rb",
"test/fixtures/enum_controller.rb",
"test/enum_controller_test.rb",
"test/enum_mysql_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end