gh-cards 0.2.4 → 0.2.5

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
  SHA256:
3
- metadata.gz: 7ca9a4a729cefe0f7a99a4b8e6c09da4f331037ffe0f718142bb351de8daccc9
4
- data.tar.gz: 209b7125e3462f7d42c473d01c2e2b25503ecf2d2abe57c25819896dc95c6753
3
+ metadata.gz: bdad7103293e470a3c7cec889a1def76cc97cd9a8df10d801733a220e15874b7
4
+ data.tar.gz: 456fbed73fadbf44695dd981a728e8f13068fec03d974ee3ca5d2f59ad652e37
5
5
  SHA512:
6
- metadata.gz: 4d645e389f3f57330ce61590f95ef1425050079ecc61080bad1621d0a117dcf972606271eeec7bde8b9d810012f46aa5213fce23df931a8e1a14174ed0739c3b
7
- data.tar.gz: 047f5789737da7352941ff72de51cfc614168e47995300ec157cf9ed65f4cfb9787364bebb81b58b6491b7208aaa56b6f9b5653e1f286e2c8bff323782ec85c2
6
+ metadata.gz: 705e7cc18838178ae7a1608fd9e3ec9fea708c552207e65b93f9d7e662a88529af20231bd6320b8b9f0c73120027d3ed572dfc70004ba2d69c9f0970ececa41f
7
+ data.tar.gz: 4bd263cc22970e0d6296d08e2e46739179f8864c9aa04b23b7855b581fd137d353c827c1ef883d39c6fa52cbfc8fd7d92d47d0fa4967fb552cd9a310c9d39565
@@ -1,3 +1,7 @@
1
+ # 0.2.5
2
+
3
+ Add repo, users and calendar icons to default template
4
+
1
5
  # 0.2.4
2
6
 
3
7
  Configure octokit client to auto-paginate and traverse pages
data/README.md CHANGED
@@ -17,9 +17,7 @@ gem install gh-cards
17
17
 
18
18
  2. Configure your `~/.netrc` file with:
19
19
  ```
20
- machine api.github.com
21
- login <<username>>
22
- password <<access-token>>
20
+ machine api.github.com login <<username>> password <<access-token>>
23
21
  ```
24
22
  and set it's permissions: `chmod 0600 ~/.netrc`
25
23
 
@@ -1,5 +1,5 @@
1
1
  module Gh
2
2
  module Cards
3
- VERSION = "0.2.4"
3
+ VERSION = "0.2.5"
4
4
  end
5
5
  end
@@ -31,7 +31,7 @@
31
31
  <%- slice.each do |card| %>
32
32
  <div class="card">
33
33
  <div class="card-header">
34
- <%= repo.split('/')[-1] %>
34
+ <span class="octicon octicon-repo" aria-hidden="true"></span><%= repo.split('/')[-1] %>
35
35
  </div>
36
36
  <div class="card-body">
37
37
  <h4 class="card-title"><span class="font-weight-bold">#<%= card[:number] %></span> <%= card[:title].length > 40 ? card[:title][0, 80 - 3] + "..." : card[:title] %></h4>
@@ -49,8 +49,8 @@
49
49
  <% end %>
50
50
  </div>
51
51
  <div class="card-footer small text-secondary">
52
- Created by: <%= card[:created_by] %><br />
53
- <%= card[:created_at].strftime("at %F") %>
52
+ <span class="octicon octicon-organization" aria-hidden="true"></span><%= card[:created_by] %><br />
53
+ <span class="octicon octicon-calendar" aria-hidden="true"></span><%= card[:created_at].strftime("%F") %>
54
54
  </div>
55
55
  </div>
56
56
  <% end %>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gh-cards
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Birkett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-13 00:00:00.000000000 Z
11
+ date: 2019-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit