-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmonday_ruby.gemspec
More file actions
42 lines (34 loc) · 1.38 KB
/
monday_ruby.gemspec
File metadata and controls
42 lines (34 loc) · 1.38 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
require_relative "lib/monday/version"
version = Monday::VERSION
repository = "https://github.com/sanifhimani/monday_ruby"
Gem::Specification.new do |spec|
spec.name = "monday_ruby"
spec.version = version
spec.authors = ["Sanif Himani", "Wes Hays"]
spec.email = ["sanifhimani92@gmail.com", "weshays@gmail.com"]
spec.summary = "Ruby bindings to use the monday.com API"
spec.description = "A Ruby gem for interacting with monday.com's API"
spec.homepage = repository
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata = {
"homepage_uri" => spec.homepage,
"documentation_uri" => "https://sanifhimani.github.io/monday_ruby/",
"changelog_uri" => "#{repository}/blob/v#{version}/CHANGELOG.md",
"rubygems_mfa_required" => "true"
}
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w[bin/ test/ spec/ features/ docs/ .git .github .vscode .rubocop .rspec .env .simplecov
Gemfile]) ||
f.match?(/\A(CONTRIBUTING|CODE_OF_CONDUCT|docyard|Rakefile)/)
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "base64", "~> 0.3.0"
spec.add_dependency "multipart-post", "~> 2.4"
end