forked from galetahub/enum_field
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenum_field.gemspec
More file actions
20 lines (18 loc) · 796 Bytes
/
enum_field.gemspec
File metadata and controls
20 lines (18 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "enum_field/version"
Gem::Specification.new do |s|
s.name = "galetahub-enum_field"
s.version = EnumField::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Enumerated attributes for Active Record"
s.description = "Enables Active Record attributes to point to enum like objects, by saving in your database only an integer ID"
s.authors = ["Igor Galeta", "Pavlo Galeta"]
s.email = "galeta.igor@gmail.com"
s.rubyforge_project = "enum_field"
s.homepage = "https://github.com/galetahub/enum_field"
s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["{spec}/**/*"]
s.extra_rdoc_files = ["README.rdoc"]
s.require_paths = ["lib"]
end