-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathparseconfig.gemspec
More file actions
24 lines (23 loc) · 882 Bytes
/
parseconfig.gemspec
File metadata and controls
24 lines (23 loc) · 882 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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = 'parseconfig'
s.version = ParseConfig::VERSION
s.licenses = ["MIT"]
s.date = '2021-09-30'
s.authors = ['BJ Dierkes', 'Dmitry Shagin']
s.email = 'team@datafolklabs.com'
s.summary = 'Config File Parser for Standard Unix/Linux Type Config Files'
s.homepage = 'http://github.com/datafolklabs/ruby-parseconfig/'
s.description = 'ParseConfig provides simple parsing of standard' \
"configuration files in the form of 'param = value'. " \
'It also supports nested [group] sections.'
s.files = ['README.md',
'Changelog',
'LICENSE',
'doc/',
'lib/parseconfig.rb',
'lib/version.rb',
'tests']
end