-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargstring.gemspec
More file actions
27 lines (21 loc) · 1.01 KB
/
argstring.gemspec
File metadata and controls
27 lines (21 loc) · 1.01 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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative 'lib/argstring/version'
Gem::Specification.new do |spec|
spec.name = 'argstring'
spec.version = Argstring::VERSION
spec.authors = ['Convincible Media']
spec.email = ['development@convincible.media']
spec.summary = "Parses argument strings into structured substrings."
spec.description = "Configurable parser for single-line argument strings, returning a structured set of sub-strings representing positional arguments, named arguments and flags."
spec.homepage = 'https://github.com/ConvincibleMedia/ruby-gem-argstring'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.4'
# Files to include in the gem
spec.files = Dir['lib/**/*.rb']
# No runtime dependencies
# Development dependencies
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end