pennyworth 12.0.1 → 12.0.2

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: 6c172a3d9ec4c91a86564d4b86a46c113c2859010754745e68c7aa43df251719
4
- data.tar.gz: cf6d28495dc0562b6d9454b662aefcaadad09fe6adcf5a05266a0b102bd69955
3
+ metadata.gz: 6fd88cbdb95d2b5fc10af2cf5fdb1c242e10ba700e0817f1e4d413e6f2aca7a5
4
+ data.tar.gz: 43b90ea5a31fced6acff2c2ac5fba9f5f226d303fc2e2d92a683cc2577e23a24
5
5
  SHA512:
6
- metadata.gz: 4a82deb994823cd68b1f638e2b5e223e883ba6848a94c2a510e1c93069b1f2150d25377a31aedf35d9ac11a223fe24599f70af62550eaab0a9fff459f13717d5
7
- data.tar.gz: 88faa1467de0fa6134a2a9843ab8506eef801c288b5829ec28881471d3983d064c3331a8ed8ecc7ebd8480931403d8e0f1905ef38625d4bed3150a808d4a836c
6
+ metadata.gz: a1153ca63dc893776982b7a3874b498d8879424025a458cde6bf97971d4e9a1ff3657e905009691768f1e250f636a299092c318a0c88221795570ce720ff0df7
7
+ data.tar.gz: 4c832cc8d84908c6b11d7bb3fabe7c27cf2f86f56a6e159f60b16fe33848dcc2927a38a1a4e873908050f53ae656735518f21a6a7493b205deb77b1453be7eb8
checksums.yaml.gz.sig CHANGED
@@ -1 +1 @@
1
- ��?�s&�ڹ����!hߝ���q|�a��5 ���u��MD���: ��!�sq�� 9��&)��<b��� *]S�~Iz�-���^ 9��}��g��X�q�.� t#ԫ����ɞ~��>X�~�iz��C2���g2`��ŲT������ Z�}2�G�}S��b��=4��OL��Zr���Z��Y!ߚ5-VS<�Va���X���$�`nMyr5\�˲d.ŎU�:���R�WYٹh�M�
1
+ ��"c�j�,Ij�_G,<�7\+��1+M �����/;�L,��ִbd>ۼ�Rd�#�E��r͡8J�������S*�Y���Lg��*46���8��ڔ+���������BP�=�Ś�ka�����f��Ia��A�_��y�����$C�ڡvW�S�$�����ڐ����C�(Fz�a��1�õ�C]!������!]2�T�����o�@Lh�������}ı�A����d��2��JN���<�J^��
data/README.adoc CHANGED
@@ -245,7 +245,7 @@ The official link:https://www.alchemists.io[Alchemists] workflow for site naviga
245
245
  double click to install.
246
246
  2. Type `ax` to activate.
247
247
 
248
- 💡 Use `ENTER` to view site, `CONTROL` to view changes, `OPTION` to view source, or `COMMAND` to
248
+ 💡 Use `ENTER` to view site, `CONTROL` to view versions, `OPTION` to view source, or `COMMAND` to
249
249
  view issues.
250
250
 
251
251
  ==== Dry RB
@@ -258,7 +258,7 @@ A link:https://dry-rb.org[Dry RB] workflow for navigating all of the Dry RB site
258
258
  click to install.
259
259
  2. Type `dry` to activate general information and `dryx` for project list.
260
260
 
261
- 💡 Use `ENTER` to visit site, `CONTROL` to view changes, `OPTION` to view source, or `COMMAND` to
261
+ 💡 Use `ENTER` to visit site, `CONTROL` to view versions, `OPTION` to view source, or `COMMAND` to
262
262
  view issues.
263
263
 
264
264
  ==== Rubocop
@@ -266,13 +266,13 @@ view issues.
266
266
  image:https://www.alchemists.io/images/projects/pennyworth/screenshots/rubocop-projects.png[Rubocop Projects,width=706,height=632,role=focal_point]
267
267
 
268
268
  A link:https://docs.rubocop.org/rubocop[Rubocop] workflow for quick access to documentation,
269
- learning about project changes, viewing source code, etc.
269
+ learning about project versions, viewing source code, etc.
270
270
 
271
271
  1. link:https://www.alchemists.io/public/alfred/workflows/rubocop.alfredworkflow[Download] and
272
272
  double click to install.
273
273
  2. Type `cop` to activate.
274
274
 
275
- 💡 Use `ENTER` to view site, `CONTROL` to view changes, `OPTION` to view source, or `COMMAND` to
275
+ 💡 Use `ENTER` to view site, `CONTROL` to view versions, `OPTION` to view source, or `COMMAND` to
276
276
  view issues.
277
277
 
278
278
  ==== Ruby
@@ -6,7 +6,7 @@ module Pennyworth
6
6
  NAME = "pennyworth"
7
7
  LABEL = "Pennyworth"
8
8
  SUMMARY = "A command line interface that augments Alfred workflows."
9
- VERSION = "12.0.1"
9
+ VERSION = "12.0.2"
10
10
  VERSION_LABEL = "#{LABEL} #{VERSION}".freeze
11
11
  end
12
12
  end
@@ -34,10 +34,15 @@ module Pennyworth
34
34
 
35
35
  def source_url = record.fetch(:source_code_uri)
36
36
 
37
- def changes_url = record.fetch(:changelog_uri)
37
+ def changes_url
38
+ warn "[DEPRECATION]: #changes_url is deprecated, use #versions_url instead."
39
+ versions_url
40
+ end
38
41
 
39
42
  def issues_url = record.fetch(:bug_tracker_uri)
40
43
 
44
+ def versions_url = record.fetch(:changelog_uri)
45
+
41
46
  def updated_at = record.fetch(:version_created_at)
42
47
 
43
48
  private
@@ -23,10 +23,15 @@ module Pennyworth
23
23
 
24
24
  def source_url = record.fetch(:html_url)
25
25
 
26
- def changes_url = "#{site_url}/changes.html"
26
+ def changes_url
27
+ warn "[DEPRECATION]: #changes_url is deprecated, use #versions_url instead."
28
+ versions_url
29
+ end
27
30
 
28
31
  def issues_url = "#{source_url}/issues"
29
32
 
33
+ def versions_url = "#{site_url}/versions"
34
+
30
35
  private
31
36
 
32
37
  attr_reader :record, :inflector
@@ -26,9 +26,9 @@ module Pennyworth
26
26
 
27
27
  def modifications
28
28
  {
29
- control: modification(presenter.changes_url, "View changes."),
30
29
  alt: modification(presenter.source_url, "View source."),
31
- cmd: modification(presenter.issues_url, "View issues.")
30
+ cmd: modification(presenter.issues_url, "View issues."),
31
+ control: modification(presenter.versions_url, "View versions.")
32
32
  }
33
33
  end
34
34
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pennyworth
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.0.1
4
+ version: 12.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  lkHilIrX69jq8wMPpBhlaw2mRmeSL50Wv5u6xVBvOHhXFSP1crXM95vfLhLyRYod
29
29
  W2A=
30
30
  -----END CERTIFICATE-----
31
- date: 2022-01-01 00:00:00.000000000 Z
31
+ date: 2022-01-09 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: dry-container
metadata.gz.sig CHANGED
Binary file