dude-cli 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1735feb6178b7519fa39d22ccd270305a641d24434c8425713f54ca013b7d8e4
4
- data.tar.gz: 9409ae3d367fe141fbc717ac8c1a9ea776b11d2578ac512e5d72cbe63b427676
3
+ metadata.gz: 9088dea7a26932457085b21697e24fa279b71c453965fe8b0bf0584fb230abe8
4
+ data.tar.gz: e2ebf9a40c8327133308b58b2b9a5c163f7905b3022932094bf75167133c71e0
5
5
  SHA512:
6
- metadata.gz: ed691869bbd85d8b6d5a13a970dd27f0e589b3242ce641fe3c0c480e383cf3b4c3b4e2aff4402036d4db7c4e12762a28108652e421eed942d3e4869891e70b69
7
- data.tar.gz: 91c0d2e10d7b408a943a88877e1a1b231bfec8457319697a4637ac9d7dad03da907749535ddb3283f8d6dc13843082feb1b0a349f9106c38f6ad2b49c7efe16b
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.2)
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.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.0)
52
+ rspec-core (3.10.1)
53
53
  rspec-support (~> 3.10.0)
54
- rspec-expectations (3.10.0)
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.0)
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.0)
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)
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 = Dir.chdir(File.expand_path('..', __FILE__)) do
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
@@ -1,3 +1,3 @@
1
1
  module Dude
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
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.2
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