-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnested_accessors.gemspec
23 lines (20 loc) · 1019 Bytes
/
nested_accessors.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/nested_accessors/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Oskar Boethius Lissheim"]
gem.email = ["[email protected]"]
gem.homepage = "http://OLBproductions.com"
gem.description = %q{Quickly add serialized, nested hash accessors in ActiveRecord model objects}
gem.summary = %q{Without having to write your own accessor methods for getting at serialized hash properties}
gem.homepage = "http://OLBproductions.com"
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "nested_accessors"
gem.require_paths = ["lib"]
gem.version = NestedAccessors::VERSION
gem.extra_rdoc_files = ['README.md']
gem.add_development_dependency "minitest"
gem.add_development_dependency "simple_mock"
end