forked from mlintern/compendium-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompendium-api.gemspec
More file actions
28 lines (23 loc) · 927 Bytes
/
compendium-api.gemspec
File metadata and controls
28 lines (23 loc) · 927 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
26
27
28
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'nretnil/compendium-api/version'
Gem::Specification.new do |s|
s.name = "compendium-api"
s.version = Nretnil::CompendiumAPI::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mark Lintern"]
s.email = ["lintern.mark@gmail.com"]
s.homepage = "http://github.com/mlintern/compendium-api"
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "Ruby Helper for Compendium API"
s.description = "Set of simple functions to assist with making calls to the Compendium rest api."
s.license = 'MIT'
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.required_rubygems_version = ">= 0.0.0"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md CHANGELOG.md)
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ['lib']
s.add_runtime_dependency("httparty",['~> 0'])
end