Skip to content

Commit

Permalink
gemspec URL fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paneq committed Apr 19, 2018
1 parent 7d8ffc5 commit 194a77f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby

require "bundler/setup"
require "protobuf/nested/struct"
require "protobuf_nested_struct"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand Down
21 changes: 9 additions & 12 deletions protobuf_nested_struct.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ Gem::Specification.new do |spec|
spec.authors = ["Robert Pankowecki", "Arkency"]
spec.email = ["[email protected]"]

spec.summary = %q{Serialize deep structures to protobuf}
spec.description = %q{Serialize deep structures to protobuf}
spec.homepage = ""

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.summary = %q{Serialize primitives and deep structures (array, hash) to protobuf}
spec.description = %q{Serialize primitives and deep structures (array, hash) to protobuf}
spec.homepage = "https://github.com/arkency/protobuf-nested-struct"
spec.metadata = {
"homepage_uri" => "https://github.com/arkency/protobuf-nested-struct",
"changelog_uri" => "https://github.com/arkency/protobuf-nested-struct/releases",
"source_code_uri" => "https://github.com/arkency/protobuf-nested-struct",
"bug_tracker_uri" => "https://github.com/arkency/protobuf-nested-struct/issues",
}

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

0 comments on commit 194a77f

Please sign in to comment.