dude-cli 2.0.2 → 2.0.3
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 +4 -4
- data/Gemfile.lock +6 -6
- data/dude-cli-2.0.2.gem +0 -0
- data/dude.gemspec +4 -3
- data/lib/dude/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9088dea7a26932457085b21697e24fa279b71c453965fe8b0bf0584fb230abe8
|
|
4
|
+
data.tar.gz: e2ebf9a40c8327133308b58b2b9a5c163f7905b3022932094bf75167133c71e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e37ddaeddd27921d82ba805e1d74bf7a1d59887f74d195038a0fb61798bb837dc00057e5a46ebc5208679c210b01b57cebc6cc5314eae4a2d902539b38cb996f
|
|
7
|
+
data.tar.gz: c48858fc236b4caebeabbfacd969cf1cf73d427e34e39cd6d7246a9ff318bdccd554240ea6b0d755eb1be468417268ea55098112d5c98b4f9acb5c8b61332ee6
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
dude-cli (2.0.
|
|
4
|
+
dude-cli (2.0.3)
|
|
5
5
|
colorize (~> 0.8.1)
|
|
6
6
|
dry-cli (~> 0.6)
|
|
7
7
|
faraday (~> 1.1)
|
|
@@ -44,20 +44,20 @@ GEM
|
|
|
44
44
|
pry (0.14.0)
|
|
45
45
|
coderay (~> 1.1)
|
|
46
46
|
method_source (~> 1.0)
|
|
47
|
-
rake (13.0.
|
|
47
|
+
rake (13.0.3)
|
|
48
48
|
rspec (3.10.0)
|
|
49
49
|
rspec-core (~> 3.10.0)
|
|
50
50
|
rspec-expectations (~> 3.10.0)
|
|
51
51
|
rspec-mocks (~> 3.10.0)
|
|
52
|
-
rspec-core (3.10.
|
|
52
|
+
rspec-core (3.10.1)
|
|
53
53
|
rspec-support (~> 3.10.0)
|
|
54
|
-
rspec-expectations (3.10.
|
|
54
|
+
rspec-expectations (3.10.1)
|
|
55
55
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
56
56
|
rspec-support (~> 3.10.0)
|
|
57
|
-
rspec-mocks (3.10.
|
|
57
|
+
rspec-mocks (3.10.2)
|
|
58
58
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
59
59
|
rspec-support (~> 3.10.0)
|
|
60
|
-
rspec-support (3.10.
|
|
60
|
+
rspec-support (3.10.2)
|
|
61
61
|
ruby2_keywords (0.0.4)
|
|
62
62
|
tzinfo (2.0.4)
|
|
63
63
|
concurrent-ruby (~> 1.0)
|
data/dude-cli-2.0.2.gem
ADDED
|
Binary file
|
data/dude.gemspec
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
1
3
|
require_relative 'lib/dude/version'
|
|
2
4
|
|
|
3
5
|
Gem::Specification.new do |spec|
|
|
@@ -9,15 +11,14 @@ Gem::Specification.new do |spec|
|
|
|
9
11
|
spec.summary = %q{A daily assistant in the hard work of a programmer.}
|
|
10
12
|
spec.description = %q{This program helps to combine such services as Jira, Toggl and git and replace most routine activities with one simple CLI utility.}
|
|
11
13
|
spec.homepage = "https://github.com/npupko/dude"
|
|
14
|
+
spec.license = "MIT"
|
|
12
15
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
13
16
|
|
|
14
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
15
18
|
spec.metadata["source_code_uri"] = "https://github.com/npupko/dude"
|
|
16
19
|
spec.metadata["changelog_uri"] = "https://github.com/npupko/dude/blob/master/CHANGELOG.md"
|
|
17
20
|
|
|
18
|
-
spec.files =
|
|
19
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
20
|
-
end
|
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
21
22
|
|
|
22
23
|
spec.bindir = "bin"
|
|
23
24
|
spec.executables = ["dude"]
|
data/lib/dude/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dude-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nikita Pupko
|
|
@@ -129,6 +129,7 @@ files:
|
|
|
129
129
|
- bin/console
|
|
130
130
|
- bin/dude
|
|
131
131
|
- bin/setup
|
|
132
|
+
- dude-cli-2.0.2.gem
|
|
132
133
|
- dude.gemspec
|
|
133
134
|
- lib/dude.rb
|
|
134
135
|
- lib/dude/commands.rb
|
|
@@ -164,7 +165,8 @@ files:
|
|
|
164
165
|
- lib/dude/time_trackers/toggl/stop_time_entry.rb
|
|
165
166
|
- lib/dude/version.rb
|
|
166
167
|
homepage: https://github.com/npupko/dude
|
|
167
|
-
licenses:
|
|
168
|
+
licenses:
|
|
169
|
+
- MIT
|
|
168
170
|
metadata:
|
|
169
171
|
homepage_uri: https://github.com/npupko/dude
|
|
170
172
|
source_code_uri: https://github.com/npupko/dude
|