hglib 0.1.pre20180129173049

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: afdee42722ca60142d6bb0ebffa22802d2aa881e83a16669f085cd3af24c4cf2
4
+ data.tar.gz: d1cbac7bd6ac25ef43a3d58ff0097244c108ca22146819a8bf867224e517e81f
5
+ SHA512:
6
+ metadata.gz: 1a8e70e26c53215b1036b8d7acfc7543f25e5f49c1180d7a6dcfd481c1ea3b376dbe454ce6399a40ffd3f3f4731546bbe6de0b7f9916c69d46b811cb3c311343
7
+ data.tar.gz: f80807c638195e83f14e4429c6df1aa886bddc9c14979e97713fd8bcfed553c3b5684884f64985179a959cfefe155cd3f2b3cdcf817d1841ecedf4d090f76796
@@ -0,0 +1,9 @@
1
+ # Simplecov config
2
+
3
+ SimpleCov.start do
4
+ add_filter 'spec'
5
+ add_filter 'integration'
6
+ add_group "Needing tests" do |file|
7
+ file.covered_percent < 90
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ 2018-01-24 Michael Granger <ged@FaerieMUD.org>
2
+
3
+ * .ruby-version:
4
+ Make ruby-version less specific
5
+ [81f357f730d9] [tip]
6
+
7
+ * .document, .editorconfig, .gems, .hg_archival.txt, .hgignore,
8
+ .pryrc, .rdoc_options, .ruby-gemset, .ruby-version, .simplecov,
9
+ Gemfile, History.md, LICENSE.txt, Manifest.txt, README.md, Rakefile,
10
+ certs/ged.pem, lib/hglib.rb, spec/hglib_spec.rb,
11
+ spec/spec_helper.rb:
12
+ Initial commit.
13
+ [d6c97f99b012]
@@ -0,0 +1,4 @@
1
+ ## v0.0.1 [YYYY-MM-DD] Michael Granger <ged@FaerieMUD.org>
2
+
3
+ Initial release.
4
+
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2018 Michael Granger
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,10 @@
1
+ .simplecov
2
+ ChangeLog
3
+ History.md
4
+ LICENSE.txt
5
+ Manifest.txt
6
+ README.md
7
+ Rakefile
8
+ lib/hglib.rb
9
+ spec/hglib_spec.rb
10
+ spec/spec_helper.rb
@@ -0,0 +1,82 @@
1
+ # hglib
2
+
3
+ home
4
+ : http://bitbucket.org/ged/ruby-hglib
5
+
6
+ code
7
+ : http://bitbucket.org/ged/ruby-hglib
8
+
9
+ github
10
+ : https://github.com/ged/ruby-hglib
11
+
12
+ docs
13
+ : http://deveiate.org/code/hglib
14
+
15
+
16
+ ## Description
17
+
18
+ This is a client library for the Mercurial distributed revision control tool
19
+ that uses the [Command Server][cmdserver] for efficiency.
20
+
21
+
22
+ ### Examples
23
+
24
+
25
+
26
+ ## Prerequisites
27
+
28
+ * Ruby
29
+
30
+
31
+ ## Installation
32
+
33
+ $ gem install hglib
34
+
35
+
36
+ ## Contributing
37
+
38
+ You can check out the current development source with Mercurial via its
39
+ [project page](http://bitbucket.org/ged/ruby-hglib). Or if you prefer Git, via
40
+ [its Github mirror](https://github.com/ged/ruby-hglib).
41
+
42
+ After checking out the source, run:
43
+
44
+ $ rake newb
45
+
46
+ This task will install any missing dependencies, run the tests/specs,
47
+ and generate the API documentation.
48
+
49
+
50
+ ## License
51
+
52
+ Copyright (c) 2018, Michael Granger
53
+ All rights reserved.
54
+
55
+ Redistribution and use in source and binary forms, with or without
56
+ modification, are permitted provided that the following conditions are met:
57
+
58
+ * Redistributions of source code must retain the above copyright notice,
59
+ this list of conditions and the following disclaimer.
60
+
61
+ * Redistributions in binary form must reproduce the above copyright notice,
62
+ this list of conditions and the following disclaimer in the documentation
63
+ and/or other materials provided with the distribution.
64
+
65
+ * Neither the name of the author/s, nor the names of the project's
66
+ contributors may be used to endorse or promote products derived from this
67
+ software without specific prior written permission.
68
+
69
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
70
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
71
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
72
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
73
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
74
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
75
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
76
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
77
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
78
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
79
+
80
+
81
+ [cmdserver]:https://www.mercurial-scm.org/wiki/CommandServer
82
+
@@ -0,0 +1,99 @@
1
+ #!/usr/bin/env rake
2
+
3
+ begin
4
+ require 'hoe'
5
+ rescue LoadError
6
+ abort "This Rakefile requires hoe (gem install hoe)"
7
+ end
8
+
9
+ GEMSPEC = 'hglib.gemspec'
10
+
11
+
12
+ Hoe.plugin :mercurial
13
+ Hoe.plugin :signing
14
+ Hoe.plugin :deveiate
15
+
16
+ Hoe.plugins.delete :rubyforge
17
+ Hoe.plugins.delete :gemcutter # Remove for public gems
18
+
19
+ hoespec = Hoe.spec 'hglib' do |spec|
20
+ spec.readme_file = 'README.md'
21
+ spec.history_file = 'History.md'
22
+
23
+ spec.extra_rdoc_files = FileList[ '*.rdoc', '*.md' ]
24
+ spec.license 'BSD-3-Clause'
25
+
26
+ spec.urls = {
27
+ home: 'http://deveiate.org/projects/hglib',
28
+ code: 'http://bitbucket.org/ged/hglib',
29
+ docs: 'http://deveiate.org/code/hglib',
30
+ github: 'http://github.com/ged/hglib',
31
+ }
32
+
33
+ spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
34
+
35
+ spec.dependency 'loggability', '~> 0.11'
36
+
37
+ spec.dependency 'hoe-deveiate', '~> 0.10', :developer
38
+ spec.dependency 'simplecov', '~> 0.7', :developer
39
+ spec.dependency 'rdoc-generator-fivefish', '~> 0.1', :developer
40
+ spec.dependency 'rdoc', '~> 6.0', :developer
41
+
42
+ spec.require_ruby_version( '>=2.5.0' )
43
+ spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
44
+ spec.check_history_on_release = true if spec.respond_to?( :check_history_on_release= )
45
+
46
+ self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
47
+ end
48
+
49
+
50
+ ENV['VERSION'] ||= hoespec.spec.version.to_s
51
+
52
+ # Run the tests before checking in
53
+ task 'hg:precheckin' => [ :check_history, :check_manifest, :gemspec, :spec ]
54
+
55
+ task :test => :spec
56
+
57
+ # Rebuild the ChangeLog immediately before release
58
+ task :prerelease => 'ChangeLog'
59
+ CLOBBER.include( 'ChangeLog' )
60
+
61
+ desc "Build a coverage report"
62
+ task :coverage do
63
+ ENV["COVERAGE"] = 'yes'
64
+ Rake::Task[:spec].invoke
65
+ end
66
+ CLOBBER.include( 'coverage' )
67
+
68
+
69
+ # Use the fivefish formatter for docs generated from development checkout
70
+ if File.directory?( '.hg' )
71
+ require 'rdoc/task'
72
+
73
+ Rake::Task[ 'docs' ].clear
74
+ RDoc::Task.new( 'docs' ) do |rdoc|
75
+ rdoc.main = "README.rdoc"
76
+ rdoc.markup = 'markdown'
77
+ rdoc.rdoc_files.include( "*.rdoc", "ChangeLog", "lib/**/*.rb" )
78
+ rdoc.generator = :fivefish
79
+ rdoc.title = 'hglib'
80
+ rdoc.rdoc_dir = 'doc'
81
+ end
82
+ end
83
+
84
+ task :gemspec => GEMSPEC
85
+ file GEMSPEC => __FILE__
86
+ task GEMSPEC do |task|
87
+ spec = $hoespec.spec
88
+ spec.files.delete( '.gemtest' )
89
+ spec.signing_key = nil
90
+ spec.cert_chain = ['certs/ged.pem']
91
+ spec.version = "#{spec.version.bump}.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
92
+ File.open( task.name, 'w' ) do |fh|
93
+ fh.write( spec.to_ruby )
94
+ end
95
+ end
96
+ CLOBBER.include( GEMSPEC.to_s )
97
+
98
+ task :default => :gemspec
99
+
@@ -0,0 +1,81 @@
1
+ # -*- ruby -*-
2
+ # frozen_string_literal: true
3
+
4
+ require 'e2mmap'
5
+ require 'loggability'
6
+ require 'pathname'
7
+
8
+
9
+ # Toplevel namespace
10
+ module Hglib
11
+ extend Loggability,
12
+ Exception2MessageMapper
13
+
14
+ # Package version
15
+ VERSION = '0.0.1'
16
+
17
+ # Version control revision
18
+ REVISION = %q$Revision: a366819bd05b $
19
+
20
+ # The default path to the `hg` command
21
+ DEFAULT_HG_PATH = begin
22
+ paths = ENV['PATH'].
23
+ split( File::PATH_SEPARATOR ).
24
+ map {|dir| Pathname(dir) + 'hg' }
25
+
26
+ paths.find( &:executable? ) || Pathname( '/usr/bin/hg' )
27
+ end
28
+
29
+
30
+ # Base exception class for errors raised by this library
31
+ def_exception :Error, "hglib error"
32
+ def_exception :CommandError, "error in hg command", Hglib::Error
33
+
34
+ # Loggability API -- set up a Logger for Hglib objects
35
+ log_as :hglib
36
+
37
+
38
+ ### Return the currently-configured path to the `hg` binary./
39
+ def self::hg_path
40
+ return @hg_path ||= DEFAULT_HG_PATH
41
+ end
42
+
43
+
44
+ ### Set the path to the `hg` binary that will be used for any new commands.
45
+ def self::hg_path=( new_path )
46
+ @hg_path = Pathname( new_path )
47
+ end
48
+
49
+
50
+ # Set up automatic loading of submodules
51
+ autoload :Server, 'hglib/server'
52
+ autoload :Repo, 'hglib/repo'
53
+
54
+
55
+ ### Return an Hglib::Server set to use the current ::hg_path, creating one if
56
+ ### necessary.
57
+ def self::server( repo='.' )
58
+ @hg_servers ||= {}
59
+ return @hg_servers[ repo ] ||= Hglib::Server.new( repo )
60
+ end
61
+
62
+
63
+ ### Return an Hglib::Repo object for the specified +path+.
64
+ def self::repo( path='.' )
65
+ return Hglib::Repo.new( path )
66
+ end
67
+
68
+
69
+ ### Clone the +remote_repo+ to the specified +local_dir+, which defaults to a
70
+ ### directory with the basename of the +remote_repo+ in the current working
71
+ ### directory.
72
+ def self::clone( remote_repo, local_dir=nil )
73
+ output = self.server( nil ).run( :clone, remote_repo, local_dir )
74
+ self.log.debug "Clone output: %s" % [ output ]
75
+
76
+ local_dir ||= Pathname.pwd + File.basename( remote_repo )
77
+ return self.repo( local_dir )
78
+ end
79
+
80
+ end # module Hglib
81
+
@@ -0,0 +1,47 @@
1
+ #!/usr/bin/env rspec -cfd
2
+
3
+ require_relative 'spec_helper'
4
+
5
+ require 'hglib'
6
+
7
+
8
+ RSpec.describe Hglib do
9
+
10
+ before( :each ) do
11
+ @real_hg_path = described_class.hg_path
12
+ end
13
+
14
+ after( :each ) do
15
+ described_class.hg_path = @real_hg_path
16
+ end
17
+
18
+
19
+ describe "binary path" do
20
+
21
+ it "has a default" do
22
+ expect( described_class::DEFAULT_HG_PATH ).to be_a( Pathname )
23
+ expect( described_class::DEFAULT_HG_PATH.to_s ).to end_with( '/hg' )
24
+ end
25
+
26
+
27
+ it "can be configured to use a different hg binary" do
28
+ expect {
29
+ described_class.hg_path = '/somewhere/else/hg'
30
+ }.to change { described_class.hg_path }
31
+ end
32
+
33
+ end
34
+
35
+
36
+ describe "server" do
37
+
38
+ it "can create a server object" do
39
+ expect( described_class.server ).to be_a( Hglib::Server )
40
+ expect( described_class.server ).to equal( described_class.server )
41
+ expect( described_class.server.repo ).to eq( Pathname('.') )
42
+ end
43
+
44
+ end
45
+
46
+ end
47
+
@@ -0,0 +1,29 @@
1
+ # -*- ruby -*-
2
+ #encoding: utf-8
3
+
4
+ require 'simplecov' if ENV['COVERAGE']
5
+ require 'rspec'
6
+
7
+ require 'hglib'
8
+
9
+ RSpec.configure do |config|
10
+ config.expect_with :rspec do |expectations|
11
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
12
+ end
13
+
14
+ config.mock_with :rspec do |mocks|
15
+ mocks.verify_partial_doubles = true
16
+ end
17
+
18
+ config.shared_context_metadata_behavior = :apply_to_host_groups
19
+ config.filter_run_when_matching :focus
20
+ config.example_status_persistence_file_path = "spec/.status"
21
+ config.disable_monkey_patching!
22
+ config.warnings = true
23
+ config.profile_examples = 10
24
+ config.order = :random
25
+
26
+ config.filter_run_excluding( :requires_binary ) unless Hglib.hg_path.executable?
27
+
28
+ Kernel.srand( config.seed )
29
+ end
metadata ADDED
@@ -0,0 +1,202 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hglib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.pre20180129173049
5
+ platform: ruby
6
+ authors:
7
+ - Michael Granger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIEbDCCAtSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
14
+ GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
15
+ HhcNMTcwOTI3MDAzMDQ0WhcNMTgwOTI3MDAzMDQ0WjA+MQwwCgYDVQQDDANnZWQx
16
+ GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
17
+ ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC/JWGRHO+USzR97vXjkFgt
18
+ 83qeNf2KHkcvrRTSnR64i6um/ziin0I0oX23H7VYrDJC9A/uoUa5nGRJS5Zw/+wW
19
+ ENcvWVZS4iUzi4dsYJGY6yEOsXh2CcF46+QevV8iE+UmbkU75V7Dy1JCaUOyizEt
20
+ TH5UHsOtUU7k9TYARt/TgYZKuaoAMZZd5qyVqhF1vV+7/Qzmp89NGflXf2xYP26a
21
+ 4MAX2qqKX/FKXqmFO+AGsbwYTEds1mksBF3fGsFgsQWxftG8GfZQ9+Cyu2+l1eOw
22
+ cZ+lPcg834G9DrqW2zhqUoLr1MTly4pqxYGb7XoDhoR7dd1kFE2a067+DzWC/ADt
23
+ +QkcqWUm5oh1fN0eqr7NsZlVJDulFgdiiYPQiIN7UNsii4Wc9aZqBoGcYfBeQNPZ
24
+ soo/6za/bWajOKUmDhpqvaiRv9EDpVLzuj53uDoukMMwxCMfgb04+ckQ0t2G7wqc
25
+ /D+K9JW9DDs3Yjgv9k4h7YMhW5gftosd+NkNC/+Y2CkCAwEAAaN1MHMwCQYDVR0T
26
+ BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFHKN/nkRusdqCJEuq3lgB3fJvyTg
27
+ MBwGA1UdEQQVMBOBEWdlZEBGYWVyaWVNVUQub3JnMBwGA1UdEgQVMBOBEWdlZEBG
28
+ YWVyaWVNVUQub3JnMA0GCSqGSIb3DQEBBQUAA4IBgQB/qyi5pCjK8ceoKalfVAjS
29
+ vG64FEnLnD1bm39T5UaFIRmo+abZtfpg2QhwKvPbPjOicau2+m+MDQ2Cc3tgyaC3
30
+ dZxcP6w8APFg4AId09uWAZKf0xajvBMS2aOz8Bbmag6fwqRRkTMqsNYnmqcF7aRT
31
+ DuEzbEMfaOUYjU9RuB48vr4q8yRft0ww+3jq5iwNkrX1buL2pwBbyvgms6D/BV41
32
+ MaTVMjsHqJUwU2xVfhGtxGAWAer5S1HGYHkbio6mGVtiie0uWjmnzi7ppIlMr48a
33
+ 7BNTsoZ+/JRk3iQWmmNsyFT7xfqBKye7cH11BX8V8P4MeGB5YWlMI+Myj5DZY3fQ
34
+ st2AGD4rb1l0ia7PfubcBThSIdz61eCb8gRi/RiZZwb3/7+eyEncLJzt2Ob9fGSF
35
+ X0qdrKi+2aZZ0NGuFj9AItBsVmAvkBGIpX4TEKQp5haEbPpmaqO5nIIhV26PXmyT
36
+ OMKv6pWsoS81vw5KAGBmfX8nht/Py90DQrbRvakATGI=
37
+ -----END CERTIFICATE-----
38
+ date: 2018-01-30 00:00:00.000000000 Z
39
+ dependencies:
40
+ - !ruby/object:Gem::Dependency
41
+ name: loggability
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.11'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.11'
54
+ - !ruby/object:Gem::Dependency
55
+ name: hoe-mercurial
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.4'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.4'
68
+ - !ruby/object:Gem::Dependency
69
+ name: hoe-deveiate
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '0.9'
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '0.9'
82
+ - !ruby/object:Gem::Dependency
83
+ name: hoe-highline
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '0.2'
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '0.2'
96
+ - !ruby/object:Gem::Dependency
97
+ name: simplecov
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '0.7'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '0.7'
110
+ - !ruby/object:Gem::Dependency
111
+ name: rdoc-generator-fivefish
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '0.1'
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '0.1'
124
+ - !ruby/object:Gem::Dependency
125
+ name: rdoc
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '6.0'
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '6.0'
138
+ - !ruby/object:Gem::Dependency
139
+ name: hoe
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '3.16'
145
+ type: :development
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '3.16'
152
+ description: |-
153
+ This is a client library for the Mercurial distributed revision control tool
154
+ that uses the [Command Server][cmdserver] for efficiency.
155
+ email:
156
+ - ged@FaerieMUD.org
157
+ executables: []
158
+ extensions: []
159
+ extra_rdoc_files:
160
+ - History.md
161
+ - LICENSE.txt
162
+ - Manifest.txt
163
+ - README.md
164
+ files:
165
+ - ".simplecov"
166
+ - ChangeLog
167
+ - History.md
168
+ - LICENSE.txt
169
+ - Manifest.txt
170
+ - README.md
171
+ - Rakefile
172
+ - lib/hglib.rb
173
+ - spec/hglib_spec.rb
174
+ - spec/spec_helper.rb
175
+ homepage: http://deveiate.org/projects/hglib
176
+ licenses:
177
+ - BSD-3-Clause
178
+ metadata: {}
179
+ post_install_message:
180
+ rdoc_options:
181
+ - "--main"
182
+ - README.md
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ version: 2.5.0
190
+ required_rubygems_version: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">"
193
+ - !ruby/object:Gem::Version
194
+ version: 1.3.1
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 2.7.4
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: This is a client library for the Mercurial distributed revision control tool
201
+ that uses the [Command Server][cmdserver] for efficiency.
202
+ test_files: []