forked from Katello/hammer-cli-csv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhammer_cli_csv.gemspec
More file actions
25 lines (18 loc) · 801 Bytes
/
hammer_cli_csv.gemspec
File metadata and controls
25 lines (18 loc) · 801 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
$:.unshift(File.expand_path("../lib", __FILE__))
require 'hammer_cli_csv/version'
Gem::Specification.new do |spec|
spec.name = "hammer_cli_csv"
spec.version = HammerCLICsv.version
spec.authors = ["Thomas McKay"]
spec.email = ["thomasmckay@redhat.com"]
spec.homepage = "http://github.com/Katello/hammer-cli-csv"
spec.license = "GPL-3"
spec.platform = Gem::Platform::RUBY
spec.summary = "CSV commands for Hammer"
spec.description = "Hammer-CLI-CSV is a plugin for Hammer to provide bulk actions against a Katello server."
spec.files = Dir["config/**/*", "lib/**/*.rb"]
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.require_paths = %w(lib)
spec.add_dependency('hammer_cli_katello')
spec.add_development_dependency("rubocop", "0.24.1")
end