-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_mapper.gemspec
More file actions
24 lines (19 loc) · 945 Bytes
/
simple_mapper.gemspec
File metadata and controls
24 lines (19 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rake'
Gem::Specification.new do |s|
s.name = 'simple_mapper'
s.version = '0.0.1'
s.email = 'ethan@endpoint.com'
s.author = 'Ethan Rowe'
s.date = '2010-04-21'
s.homepage = 'http://github.com/csinitiative/simplemapper'
s.platform = Gem::Platform::RUBY
s.description = %q{Provides functionality for building classes that map to/from simple nested data structures of the sort one typically sees with Thrift.}
s.summary = %q{Build your classes with this module. Then you can map from a simple JSON-like structure to instances of your class, and vice versa. With type conversion, attribute state tracking, etc.}
s.add_development_dependency('rake')
s.add_development_dependency('shoulda')
s.add_development_dependency('mocha')
s.files = FileList['*.rb', '*.rdoc', 'lib/**/*.rb', 'test/**/*.rb'].to_a
s.require_path = 'lib'
s.has_rdoc = true
s.test_files = Dir['test/**/*_test.rb']
end