Skip to content

Commit

Permalink
Update details in gemspec
Browse files Browse the repository at this point in the history
and increase version
  • Loading branch information
yosiat committed Jan 5, 2019
1 parent 2156419 commit 00feec0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/panko/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Panko
VERSION = "0.5.8"
VERSION = "0.5.9"
end
19 changes: 14 additions & 5 deletions panko_serializer.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "panko/version"

Expand All @@ -10,11 +10,20 @@ Gem::Specification.new do |spec|
spec.authors = ["Yosi Attias"]
spec.email = ["yosy101@gmail.com"]

spec.summary = "Fast serialization for ActiveModel"
spec.homepage = ""
spec.summary = "High Performance JSON Serialization for ActiveRecord & Ruby Objects"
spec.homepage = "https://yosiat.github.io/panko_serializer/"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
spec.metadata = {
"bug_tracker_uri" => "https://github.com/yosiat/panko_serializer/issues",
"source_code_uri" => "https://github.com/yosiat/panko_serializer",
"documentation_uri" => "https://yosiat.github.io/panko_serializer/",
"changelog_uri" => "https://github.com/yosiat/panko_serializer/releases"
}

spec.required_ruby_version = ">= 2.0"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ["lib"]
Expand Down

0 comments on commit 00feec0

Please sign in to comment.