-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrepresentors.gemspec
More file actions
24 lines (21 loc) · 1022 Bytes
/
representors.gemspec
File metadata and controls
24 lines (21 loc) · 1022 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
$LOAD_PATH.unshift('lib')
require 'representors/version'
Gem::Specification.new do |s|
s.name = 'representors'
s.version = Representors::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'It has the knowledge of Hypermedia media-types from the Ancients!'
s.homepage = 'http://github.com/representors'
s.email = ''
s.authors = ['Mark W. Foster', 'Shea Valentine']
s.files = ['lib/**/*', 'spec/**/*', 'tasks/**/*', '[A-Z]*'].map { |glob| Dir[glob] }.inject([], &:+)
s.require_paths = ['lib']
s.rdoc_options = ['--main', 'README.md']
s.description = <<-DESC
Crichton Representors is a library containing serializers and deserializers to and from hypermedia formats.
This library does not have the functionality to get and post data over the Internet. Consider Farscape for that.
This library also does not automatically decorates objects. Consider Crichton for that.
DESC
s.add_dependency('enumerable-lazy', '~> 0.0.1') if RUBY_VERSION < '2.0'
s.add_dependency('rake')
end