redpomo-reloaded 0.0.13 → 0.0.14

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: ba8c0ed292bc0c10264cb48240e0070fa13ba8dd
4
- data.tar.gz: b9baf74829f4321029465182679b85e564b34e53
3
+ metadata.gz: 949400247c94ef9968bf101ce56222d45aa6bfd6
4
+ data.tar.gz: 4059a76a0e964e761e148970b9b5d14b28890ac4
5
5
  SHA512:
6
- metadata.gz: 93cc72508d647adecf51896d5377da3d8e79fe2a730b55ef143850c63b632055cb00329ffba42544a95be5943c81a3627afe13fcaa51a589d7cb69cc0bb0c561
7
- data.tar.gz: 271b0ebe542e6d88b70a49cd89a28e83e1501fc6bd9ad115f34b17cd47dfdb4eef35795bdbf306f037e604e6155812dd36c8ff8ff68b89de58b04d766a7d629f
6
+ metadata.gz: 5187d23981c0bebf0b97be870ab8e27e41458367323718fbe1c887009bc37e00c2bc272e5f2d215f3d033fce6280b8200c238044e87d9035eb942e5f71b6e3d1
7
+ data.tar.gz: 7329fe1f44940ec9e8e9c0e9d2d2aaa21bfc4f795f1a19ac01d062c17a5b564628bd1360bda6b4d32a6b2c9c97dd1c3e3fede9ffd4ece2bde364447b156c886c
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour --format d
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
@@ -1,3 +1,3 @@
1
1
  module Redpomo
2
- VERSION = "0.0.13"
2
+ VERSION = "0.0.14"
3
3
  end
data/redpomo.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = %q{A nice little gem that integrates Redmine, Todo.txt and Pomodoro.app}
9
9
  gem.homepage = ""
10
10
 
11
- gem.files = Dir.glob("./**/*")
11
+ gem.files = `git ls-files`.split($\)
12
12
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
14
  gem.name = "redpomo-reloaded"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redpomo-reloaded
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Verna
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-20 00:00:00.000000000 Z
12
+ date: 2017-02-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -210,66 +210,69 @@ dependencies:
210
210
  description: A nice little gem that integrates Redmine, Todo.txt and Pomodoro.app
211
211
  email:
212
212
  - yurifrl@outlook.com
213
- executables: []
213
+ executables:
214
+ - redpomo
214
215
  extensions: []
215
216
  extra_rdoc_files: []
216
217
  files:
217
- - "./Dockerfile"
218
- - "./Gemfile"
219
- - "./Gemfile.lock"
220
- - "./Guardfile"
221
- - "./LICENSE"
222
- - "./README.md"
223
- - "./Rakefile"
224
- - "./bin/redpomo"
225
- - "./docker-compose.yml"
226
- - "./lib/redpomo.rb"
227
- - "./lib/redpomo/cli.rb"
228
- - "./lib/redpomo/config.rb"
229
- - "./lib/redpomo/entries_printer.rb"
230
- - "./lib/redpomo/entry.rb"
231
- - "./lib/redpomo/file_cache.rb"
232
- - "./lib/redpomo/fuzzy_converter.rb"
233
- - "./lib/redpomo/issue.rb"
234
- - "./lib/redpomo/null_cache.rb"
235
- - "./lib/redpomo/numeric_ext.rb"
236
- - "./lib/redpomo/task.rb"
237
- - "./lib/redpomo/task_list.rb"
238
- - "./lib/redpomo/templates/config.yml"
239
- - "./lib/redpomo/templates/issue_stub.textile"
240
- - "./lib/redpomo/tracker.rb"
241
- - "./lib/redpomo/ui.rb"
242
- - "./lib/redpomo/version.rb"
243
- - "./redpomo.gemspec"
244
- - "./spec/file_cache_spec.rb"
245
- - "./spec/fixtures/add_results.txt"
246
- - "./spec/fixtures/cassettes/cli_add.yml"
247
- - "./spec/fixtures/cassettes/cli_close.yml"
248
- - "./spec/fixtures/cassettes/cli_pull.yml"
249
- - "./spec/fixtures/cassettes/cli_push.yml"
250
- - "./spec/fixtures/cassettes/close_issue.yml"
251
- - "./spec/fixtures/cassettes/create_issue.yml"
252
- - "./spec/fixtures/cassettes/issues.yml"
253
- - "./spec/fixtures/cassettes/push_entry.yml"
254
- - "./spec/fixtures/close_results.txt"
255
- - "./spec/fixtures/config.yml"
256
- - "./spec/fixtures/printer_output.txt"
257
- - "./spec/fixtures/proper_timelog.csv"
258
- - "./spec/fixtures/pull_results.txt"
259
- - "./spec/fixtures/tasks.txt"
260
- - "./spec/fixtures/timelog.csv"
261
- - "./spec/integration/add_spec.rb"
262
- - "./spec/integration/init_spec.rb"
263
- - "./spec/lib/redpomo/cli_spec.rb"
264
- - "./spec/lib/redpomo/entry_spec.rb"
265
- - "./spec/lib/redpomo/fuzzy_converter_spec.rb"
266
- - "./spec/lib/redpomo/task_spec.rb"
267
- - "./spec/lib/redpomo/tracker_spec.rb"
268
- - "./spec/spec_helper.rb"
269
- - "./spec/support/cli_helpers.rb"
270
- - "./spec/support/fixtures.rb"
271
- - "./spec/support/ruby_ext.rb"
272
- - "./spec/tmp/REDME.md"
218
+ - ".gitignore"
219
+ - ".rspec"
220
+ - ".travis.yml"
221
+ - Dockerfile
222
+ - Gemfile
223
+ - Guardfile
224
+ - LICENSE
225
+ - README.md
226
+ - Rakefile
227
+ - bin/redpomo
228
+ - docker-compose.yml
229
+ - lib/redpomo.rb
230
+ - lib/redpomo/cli.rb
231
+ - lib/redpomo/config.rb
232
+ - lib/redpomo/entries_printer.rb
233
+ - lib/redpomo/entry.rb
234
+ - lib/redpomo/file_cache.rb
235
+ - lib/redpomo/fuzzy_converter.rb
236
+ - lib/redpomo/issue.rb
237
+ - lib/redpomo/null_cache.rb
238
+ - lib/redpomo/numeric_ext.rb
239
+ - lib/redpomo/task.rb
240
+ - lib/redpomo/task_list.rb
241
+ - lib/redpomo/templates/config.yml
242
+ - lib/redpomo/templates/issue_stub.textile
243
+ - lib/redpomo/tracker.rb
244
+ - lib/redpomo/ui.rb
245
+ - lib/redpomo/version.rb
246
+ - redpomo.gemspec
247
+ - spec/file_cache_spec.rb
248
+ - spec/fixtures/add_results.txt
249
+ - spec/fixtures/cassettes/cli_add.yml
250
+ - spec/fixtures/cassettes/cli_close.yml
251
+ - spec/fixtures/cassettes/cli_pull.yml
252
+ - spec/fixtures/cassettes/cli_push.yml
253
+ - spec/fixtures/cassettes/close_issue.yml
254
+ - spec/fixtures/cassettes/create_issue.yml
255
+ - spec/fixtures/cassettes/issues.yml
256
+ - spec/fixtures/cassettes/push_entry.yml
257
+ - spec/fixtures/close_results.txt
258
+ - spec/fixtures/config.yml
259
+ - spec/fixtures/printer_output.txt
260
+ - spec/fixtures/proper_timelog.csv
261
+ - spec/fixtures/pull_results.txt
262
+ - spec/fixtures/tasks.txt
263
+ - spec/fixtures/timelog.csv
264
+ - spec/integration/add_spec.rb
265
+ - spec/integration/init_spec.rb
266
+ - spec/lib/redpomo/cli_spec.rb
267
+ - spec/lib/redpomo/entry_spec.rb
268
+ - spec/lib/redpomo/fuzzy_converter_spec.rb
269
+ - spec/lib/redpomo/task_spec.rb
270
+ - spec/lib/redpomo/tracker_spec.rb
271
+ - spec/spec_helper.rb
272
+ - spec/support/cli_helpers.rb
273
+ - spec/support/fixtures.rb
274
+ - spec/support/ruby_ext.rb
275
+ - spec/tmp/REDME.md
273
276
  homepage: ''
274
277
  licenses: []
275
278
  metadata: {}
@@ -293,4 +296,33 @@ rubygems_version: 2.6.10
293
296
  signing_key:
294
297
  specification_version: 4
295
298
  summary: A nice little gem that integrates Redmine, Todo.txt and Pomodoro.app
296
- test_files: []
299
+ test_files:
300
+ - spec/file_cache_spec.rb
301
+ - spec/fixtures/add_results.txt
302
+ - spec/fixtures/cassettes/cli_add.yml
303
+ - spec/fixtures/cassettes/cli_close.yml
304
+ - spec/fixtures/cassettes/cli_pull.yml
305
+ - spec/fixtures/cassettes/cli_push.yml
306
+ - spec/fixtures/cassettes/close_issue.yml
307
+ - spec/fixtures/cassettes/create_issue.yml
308
+ - spec/fixtures/cassettes/issues.yml
309
+ - spec/fixtures/cassettes/push_entry.yml
310
+ - spec/fixtures/close_results.txt
311
+ - spec/fixtures/config.yml
312
+ - spec/fixtures/printer_output.txt
313
+ - spec/fixtures/proper_timelog.csv
314
+ - spec/fixtures/pull_results.txt
315
+ - spec/fixtures/tasks.txt
316
+ - spec/fixtures/timelog.csv
317
+ - spec/integration/add_spec.rb
318
+ - spec/integration/init_spec.rb
319
+ - spec/lib/redpomo/cli_spec.rb
320
+ - spec/lib/redpomo/entry_spec.rb
321
+ - spec/lib/redpomo/fuzzy_converter_spec.rb
322
+ - spec/lib/redpomo/task_spec.rb
323
+ - spec/lib/redpomo/tracker_spec.rb
324
+ - spec/spec_helper.rb
325
+ - spec/support/cli_helpers.rb
326
+ - spec/support/fixtures.rb
327
+ - spec/support/ruby_ext.rb
328
+ - spec/tmp/REDME.md
data/Gemfile.lock DELETED
@@ -1,139 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- redpomo (0.0.13)
5
- activesupport
6
- applescript
7
- launchy
8
- rest-client
9
- terminal-table
10
- thor
11
- todo-txt
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- activesupport (5.0.1)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- addressable (2.5.0)
22
- public_suffix (~> 2.0, >= 2.0.2)
23
- applescript (1.0)
24
- coderay (1.1.1)
25
- concurrent-ruby (1.0.4)
26
- crack (0.4.3)
27
- safe_yaml (~> 1.0.0)
28
- diff-lcs (1.3)
29
- docile (1.1.5)
30
- domain_name (0.5.20161129)
31
- unf (>= 0.0.5, < 1.0.0)
32
- ffi (1.9.17)
33
- formatador (0.2.5)
34
- guard (2.14.1)
35
- formatador (>= 0.2.4)
36
- listen (>= 2.7, < 4.0)
37
- lumberjack (~> 1.0)
38
- nenv (~> 0.1)
39
- notiffany (~> 0.0)
40
- pry (>= 0.9.12)
41
- shellany (~> 0.0)
42
- thor (>= 0.18.1)
43
- guard-compat (1.2.1)
44
- guard-rspec (4.7.3)
45
- guard (~> 2.1)
46
- guard-compat (~> 1.1)
47
- rspec (>= 2.99.0, < 4.0)
48
- hashdiff (0.3.2)
49
- http-cookie (1.0.3)
50
- domain_name (~> 0.5)
51
- i18n (0.8.0)
52
- json (2.0.3)
53
- launchy (2.4.3)
54
- addressable (~> 2.3)
55
- listen (3.1.5)
56
- rb-fsevent (~> 0.9, >= 0.9.4)
57
- rb-inotify (~> 0.9, >= 0.9.7)
58
- ruby_dep (~> 1.2)
59
- lumberjack (1.0.11)
60
- metaclass (0.0.4)
61
- method_source (0.8.2)
62
- mime-types (3.1)
63
- mime-types-data (~> 3.2015)
64
- mime-types-data (3.2016.0521)
65
- minitest (5.10.1)
66
- mocha (1.2.1)
67
- metaclass (~> 0.0.1)
68
- nenv (0.3.0)
69
- netrc (0.11.0)
70
- notiffany (0.1.1)
71
- nenv (~> 0.1)
72
- shellany (~> 0.0)
73
- pry (0.10.4)
74
- coderay (~> 1.1.0)
75
- method_source (~> 0.8.1)
76
- slop (~> 3.4)
77
- public_suffix (2.0.5)
78
- rake (12.0.0)
79
- rb-fsevent (0.9.8)
80
- rb-inotify (0.9.8)
81
- ffi (>= 0.5.0)
82
- rest-client (2.0.1)
83
- http-cookie (>= 1.0.2, < 2.0)
84
- mime-types (>= 1.16, < 4.0)
85
- netrc (~> 0.8)
86
- rspec (3.5.0)
87
- rspec-core (~> 3.5.0)
88
- rspec-expectations (~> 3.5.0)
89
- rspec-mocks (~> 3.5.0)
90
- rspec-core (3.5.4)
91
- rspec-support (~> 3.5.0)
92
- rspec-expectations (3.5.0)
93
- diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.5.0)
95
- rspec-mocks (3.5.0)
96
- diff-lcs (>= 1.2.0, < 2.0)
97
- rspec-support (~> 3.5.0)
98
- rspec-support (3.5.0)
99
- ruby_dep (1.5.0)
100
- safe_yaml (1.0.4)
101
- shellany (0.0.1)
102
- simplecov (0.13.0)
103
- docile (~> 1.1.0)
104
- json (>= 1.8, < 3)
105
- simplecov-html (~> 0.10.0)
106
- simplecov-html (0.10.0)
107
- slop (3.6.0)
108
- terminal-table (1.7.3)
109
- unicode-display_width (~> 1.1.1)
110
- thor (0.19.4)
111
- thread_safe (0.3.5)
112
- todo-txt (0.11)
113
- tzinfo (1.2.2)
114
- thread_safe (~> 0.1)
115
- unf (0.1.4)
116
- unf_ext
117
- unf_ext (0.0.7.2)
118
- unicode-display_width (1.1.3)
119
- vcr (3.0.3)
120
- webmock (2.3.2)
121
- addressable (>= 2.3.6)
122
- crack (>= 0.3.2)
123
- hashdiff
124
-
125
- PLATFORMS
126
- ruby
127
-
128
- DEPENDENCIES
129
- guard-rspec
130
- mocha
131
- rake
132
- redpomo!
133
- rspec
134
- simplecov
135
- vcr
136
- webmock
137
-
138
- BUNDLED WITH
139
- 1.14.3