-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Require the version by default * Update History * Update Readme to have more recent information * Update gemspec to use common metadata and minimum Ruby version * Bump version number for new release
- Loading branch information
Showing
5 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,30 @@ | ||
# -*- encoding: utf-8 -*- | ||
require File.expand_path('../lib/crack/version', __FILE__) | ||
# 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 = %q{Really simple JSON and XML parsing, ripped from Merb and Rails.} | ||
gem.summary = %q{Really simple JSON and XML parsing, ripped from Merb and Rails.} | ||
gem.homepage = "https://github.com/jnunemaker/crack" | ||
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.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.name = 'crack' | ||
gem.require_paths = ['lib'] | ||
gem.version = Crack::VERSION | ||
gem.license = "MIT" | ||
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") | ||
gem.add_runtime_dependency('bigdecimal') | ||
gem.add_runtime_dependency('rexml') | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Crack | ||
VERSION = "0.4.5" | ||
VERSION = "0.4.6" | ||
end |