forked from philipqnguyen/cardano_explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cardano_explorer.gemspec
25 lines (22 loc) · 976 Bytes
/
cardano_explorer.gemspec
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cardano_explorer/version'
Gem::Specification.new do |s|
s.name = 'cardano_explorer'
s.version = CardanoExplorer::VERSION
s.date = '2018-01-10'
s.summary = 'A Ruby API wrapper to query the Cardano SL Explorer'
s.description = 'A Ruby API wrapper to query the Cardano SL Explorer'
s.license = 'MIT'
s.authors = ['Philip Nguyen']
s.email = '[email protected]'
s.files = `git ls-files lib README.md CHANGELOG.md LICENSE`.split("\n")
s.homepage = 'https://github.com/philipqnguyen/cardano_explorer'
s.license = 'MIT'
s.required_ruby_version = '>= 2.2.2'
s.add_runtime_dependency 'httparty', '~> 0.15.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'webmock', '~> 3.2'
end