task_report 0.1.0 → 0.2.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/circle.yml +20 -0
  4. data/task_report.gemspec +1 -1
  5. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83f485efcd3d9a42cb28df8584a6b8395281b57a
4
- data.tar.gz: dccb48b7fb94e18d523b0ac5e9b121790a529fa3
3
+ metadata.gz: dad10efb1db7293d32e0d8d1fc2d70fbb955348d
4
+ data.tar.gz: 412ed64ae6c0ef4fc3987fa35ed2945a3372ca2f
5
5
  SHA512:
6
- metadata.gz: 3ce79635dda36eea5e05d39c2f2ad3b806a7eb037662532a92bb87259e63aeb5b334487b33d5997764f0066c27395478a22746b6b8a38d05b5895106354a1dd2
7
- data.tar.gz: 3420cda1a200e996badde56d0514876b784608be9882eb9ceab08c14126cbfa8319e5143d52884b4a9f0426e083868cff689a2c68b01fd7a68db170d1239084c
6
+ metadata.gz: 3c1b754675e5ce7da4ea94d289d72a715af8d1ea12f81ee2fc6e89aa5f629cccc992485e68048ca4a608f17878a739022fe8a79505bf67f6fc7a67ae3701a2e8
7
+ data.tar.gz: 14259c7f665b2c126e85c34701eb60840df7e172fbe93db87fcf87154b751ea752df4163e43ff0e587ea6af99b6e825984567b81dffe6b6b68e9aa89d0c19648
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
data/circle.yml ADDED
@@ -0,0 +1,20 @@
1
+ machine:
2
+ ruby:
3
+ version: 2.3.0
4
+
5
+ dependencies:
6
+ override:
7
+ - echo '---' >> $HOME/.gem/credentials
8
+ - 'echo ":rubygems_api_key: $RUBYGEMS_CREDENTIAL" >> $HOME/.gem/credentials'
9
+ - chmod 0600 $HOME/.gem/credentials
10
+
11
+ test:
12
+ override:
13
+ - echo 'no tests'
14
+
15
+ deployment:
16
+ release:
17
+ branch: master
18
+ commands:
19
+ - gem build task_report.gemspec
20
+ - gem push $(echo task_report*.gem)
data/task_report.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Mat Pataki']
9
9
  spec.email = ['matpataki@gmail.com']
10
10
 
11
- spec.summary = 'Task tracker'
11
+ spec.summary = 'Task tracker with gist support'
12
12
  spec.homepage = 'https://github.com/mpataki/task_report'
13
13
  spec.license = 'MIT'
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: task_report
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Pataki
@@ -53,6 +53,7 @@ files:
53
53
  - Rakefile
54
54
  - VERSION
55
55
  - bin/task
56
+ - circle.yml
56
57
  - lib/task_report.rb
57
58
  - lib/task_report/duration.rb
58
59
  - lib/task_report/gist.rb
@@ -83,5 +84,5 @@ rubyforge_project:
83
84
  rubygems_version: 2.5.1
84
85
  signing_key:
85
86
  specification_version: 4
86
- summary: Task tracker
87
+ summary: Task tracker with gist support
87
88
  test_files: []