full-name-splitter 0.1.1 → 0.1.2
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.
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/full-name-splitter.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{full-name-splitter}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Pavel Gorbokon", "contributors Michael S. Klishin and Trevor Creech"]
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
"features/support/env.rb",
|
|
26
26
|
"full-name-splitter.gemspec",
|
|
27
27
|
"lib/full-name-splitter.rb",
|
|
28
|
-
"spec/lib/
|
|
28
|
+
"spec/lib/full-name-splitter_spec.rb",
|
|
29
29
|
"spec/spec.opts",
|
|
30
30
|
"spec/spec_helper.rb"
|
|
31
31
|
]
|
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
s.rubygems_version = %q{1.3.7}
|
|
36
36
|
s.summary = %q{FullNameSplitter splits full name into first and last name considering name prefixes and initials}
|
|
37
37
|
s.test_files = [
|
|
38
|
-
"spec/lib/
|
|
38
|
+
"spec/lib/full-name-splitter_spec.rb",
|
|
39
39
|
"spec/spec_helper.rb",
|
|
40
40
|
"examples/generate_usernames.rb"
|
|
41
41
|
]
|
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../lib/
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../lib/full-name-splitter.rb')
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: full-name-splitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Pavel Gorbokon
|
|
@@ -38,7 +38,7 @@ files:
|
|
|
38
38
|
- features/support/env.rb
|
|
39
39
|
- full-name-splitter.gemspec
|
|
40
40
|
- lib/full-name-splitter.rb
|
|
41
|
-
- spec/lib/
|
|
41
|
+
- spec/lib/full-name-splitter_spec.rb
|
|
42
42
|
- spec/spec.opts
|
|
43
43
|
- spec/spec_helper.rb
|
|
44
44
|
- examples/generate_usernames.rb
|
|
@@ -77,6 +77,6 @@ signing_key:
|
|
|
77
77
|
specification_version: 3
|
|
78
78
|
summary: FullNameSplitter splits full name into first and last name considering name prefixes and initials
|
|
79
79
|
test_files:
|
|
80
|
-
- spec/lib/
|
|
80
|
+
- spec/lib/full-name-splitter_spec.rb
|
|
81
81
|
- spec/spec_helper.rb
|
|
82
82
|
- examples/generate_usernames.rb
|