user_naming 1.0.0 → 1.0.1

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: 33ea227853001c9d8674cfd5703ebcaad565b2dd
4
- data.tar.gz: a2a2eb43f59a8ef1daa9433fa7fc9b99af37450e
3
+ metadata.gz: d6903bc527ad60c1b14b0b80cb639db6de5c94c7
4
+ data.tar.gz: c280cdeae857d83612a1064b06e6046c81b165e7
5
5
  SHA512:
6
- metadata.gz: b9c30d24ecd52fd29db5309ec3ce320f0894704214a54f7598ee1d517c5dbf686e6ab196906a1b4873c83b0c432c61584be546fa6d3d3394a123a75f3f578edc
7
- data.tar.gz: 648a0e057fcb4b16b570c9a114d15dd5ff14c109c1a372582740db543a3ac14ccf7713c5a50ae1ae4b124e4cbccca775e534167ef6ffa150c803f6ff6e52374c
6
+ metadata.gz: 0ab9c33940feacdb2fd31f3137f8ea9e9e9194b3cbbd2537a7b031bd9beab5768968b33fd00f9c0f38111e6c80b3295420da8ec8e6a9682baf38bd0eca55bf4f
7
+ data.tar.gz: d4b07807003ce9bba203e1468fcf1f413275c8f52c4e0322ae1a541fb385b343e584f11d5c60ba6f2073c224caa875c54a701fd1e5cfda6b068eaf13c02e12bb
data/.gitignore CHANGED
@@ -10,3 +10,5 @@
10
10
 
11
11
  # rspec failure tracking
12
12
  .rspec_status
13
+
14
+ /user_naming*gem
data/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # UserNaming Changelog
2
+
3
+
4
+ ## [1.0.1] - September 30, 2017
5
+
6
+ No code changes, just fixing permissions in the gem build.
7
+
8
+
9
+ ## 1.0.0 - July 02, 2017
10
+
11
+ Initial release
12
+
13
+
14
+ [1.0.1]: https://github.com/tomichj/user_time_zones/compare/v1.0.0...v1.0.1
@@ -25,11 +25,11 @@ module UserNaming
25
25
  # The last name.
26
26
  #
27
27
  # A name with only one part will return an empty string.
28
- # A name with two or more parts will return everything after the first part.
28
+ # A name with two or more parts will return the last part.
29
29
  #
30
30
  # Examples:
31
31
  # 'Bilbo' will have a last name of ''.
32
- # 'Bilbo Foo Baggins' will have a last name of 'Foo Baggins'.
32
+ # 'Bilbo Foo Baggins' will have a last name of 'Baggins'.
33
33
  #
34
34
  # @return [String]
35
35
  def last_name
@@ -1,3 +1,3 @@
1
1
  module UserNaming
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: user_naming
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Tomich
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-02 00:00:00.000000000 Z
11
+ date: 2017-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -99,6 +99,7 @@ files:
99
99
  - ".gitignore"
100
100
  - ".rspec"
101
101
  - ".travis.yml"
102
+ - CHANGELOG.md
102
103
  - CODE_OF_CONDUCT.md
103
104
  - Gemfile
104
105
  - LICENSE.txt
@@ -134,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
135
  version: '0'
135
136
  requirements: []
136
137
  rubyforge_project:
137
- rubygems_version: 2.5.2
138
+ rubygems_version: 2.6.11
138
139
  signing_key:
139
140
  specification_version: 4
140
141
  summary: A rails gem providing naming methods for user models