File tree Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
2
3
3
require "bundler/setup"
4
- require "protobuf/nested/struct "
4
+ require "protobuf_nested_struct "
5
5
6
6
# You can add fixtures and/or initialization code here to make experimenting
7
7
# with your gem easier. You can also use a different console, if you like.
Original file line number Diff line number Diff line change @@ -9,18 +9,15 @@ Gem::Specification.new do |spec|
9
9
spec . authors = [ "Robert Pankowecki" , "Arkency" ]
10
10
spec . email = [ "[email protected] " ]
11
11
12
- spec . summary = %q{Serialize deep structures to protobuf}
13
- spec . description = %q{Serialize deep structures to protobuf}
14
- spec . homepage = ""
15
-
16
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
- # to allow pushing to a single host or delete this section to allow pushing to any host.
18
- if spec . respond_to? ( :metadata )
19
- spec . metadata [ "allowed_push_host" ] = "TODO: Set to 'http://mygemserver.com'"
20
- else
21
- raise "RubyGems 2.0 or newer is required to protect against " \
22
- "public gem pushes."
23
- end
12
+ spec . summary = %q{Serialize primitives and deep structures (array, hash) to protobuf}
13
+ spec . description = %q{Serialize primitives and deep structures (array, hash) to protobuf}
14
+ spec . homepage = "https://github.com/arkency/protobuf-nested-struct"
15
+ spec . metadata = {
16
+ "homepage_uri" => "https://github.com/arkency/protobuf-nested-struct" ,
17
+ "changelog_uri" => "https://github.com/arkency/protobuf-nested-struct/releases" ,
18
+ "source_code_uri" => "https://github.com/arkency/protobuf-nested-struct" ,
19
+ "bug_tracker_uri" => "https://github.com/arkency/protobuf-nested-struct/issues" ,
20
+ }
24
21
25
22
spec . files = `git ls-files -z` . split ( "\x0 " ) . reject do |f |
26
23
f . match ( %r{^(test|spec|features)/} )
You can’t perform that action at this time.
0 commit comments