consistent_company 0.0.6 → 0.0.9
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 +7 -0
- data/ext/consistent_company/consistent_company.c +5 -3
- data/lib/consistent_company/version.rb +1 -1
- metadata +21 -74
- data/.document +0 -5
- data/Gemfile +0 -15
- data/Gemfile.lock +0 -36
- data/Rakefile +0 -48
- data/VERSION +0 -1
- data/consistent_company.gemspec +0 -70
- data/lib/consistent_company/consistent_company.bundle +0 -0
- data/test/helper.rb +0 -19
- data/test/test_consistent_company.rb +0 -79
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c4f76fa34195eef85c5de717918d2785307160f420e12c5a7d03a14cdf3e82c5
|
4
|
+
data.tar.gz: de12ba9425b5eaadda8a1bdcdb07031085afbc7f3e85a0c202b78833796607e2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d668de77ea9044e7fae29732d1180f2c6a0b0f328f7ae8cade72182f7efea50c087bf33fcb53309352b6a93d00043215872bd8641efc316855444055b2b124de
|
7
|
+
data.tar.gz: c2778f1ebb6d3904bb1fc4c79155f67d0b6947b121ded9c06c9b2981527d43d1883747d1319584856c4dd51defa3e3222002cacc3837ea411e71a8eeea3f9616
|
@@ -27,7 +27,7 @@ static VALUE rb_CompanyNamer(VALUE self)
|
|
27
27
|
// calc size of work strings
|
28
28
|
// while processing we turn & = AND, + = PLUS
|
29
29
|
// and we add space at front and back
|
30
|
-
while (s = strpbrk(s, "&+"))
|
30
|
+
while ((s = strpbrk(s, "&+")))
|
31
31
|
{
|
32
32
|
workLen +=3; // worst case we add 3 chars
|
33
33
|
s++;
|
@@ -352,7 +352,9 @@ int IsCompanyWord(char * inWord)
|
|
352
352
|
strcmp(inWord, "PRODUCTIONS") == 0 ||
|
353
353
|
strcmp(inWord, "PRODUCTS") == 0 ||
|
354
354
|
strcmp(inWord, "TR") == 0 ||
|
355
|
-
strcmp(inWord, "TRADE") == 0
|
355
|
+
strcmp(inWord, "TRADE") == 0 ||
|
356
|
+
strcmp(inWord, "PBC") == 0 ||
|
357
|
+
strcmp(inWord, "LP") == 0)
|
356
358
|
return 1;
|
357
359
|
else
|
358
360
|
return 0;
|
@@ -391,7 +393,7 @@ char * trimwhitespace(char *str)
|
|
391
393
|
char * str_replace(char *orig, const char *rep, const char *with)
|
392
394
|
{
|
393
395
|
char * s = orig;
|
394
|
-
while (s=strstr(s, rep))
|
396
|
+
while ((s=strstr(s, rep)))
|
395
397
|
{
|
396
398
|
memmove(s, with, strlen(with));
|
397
399
|
memmove(s+strlen(with), s+strlen(rep), strlen(s+strlen(rep))+1);
|
metadata
CHANGED
@@ -1,82 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: consistent_company
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.9
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Doug Cleven
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: shoulda
|
16
|
-
requirement: &70324089634640 !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '0'
|
22
|
-
type: :development
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: *70324089634640
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: bundler
|
27
|
-
requirement: &70324089634020 !ruby/object:Gem::Requirement
|
28
|
-
none: false
|
29
|
-
requirements:
|
30
|
-
- - ~>
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 1.0.18
|
33
|
-
type: :development
|
34
|
-
prerelease: false
|
35
|
-
version_requirements: *70324089634020
|
36
13
|
- !ruby/object:Gem::Dependency
|
37
14
|
name: jeweler
|
38
|
-
requirement:
|
39
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
40
16
|
requirements:
|
41
|
-
- -
|
17
|
+
- - ">="
|
42
18
|
- !ruby/object:Gem::Version
|
43
19
|
version: 1.6.4
|
44
20
|
type: :development
|
45
21
|
prerelease: false
|
46
|
-
version_requirements:
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: rcov
|
49
|
-
requirement: &70324089632920 !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
23
|
requirements:
|
52
|
-
- -
|
24
|
+
- - ">="
|
53
25
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
55
|
-
type: :development
|
56
|
-
prerelease: false
|
57
|
-
version_requirements: *70324089632920
|
26
|
+
version: 1.6.4
|
58
27
|
- !ruby/object:Gem::Dependency
|
59
|
-
name:
|
60
|
-
requirement:
|
61
|
-
none: false
|
28
|
+
name: rake-compiler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
62
30
|
requirements:
|
63
|
-
- -
|
31
|
+
- - ">="
|
64
32
|
- !ruby/object:Gem::Version
|
65
|
-
version:
|
33
|
+
version: 0.7.6
|
66
34
|
type: :development
|
67
35
|
prerelease: false
|
68
|
-
version_requirements:
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rake-compiler
|
71
|
-
requirement: &70324089631820 !ruby/object:Gem::Requirement
|
72
|
-
none: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
37
|
requirements:
|
74
|
-
- -
|
38
|
+
- - ">="
|
75
39
|
- !ruby/object:Gem::Version
|
76
40
|
version: 0.7.6
|
77
|
-
type: :development
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: *70324089631820
|
80
41
|
description: Ruby C Extension to normalize a company name. Useful when company names
|
81
42
|
come from various sources.
|
82
43
|
email: dcleven@marketron.com
|
@@ -87,47 +48,33 @@ extra_rdoc_files:
|
|
87
48
|
- LICENSE.txt
|
88
49
|
- README.md
|
89
50
|
files:
|
90
|
-
- .document
|
91
|
-
- Gemfile
|
92
|
-
- Gemfile.lock
|
93
51
|
- LICENSE.txt
|
94
52
|
- README.md
|
95
|
-
- Rakefile
|
96
|
-
- VERSION
|
97
|
-
- consistent_company.gemspec
|
98
53
|
- ext/consistent_company/consistent_company.c
|
99
54
|
- ext/consistent_company/extconf.rb
|
100
55
|
- lib/consistent_company.rb
|
101
|
-
- lib/consistent_company/consistent_company.bundle
|
102
56
|
- lib/consistent_company/version.rb
|
103
|
-
- test/helper.rb
|
104
|
-
- test/test_consistent_company.rb
|
105
57
|
homepage: http://github.com/dcleven/consistent_company
|
106
58
|
licenses:
|
107
59
|
- MIT
|
108
|
-
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
109
62
|
rdoc_options: []
|
110
63
|
require_paths:
|
111
64
|
- lib
|
112
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
66
|
requirements:
|
115
|
-
- -
|
67
|
+
- - ">="
|
116
68
|
- !ruby/object:Gem::Version
|
117
69
|
version: '0'
|
118
|
-
segments:
|
119
|
-
- 0
|
120
|
-
hash: 165319978954417084
|
121
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
-
none: false
|
123
71
|
requirements:
|
124
|
-
- -
|
72
|
+
- - ">="
|
125
73
|
- !ruby/object:Gem::Version
|
126
74
|
version: '0'
|
127
75
|
requirements: []
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
specification_version: 3
|
76
|
+
rubygems_version: 3.1.4
|
77
|
+
signing_key:
|
78
|
+
specification_version: 4
|
132
79
|
summary: Normalize a company name for consistent matching
|
133
80
|
test_files: []
|
data/.document
DELETED
data/Gemfile
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
source "http://rubygems.org"
|
2
|
-
# Add dependencies required to use your gem here.
|
3
|
-
# Example:
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
5
|
-
|
6
|
-
# Add dependencies to develop your gem here.
|
7
|
-
# Include everything needed to run rake, tests, features, etc.
|
8
|
-
group :development do
|
9
|
-
gem "shoulda", ">= 0"
|
10
|
-
gem "bundler", "~> 1.0.18"
|
11
|
-
gem "jeweler", "~> 1.6.4"
|
12
|
-
gem "rcov", ">= 0"
|
13
|
-
gem 'pry'
|
14
|
-
gem "rake-compiler", "~> 0.7.6"
|
15
|
-
end
|
data/Gemfile.lock
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
coderay (0.9.8)
|
5
|
-
git (1.2.5)
|
6
|
-
jeweler (1.6.4)
|
7
|
-
bundler (~> 1.0)
|
8
|
-
git (>= 1.2.5)
|
9
|
-
rake
|
10
|
-
method_source (0.6.5)
|
11
|
-
ruby_parser (>= 2.0.5)
|
12
|
-
pry (0.9.5)
|
13
|
-
coderay (>= 0.9.8)
|
14
|
-
method_source (>= 0.6.5)
|
15
|
-
ruby_parser (>= 2.0.5)
|
16
|
-
slop (~> 2.1.0)
|
17
|
-
rake (0.9.2)
|
18
|
-
rake-compiler (0.7.6)
|
19
|
-
rake
|
20
|
-
rcov (0.9.10)
|
21
|
-
ruby_parser (2.3.0)
|
22
|
-
sexp_processor (~> 3.0)
|
23
|
-
sexp_processor (3.0.6)
|
24
|
-
shoulda (2.11.3)
|
25
|
-
slop (2.1.0)
|
26
|
-
|
27
|
-
PLATFORMS
|
28
|
-
ruby
|
29
|
-
|
30
|
-
DEPENDENCIES
|
31
|
-
bundler (~> 1.0.18)
|
32
|
-
jeweler (~> 1.6.4)
|
33
|
-
pry
|
34
|
-
rake-compiler (~> 0.7.6)
|
35
|
-
rcov
|
36
|
-
shoulda
|
data/Rakefile
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
require 'rubygems'
|
4
|
-
require 'bundler'
|
5
|
-
|
6
|
-
begin
|
7
|
-
Bundler.setup(:default, :development)
|
8
|
-
rescue Bundler::BundlerError => e
|
9
|
-
$stderr.puts e.message
|
10
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
11
|
-
exit e.status_code
|
12
|
-
end
|
13
|
-
require 'rake'
|
14
|
-
|
15
|
-
require "rake/extensiontask"
|
16
|
-
Rake::ExtensionTask.new("consistent_company") do |extension|
|
17
|
-
extension.lib_dir = "lib/consistent_company"
|
18
|
-
end
|
19
|
-
|
20
|
-
task :build => [:clean, :compile]
|
21
|
-
|
22
|
-
require 'jeweler'
|
23
|
-
require './lib/consistent_company/version.rb'
|
24
|
-
Jeweler::Tasks.new do |gem|
|
25
|
-
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
26
|
-
gem.name = "consistent_company"
|
27
|
-
gem.homepage = "http://github.com/dcleven/consistent_company"
|
28
|
-
gem.license = "MIT"
|
29
|
-
gem.summary = %Q{Normalize a company name for consistent matching}
|
30
|
-
gem.description = %Q{Ruby C Extension to normalize a company name. Useful when company names come from various sources.}
|
31
|
-
gem.email = "dcleven@marketron.com"
|
32
|
-
gem.authors = ["Doug Cleven"]
|
33
|
-
gem.version = ConsistentCompany::Version::STRING
|
34
|
-
gem.files.include('lib/consistent_company/*') # add native stuff
|
35
|
-
# dependencies defined in Gemfile
|
36
|
-
end
|
37
|
-
Jeweler::RubygemsDotOrgTasks.new
|
38
|
-
|
39
|
-
task :test => [:build]
|
40
|
-
|
41
|
-
require 'rake/testtask'
|
42
|
-
Rake::TestTask.new(:test) do |test|
|
43
|
-
test.libs << 'lib' << 'test'
|
44
|
-
test.pattern = 'test/**/test_*.rb'
|
45
|
-
test.verbose = true
|
46
|
-
end
|
47
|
-
|
48
|
-
task :default => :test
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.0.6
|
data/consistent_company.gemspec
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{consistent_company}
|
8
|
-
s.version = "0.0.6"
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [%q{Doug Cleven}]
|
12
|
-
s.date = %q{2012-09-12}
|
13
|
-
s.description = %q{Ruby C Extension to normalize a company name. Useful when company names come from various sources.}
|
14
|
-
s.email = %q{dcleven@marketron.com}
|
15
|
-
s.extensions = [%q{ext/consistent_company/extconf.rb}]
|
16
|
-
s.extra_rdoc_files = [
|
17
|
-
"LICENSE.txt",
|
18
|
-
"README.md"
|
19
|
-
]
|
20
|
-
s.files = [
|
21
|
-
".document",
|
22
|
-
"Gemfile",
|
23
|
-
"Gemfile.lock",
|
24
|
-
"LICENSE.txt",
|
25
|
-
"README.md",
|
26
|
-
"Rakefile",
|
27
|
-
"VERSION",
|
28
|
-
"consistent_company.gemspec",
|
29
|
-
"ext/consistent_company/consistent_company.c",
|
30
|
-
"ext/consistent_company/extconf.rb",
|
31
|
-
"lib/consistent_company.rb",
|
32
|
-
"lib/consistent_company/consistent_company.bundle",
|
33
|
-
"lib/consistent_company/version.rb",
|
34
|
-
"test/helper.rb",
|
35
|
-
"test/test_consistent_company.rb"
|
36
|
-
]
|
37
|
-
s.homepage = %q{http://github.com/dcleven/consistent_company}
|
38
|
-
s.licenses = [%q{MIT}]
|
39
|
-
s.require_paths = [%q{lib}]
|
40
|
-
s.rubygems_version = %q{1.8.6}
|
41
|
-
s.summary = %q{Normalize a company name for consistent matching}
|
42
|
-
|
43
|
-
if s.respond_to? :specification_version then
|
44
|
-
s.specification_version = 3
|
45
|
-
|
46
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
47
|
-
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
48
|
-
s.add_development_dependency(%q<bundler>, ["~> 1.0.18"])
|
49
|
-
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
50
|
-
s.add_development_dependency(%q<rcov>, [">= 0"])
|
51
|
-
s.add_development_dependency(%q<pry>, [">= 0"])
|
52
|
-
s.add_development_dependency(%q<rake-compiler>, ["~> 0.7.6"])
|
53
|
-
else
|
54
|
-
s.add_dependency(%q<shoulda>, [">= 0"])
|
55
|
-
s.add_dependency(%q<bundler>, ["~> 1.0.18"])
|
56
|
-
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
57
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
58
|
-
s.add_dependency(%q<pry>, [">= 0"])
|
59
|
-
s.add_dependency(%q<rake-compiler>, ["~> 0.7.6"])
|
60
|
-
end
|
61
|
-
else
|
62
|
-
s.add_dependency(%q<shoulda>, [">= 0"])
|
63
|
-
s.add_dependency(%q<bundler>, ["~> 1.0.18"])
|
64
|
-
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
65
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
66
|
-
s.add_dependency(%q<pry>, [">= 0"])
|
67
|
-
s.add_dependency(%q<rake-compiler>, ["~> 0.7.6"])
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
Binary file
|
data/test/helper.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'bundler'
|
3
|
-
begin
|
4
|
-
Bundler.setup(:default, :development)
|
5
|
-
rescue Bundler::BundlerError => e
|
6
|
-
$stderr.puts e.message
|
7
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
8
|
-
exit e.status_code
|
9
|
-
end
|
10
|
-
require 'test/unit'
|
11
|
-
#require 'shoulda'
|
12
|
-
|
13
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib/consistent_company'))
|
14
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'ext/consistent_company'))
|
15
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
16
|
-
|
17
|
-
|
18
|
-
class Test::Unit::TestCase
|
19
|
-
end
|
@@ -1,79 +0,0 @@
|
|
1
|
-
require 'helper'
|
2
|
-
require 'consistent_company'
|
3
|
-
require 'pry'
|
4
|
-
|
5
|
-
class TestConsistentCompany < Test::Unit::TestCase
|
6
|
-
|
7
|
-
def test_company_namer
|
8
|
-
# don't change the calling string
|
9
|
-
str = ' my test '
|
10
|
-
company = str.company_namer
|
11
|
-
assert_equal(' my test ', str)
|
12
|
-
# empty name
|
13
|
-
assert_equal("", "".company_namer)
|
14
|
-
assert_equal("", " ".company_namer)
|
15
|
-
assert_equal("", "___".company_namer)
|
16
|
-
# remove leading and trailing space
|
17
|
-
assert_equal('TEST', " test ".company_namer)
|
18
|
-
# remove embedded space
|
19
|
-
assert_equal('TEST', " te st ".company_namer)
|
20
|
-
# remove Company
|
21
|
-
assert_equal("MYTEST", "My Test Company".company_namer)
|
22
|
-
assert_equal("MYCOMPANYTEST", ("MY COMPANY TEST").company_namer)
|
23
|
-
assert_equal("MYTEST", ("MY TEST COMPANY COMP").company_namer)
|
24
|
-
# remove leading The
|
25
|
-
assert_equal("AAA", "The AAA Company".company_namer)
|
26
|
-
# remove punctuation
|
27
|
-
assert_equal("TESTERS", %q{The, ?%^* tester's company!}.company_namer)
|
28
|
-
# a very long name
|
29
|
-
assert_equal("A"*1000+"NAMEISHERE", (" A"*1000 + 'NAME IS HERE ').company_namer)
|
30
|
-
# parenthesis matching
|
31
|
-
assert_equal("BBEE", ("BB(xx)EE").company_namer)
|
32
|
-
assert_equal("BE", ("B(xx)E").company_namer)
|
33
|
-
assert_equal("XX", ("(xx)").company_namer)
|
34
|
-
assert_equal("BB", ("BB(xx").company_namer)
|
35
|
-
assert_equal("XX", ("(xx").company_namer)
|
36
|
-
assert_equal("BBMMEE", ("BB(xx)MM(xx)EE").company_namer)
|
37
|
-
assert_equal("BBEE", ("BB(xx(xx)xx)EE").company_namer)
|
38
|
-
assert_equal("BBMM", ("BB(xx)MM(xx").company_namer)
|
39
|
-
assert_equal("BB", ("BB(xx(xx)xx").company_namer)
|
40
|
-
assert_equal("BB", ("BB(xx(xx").company_namer)
|
41
|
-
|
42
|
-
# handle and &
|
43
|
-
assert_equal("PRE&POST", ("pre and post").company_namer)
|
44
|
-
assert_equal("PRE&POST", ("pre & post").company_namer)
|
45
|
-
assert_equal("PRE&POST", ("&pre and post&").company_namer)
|
46
|
-
assert_equal("PRE&POST", ("& pre and post &").company_namer)
|
47
|
-
assert_equal("ANDPRE&POSTAND", ("and pre and post and").company_namer)
|
48
|
-
|
49
|
-
# leading A
|
50
|
-
assert_equal("ABTEST", ("A B TEST").company_namer)
|
51
|
-
assert_equal("BTEST", ("A BTEST").company_namer)
|
52
|
-
assert_equal("APLUSTEST", ("A PLUS TEST").company_namer)
|
53
|
-
assert_equal("APLUSTEST", ("A + TEST").company_namer)
|
54
|
-
assert_equal("APLUSTEST", ("A+ TEST").company_namer)
|
55
|
-
|
56
|
-
# common name shortening
|
57
|
-
assert_equal("TESTCTRCTRCTR", ("Test Center Center Center").company_namer)
|
58
|
-
|
59
|
-
# #singularize
|
60
|
-
# assert_equal("TESTNAMEHERE", (" Test Names here").company_namer)
|
61
|
-
# assert_equal("TESTBATTERY", ("Test Batteries").company_namer)
|
62
|
-
|
63
|
-
assert_equal("My Test Advertising Co".company_namer, "MY TEST ADV COMPANY".company_namer)
|
64
|
-
end
|
65
|
-
|
66
|
-
|
67
|
-
# def test_benchmark
|
68
|
-
# looptimes = 1000000
|
69
|
-
#
|
70
|
-
# puts "[BaseString]"
|
71
|
-
# puts Benchmark::CAPTION
|
72
|
-
# puts Benchmark.measure {
|
73
|
-
# base = BaseString.new
|
74
|
-
# looptimes.times { |n|
|
75
|
-
# base.make " My Test Company Name (A)"
|
76
|
-
# }
|
77
|
-
# }
|
78
|
-
# end
|
79
|
-
end
|