-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhashifiable.gemspec
More file actions
20 lines (19 loc) · 831 Bytes
/
hashifiable.gemspec
File metadata and controls
20 lines (19 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# encoding: utf-8
require File.join([File.dirname(__FILE__), 'lib', 'hashifiable', 'version.rb'])
Gem::Specification.new do |s|
s.name = "hashifiable"
s.version = Hashifiable::VERSION
s.summary = "A simple way to specify the hash/json representation of your object"
s.description = "
With hashify you can specify a line with the methods that will be called to
create a hash representation of your object. Simple and straightforward.
"
s.authors = ["Pablo Astigrraga"]
s.email = ["poteland@gmail.com"]
s.homepage = "http://github.com/pote/hashify"
s.files = Dir['lib/**/*.rb']
s.require_paths << 'lib'
s.license = "MIT"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
end