-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompendium-api.gemspec
More file actions
32 lines (25 loc) · 1011 Bytes
/
compendium-api.gemspec
File metadata and controls
32 lines (25 loc) · 1011 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
29
30
31
32
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
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.post_install_message = "Know your target and what's behind it."
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')
end