forked from kgiszczak/shale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shale.gemspec
30 lines (22 loc) · 1.04 KB
/
shale.gemspec
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
# frozen_string_literal: true
require_relative 'lib/shale/version'
Gem::Specification.new do |spec|
spec.name = 'shale'
spec.version = Shale::VERSION
spec.authors = ['Kamil Giszczak']
spec.email = ['[email protected]']
spec.summary = 'Ruby object mapper and serializer for XML, JSON, TOML, CSV and YAML.'
spec.description = 'Ruby object mapper and serializer for XML, JSON, TOML, CSV and YAML.'
spec.homepage = 'https://shalerb.org'
spec.license = 'MIT'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = 'https://shalerb.org'
spec.metadata['source_code_uri'] = 'https://github.com/kgiszczak/shale'
spec.metadata['changelog_uri'] = 'https://github.com/kgiszczak/shale/blob/master/CHANGELOG.md'
spec.metadata['bug_tracker_uri'] = 'https://github.com/kgiszczak/shale/issues'
spec.files = Dir['CHANGELOG.md', 'LICENSE.txt', 'README.md', 'shale.gemspec', 'lib/**/*']
spec.require_paths = ['lib']
spec.bindir = 'exe'
spec.executables = 'shaleb'
spec.required_ruby_version = '>= 2.6.0'
end