-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepresentor.gemspec
More file actions
25 lines (21 loc) · 890 Bytes
/
representor.gemspec
File metadata and controls
25 lines (21 loc) · 890 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
25
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'representor/version'
Gem::Specification.new do |s|
s.name = 'representor'
s.version = Representor::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ['Mark W. Foster']
s.email = ['fosrias@gmail.com']
s.summary = 'Making Hypermedia accessible to the Ruby masses.'
s.homepage = 'http://github.com/the-hypermedia-project/representor-ruby'
s.license = 'MIT'
s.description = <<-DESC
Making the generation and consumption of Hypermedia messages for multiple media types accessible to the Ruby masses.
DESC
s.files = `git ls-files`.split($/)
s.require_paths = ['lib']
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
s.add_dependency('rake')
end