gitti 0.5.0 → 0.6.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82d9e96c41bfe2c9fa31a16a4370dd7ed22fe77d
4
- data.tar.gz: f9fcafde391fbba16b951a4858dda109898e41dd
3
+ metadata.gz: f1760a26ec9a86beb7d14f0c0e6022e3e4783aa6
4
+ data.tar.gz: 2037723116969b309e79c6004d930c63f46e5ae0
5
5
  SHA512:
6
- metadata.gz: 1691456f72d2502668611903944cc1540b48266f733ba29ff5994f681e7911382e8bea3b45d2e6061ef7cf570b56b78d0c3c39124ccde9e28b93ba2cfdcb33ad
7
- data.tar.gz: 846f28155f8e0a36ff0e8064fff12389c6cfee5b5f13b69e454842a2554dc89cf72f38fd34e395a1094708018b240811420608112fe5fabc63495bc9e0c13ee9
6
+ metadata.gz: 42c2602a52143c8d6f85ee32171d2eb6075b82112c10b89b50a5e80f52e3b664398e19b35cf089588e5581c6f11dc038d7b0980d00d5d5e210000a3cc1625c21
7
+ data.tar.gz: 24b130b13ae2a2a314e3a5b03e6cfb1467cb1f4cbeb90a2596251ff95f1cb9721dbb4f03a1fd9f43dcc0e9af951a0ca52a096f8bbe72fe28ee3346b0d114e80a
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Hoe.spec 'gitti' do
18
18
  self.history_file = 'CHANGELOG.md'
19
19
 
20
20
  self.extra_deps = [
21
- ['yorobot-shell', '>= 0.0.1' ],
21
+ ['computer', '>= 0.1.0' ],
22
22
  ]
23
23
 
24
24
  self.licenses = ['Public Domain']
@@ -1,9 +1,9 @@
1
- require 'yorobot/shell' ## note: move shell execute for (re)use to its own (upstream) gem
1
+ require 'computer' ## note: move shell execute for (re)use to its own (upstream) gem
2
2
 
3
3
  module Gitti
4
- Shell = Yorobot::Shell
5
- ShellError = Yorobot::ShellError
6
- GitError = Yorobot::ShellError ## raised if git exec returns with non-zero exit - just use ShellError - why? why not?
4
+ Shell = Computer::Shell
5
+ ShellError = Computer::ShellError
6
+ GitError = Computer::ShellError ## raised if git exec returns with non-zero exit - just use ShellError - why? why not?
7
7
  ## raised by Git::Shell.run
8
8
  ## todo/check: use ShellError or RunError - why? why not?
9
9
  ## and make Git::Shell top-level e.g. Shell - why? why not?
@@ -7,7 +7,7 @@
7
7
 
8
8
  module GittiCore ## todo/check: rename GittiBase or GittiMeta or such - why? why not?
9
9
  MAJOR = 0 ## todo: namespace inside version or something - why? why not??
10
- MINOR = 5
10
+ MINOR = 6
11
11
  PATCH = 0
12
12
  VERSION = [MAJOR,MINOR,PATCH].join('.')
13
13
 
@@ -20,7 +20,7 @@ module GittiCore ## todo/check: rename GittiBase or GittiMeta or such - why?
20
20
  end
21
21
 
22
22
  def self.root
23
- "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
23
+ File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
24
24
  end
25
25
  end # module GittiCore
26
26
 
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitti
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-19 00:00:00.000000000 Z
11
+ date: 2020-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: yorobot-shell
14
+ name: computer
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.0.1
19
+ version: 0.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 0.0.1
26
+ version: 0.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement