punctuation_name 1.1.2 → 1.1.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: 6c4f3e039b9ecd6e828bf0ffe685ef9fd7f04a4d2b34eceb44d8d4155e8b97da
4
- data.tar.gz: c2de4256ef0866b1ac8dd44a18105570d6f505c321b922b142fff6bb6ee04dc6
3
+ metadata.gz: c6bc75a873d96e06b49f2f2293f396b94a934bdc2ecef8d9a395dac26dc4c0a1
4
+ data.tar.gz: ae3166c235dde266a8c4e7f0a04ee75b923f24a5310d8ac4ec0bc90fb8b6c459
5
5
  SHA512:
6
- metadata.gz: e7176687153873028e557df704d1c30f650b3e091c95104ff771987b658e047a49927cdd6118b277febd58094fc60d86af0255f9165e585ca9d6119770c8b6ba
7
- data.tar.gz: 2b19ea061e91d90fc54a171aba644fa6ff3d81be2ade7e573f02892383b72dc2dcde5c3e79d193f49ca787b5007446e631ff992a2710a468c396e6d53aa36eb4
6
+ metadata.gz: cdfc46cc2eb5c3ac4fe81f86dc2e0fecac042c286d3c4811913ac840e11539b7dad8ac468d01c6a75349fc3a22ab3d3e71a9409c6c74a1d7c9e3463ac42e0232
7
+ data.tar.gz: 2a66412569c141a516b82b2ee78faa59353924ceab693249578ec3921d00b8122f158417a711acd46ed0e262a0f555fe68d222fce1c1d35ac0c57b494cd22268
@@ -1,23 +1,27 @@
1
- sudo: required
2
1
  matrix:
3
2
  include:
4
3
  - language: ruby
4
+ name: "Bundler (rvm 2.4.4 & bundler 1.17.3)"
5
5
  rvm: 2.4.4
6
6
  before_install:
7
7
  - gem install bundler -v 1.17.3
8
8
  - language: ruby
9
+ name: "Bundler (rvm 2.4.4 & bundler 2.0.1)"
9
10
  rvm: 2.4.4
10
11
  before_install:
11
12
  - gem install bundler -v 2.0.1
12
13
  - language: ruby
14
+ name: "Bundler (rvm 2.5.3 & bundler 2.0.1)"
13
15
  rvm: 2.5.3
14
16
  before_install:
15
17
  - gem install bundler -v 2.0.1
16
18
  - language: ruby
19
+ name: "Bundler (rvm 2.6.1 & bundler 2.0.1)"
17
20
  rvm: 2.6.1
18
21
  before_install:
19
22
  - gem install bundler -v 2.0.1
20
23
  - language: ruby
24
+ name: "Rubocop (rvm 2.4.4)"
21
25
  env: SKIP_INTERPRETER=true
22
26
  rvm: 2.4.4
23
27
  before_install:
@@ -27,6 +31,7 @@ matrix:
27
31
  script:
28
32
  - ./rubocop-travis/scan.sh
29
33
  - language: ruby
34
+ name: "Rubocop (rvm 2.5.3)"
30
35
  env: SKIP_INTERPRETER=true
31
36
  rvm: 2.5.3
32
37
  before_install:
@@ -36,6 +41,7 @@ matrix:
36
41
  script:
37
42
  - ./rubocop-travis/scan.sh
38
43
  - language: ruby
44
+ name: "Rubocop (rvm 2.6.1)"
39
45
  env: SKIP_INTERPRETER=true
40
46
  rvm: 2.6.1
41
47
  before_install:
@@ -45,6 +51,7 @@ matrix:
45
51
  script:
46
52
  - ./rubocop-travis/scan.sh
47
53
  - language: ruby
54
+ name: "Link Checker (rvm 2.6.1)"
48
55
  rvm: 2.6.1
49
56
  before_install:
50
57
  - mkdir travis
@@ -1,3 +1,9 @@
1
+ ## 1.1.3 (June 28, 2019)
2
+
3
+ IMPROVEMENTS:
4
+
5
+ * Clean up tweaks based on updates to rubocop. ([@TGWolf][])
6
+
1
7
  ## 1.1.2 (March 13, 2019)
2
8
 
3
9
  IMPROVEMENTS:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'punctuation_name/version'
2
4
  require_relative 'punctuation_name/overloads'
3
5
  require_relative 'punctuation_name/dicts/uk.rb'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PunctuationName
2
4
  UK_NAMES = { '!' => 'exclamation mark',
3
5
  '@' => 'at sign',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PunctuationName
2
4
  US_NAMES = { '!' => 'exclamation mark',
3
5
  '@' => 'at sign',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  #
2
4
  # Overload the string class
3
5
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module PunctuationName
2
- VERSION = '1.1.2'.freeze
4
+ VERSION = '1.1.3'
3
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: punctuation_name
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Gurney aka Wolf
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-13 00:00:00.000000000 Z
11
+ date: 2019-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler