-
Notifications
You must be signed in to change notification settings - Fork 193
/
enumerize.gemspec
28 lines (25 loc) · 1.29 KB
/
enumerize.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/enumerize/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Sergey Nartimov"]
gem.email = "[email protected]"
gem.licenses = ['MIT']
gem.description = %q{Enumerated attributes with I18n and ActiveRecord/Mongoid/MongoMapper support}
gem.summary = %q{Enumerated attributes with I18n and ActiveRecord/Mongoid/MongoMapper support}
gem.homepage = "https://github.com/brainspec/enumerize"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "enumerize"
gem.require_paths = ["lib"]
gem.version = Enumerize::VERSION
gem.metadata = {
"homepage_uri" => "https://github.com/brainspec/enumerize",
"changelog_uri" => "https://github.com/brainspec/enumerize/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/brainspec/enumerize",
"bug_tracker_uri" => "https://github.com/brainspec/enumerize/issues",
"wiki_uri" => "https://github.com/brainspec/enumerize/wiki"
}
gem.required_ruby_version = '>= 2.7'
gem.add_dependency('activesupport', '>= 3.2')
end