-
Notifications
You must be signed in to change notification settings - Fork 93
/
crack.gemspec
30 lines (24 loc) · 1.12 KB
/
crack.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 File.expand_path('lib/crack/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['John Nunemaker']
gem.email = ['[email protected]']
gem.description = 'Really simple JSON and XML parsing, ripped from Merb and Rails.'
gem.summary = 'Really simple JSON and XML parsing, ripped from Merb and Rails.'
gem.homepage = 'https://github.com/jnunemaker/crack'
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files -- lib/* LICENSE README.md History`.split("\n")
gem.name = 'crack'
gem.require_paths = ['lib']
gem.version = Crack::VERSION
gem.license = 'MIT'
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/jnunemaker/crack/issues',
'changelog_uri' => 'https://github.com/jnunemaker/crack/blob/master/History',
'source_code_uri' => 'https://github.com/jnunemaker/crack',
'rubygems_mfa_required' => 'true'
}
gem.required_ruby_version = '>= 2.0'
gem.add_runtime_dependency('bigdecimal')
gem.add_runtime_dependency('rexml')
end