-
Notifications
You must be signed in to change notification settings - Fork 0
/
samanage.gemspec
23 lines (21 loc) · 946 Bytes
/
samanage.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
require "samanage"
Gem::Specification.new do |s|
s.name = "samanage"
s.version = Samanage::VERSION
s.date = Date.today.strftime("%Y-%m-%d")
s.summary = "Samanage Ruby Gem"
s.description = "Connect to Samanage using Ruby!"
s.authors = ["Chris Walls"]
s.email = "cwalls2908@gmail.com"
s.files = `git ls-files`.split("\n")
s.homepage = "https://github.com/cw2908/samanage-ruby"
s.license = "MIT"
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.3"
s.add_development_dependency "httparty", ["0.16.4"]
s.add_runtime_dependency "httparty", ["0.16.4"]
s.add_development_dependency "parallel", ["1.17.0"]
s.add_runtime_dependency "parallel", ["1.17.0"]
end