-
Notifications
You must be signed in to change notification settings - Fork 6
/
magic_enum.gemspec
29 lines (24 loc) · 1.05 KB
/
magic_enum.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'magic_enum/version'
Gem::Specification.new do |s|
s.name = 'magic_enum'
s.version = MagicEnum::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = [ 'Dmytro Shteflyuk', 'Oleksiy Kovyrin' ]
s.email = '[email protected]'
s.homepage = 'https://github.com/kovyrin/magic-enum'
s.summary = 'ActiveRecord plugin that makes it easier to maintain ENUM-like attributes in your models'
s.description = 'MagicEnum is a simple ActiveRecord plugin that makes it easier to maintain ENUM-like attributes in your models.'
s.license = 'MIT'
s.rdoc_options = [ '--charset=UTF-8' ]
s.files = `git ls-files`.split("\n")
s.require_paths = [ 'lib' ]
s.extra_rdoc_files = [ 'LICENSE', 'README.md' ]
# Dependencies
s.add_dependency 'activerecord'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'yard'
end