-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdashboard-api.gemspec
More file actions
28 lines (22 loc) · 1.04 KB
/
dashboard-api.gemspec
File metadata and controls
28 lines (22 loc) · 1.04 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dashboard-api/version'
Gem::Specification.new do |s|
s.name = 'dashboard-api'
s.version = DashboardAPIVersion::VERSION
s.authors = ['Joe Letizia']
s.email = ['letiziajm@gmail.com']
s.summary = %q{A Ruby implementation of the Meraki Dashboard API}
s.description = %q{A Ruby implementation of the Meraki Dashboard API. It allows you to interact and provision the Meraki Dashboard via their RESTful API}
s.homepage = "https://github.com/jletizia/dashboardapi"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.require_paths = ['lib']
s.add_development_dependency "rake", "~> 13.4"
s.add_development_dependency "minitest", "~> 6.0"
s.add_development_dependency "yard", "~> 0.9.11"
s.add_development_dependency "vcr", ">= 3.0.3"
s.add_development_dependency "webmock", ">= 2.1.0"
s.add_runtime_dependency "httparty", ">= 0.14", "< 0.25"
end