public
Description: Allows you to define attr_accessors that reference members of a hash
Homepage:
Clone URL: git://github.com/shuber/hattr_accessor.git
hattr_accessor / hattr_accessor.gemspec
100644 29 lines (24 sloc) 0.712 kb
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
Gem::Specification.new do |s|
  s.name = 'hattr_accessor'
  s.version = '1.1.0'
  s.date = '2009-03-05'
  
  s.summary = 'Allows you to define attr_accessors that reference members of a hash'
  s.description = 'Allows you to define attr_accessors that reference members of a hash'
  
  s.author = 'Sean Huber'
  s.email = 'shuber@huberry.com'
  s.homepage = 'http://github.com/shuber/hattr_accessor'
  
  s.has_rdoc = false
  
  s.files = %w(
CHANGELOG
lib/hattr_accessor.rb
MIT-LICENSE
Rakefile
README.markdown
test/fixtures/manufacturers.yml
test/fixtures/products.yml
)
  
  s.test_files = %w(
test/active_record_test.rb
test/hattr_accessor_test.rb
)
end