osu_person 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 55c98b37673df08d5247b9da14f3168fc5c68f1cec43830c1be52744256dcd1c
4
+ data.tar.gz: 863dbb3f877a9faff06edd9a5bd4d172822de92adbfd17bc6e4f28375b0cd3bb
5
+ SHA512:
6
+ metadata.gz: 885f7f9fe12e24ac1a147f3704c47374d4d4ac1fa5e921e85ecb5b87dd854d5e7ed435601ff6913327768f0a25b00bc5326561da8a340c8b0abfccc76d3c7a27
7
+ data.tar.gz: eecccd229857062b7e645ea67d6376387d3ed122867432a48f6ba15233801b9e78a0ca0b8500f4a83a25c7c57ffb6c22ed1efecb59f22e04f0b6a32bbf351041
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,56 @@
1
+ stages:
2
+ - build
3
+ - analysis
4
+ - security-scan-failure
5
+ - test
6
+
7
+ variables: &vars
8
+ GEM: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
9
+
10
+ osu_person:
11
+ stage: build
12
+ image: docker:latest
13
+ tags: [build]
14
+ except: [schedules]
15
+ before_script: []
16
+ script: docker build -t $GEM . && docker push $GEM
17
+ retry: 2
18
+ variables:
19
+ <<: *vars
20
+ GIT_STRATEGY: clone
21
+
22
+ .analysis: &analysis
23
+ stage: analysis
24
+ image: $GEM
25
+ tags: [test]
26
+
27
+ bundle-audit:
28
+ <<: *analysis
29
+ script: bundle exec bundle-audit check --update
30
+
31
+ rubocop:
32
+ <<: *analysis
33
+ except: [schedules]
34
+ script: bundle exec rubocop
35
+
36
+ rubycritic:
37
+ <<: *analysis
38
+ script: bundle exec rubycritic --no-browser -s 90
39
+
40
+ notify slack:
41
+ stage: security-scan-failure
42
+ image: code.osu.edu:5000/asctech/docker/ci/slack
43
+ tags: [docker]
44
+ only: [schedules]
45
+ when: on_failure
46
+ before_script: []
47
+ script: nightly-security-scan-failure
48
+ variables:
49
+ CHANNEL: asctech-developers
50
+ GIT_STRATEGY: none
51
+
52
+ rspec:
53
+ stage: test
54
+ image: $GEM
55
+ tags: [test]
56
+ script: bundle exec rspec
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,4 @@
1
+ AllCops:
2
+ Exclude:
3
+ - '*.gemspec'
4
+ - 'spec/**/*'
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.0
7
+ before_install: gem install bundler -v 1.16.5
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at mueller.128@osu.edu. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Dockerfile ADDED
@@ -0,0 +1,20 @@
1
+ FROM code.osu.edu:5000/asctech/docker/ruby:2.5
2
+
3
+ ENV GEM_DIR=/gem \
4
+ VERSION_DIR=lib/osu/person
5
+
6
+ RUN yum -y update && \
7
+ useradd --user-group deploy && \
8
+ mkdir -p ${GEM_DIR} && \
9
+ chown -R deploy:deploy ${GEM_DIR} /usr/local/bundle
10
+
11
+ USER deploy
12
+ WORKDIR ${GEM_DIR}
13
+ COPY --chown=deploy:deploy Gemfile* ${GEM_DIR}/
14
+ COPY --chown=deploy:deploy *.gemspec ${GEM_DIR}/
15
+ COPY --chown=deploy:deploy ${VERSION_DIR}/version.rb ${GEM_DIR}/${VERSION_DIR}/version.rb
16
+ RUN ls -al
17
+
18
+ RUN bundle install
19
+
20
+ COPY --chown=deploy:deploy . ${GEM_DIR}/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in osu_person.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,119 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ osu_person (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ addressable (2.5.2)
10
+ public_suffix (>= 2.0.2, < 4.0)
11
+ ast (2.4.0)
12
+ axiom-types (0.1.1)
13
+ descendants_tracker (~> 0.0.4)
14
+ ice_nine (~> 0.11.0)
15
+ thread_safe (~> 0.3, >= 0.3.1)
16
+ bundler-audit (0.6.0)
17
+ bundler (~> 1.2)
18
+ thor (~> 0.18)
19
+ codeclimate-engine-rb (0.4.1)
20
+ virtus (~> 1.0)
21
+ coercible (1.0.0)
22
+ descendants_tracker (~> 0.0.1)
23
+ descendants_tracker (0.0.4)
24
+ thread_safe (~> 0.3, >= 0.3.1)
25
+ diff-lcs (1.3)
26
+ docile (1.3.1)
27
+ equalizer (0.0.11)
28
+ erubis (2.7.0)
29
+ flay (2.12.0)
30
+ erubis (~> 2.7.0)
31
+ path_expander (~> 1.0)
32
+ ruby_parser (~> 3.0)
33
+ sexp_processor (~> 4.0)
34
+ flog (4.6.2)
35
+ path_expander (~> 1.0)
36
+ ruby_parser (~> 3.1, > 3.1.0)
37
+ sexp_processor (~> 4.8)
38
+ ice_nine (0.11.2)
39
+ jaro_winkler (1.5.1)
40
+ json (2.1.0)
41
+ launchy (2.4.3)
42
+ addressable (~> 2.3)
43
+ parallel (1.12.1)
44
+ parser (2.5.1.2)
45
+ ast (~> 2.4.0)
46
+ path_expander (1.0.3)
47
+ powerpack (0.1.2)
48
+ public_suffix (3.0.3)
49
+ rainbow (3.0.0)
50
+ rake (12.3.1)
51
+ reek (4.8.2)
52
+ codeclimate-engine-rb (~> 0.4.0)
53
+ parser (>= 2.5.0.0, < 2.6)
54
+ rainbow (>= 2.0, < 4.0)
55
+ rspec (3.8.0)
56
+ rspec-core (~> 3.8.0)
57
+ rspec-expectations (~> 3.8.0)
58
+ rspec-mocks (~> 3.8.0)
59
+ rspec-core (3.8.0)
60
+ rspec-support (~> 3.8.0)
61
+ rspec-expectations (3.8.1)
62
+ diff-lcs (>= 1.2.0, < 2.0)
63
+ rspec-support (~> 3.8.0)
64
+ rspec-mocks (3.8.0)
65
+ diff-lcs (>= 1.2.0, < 2.0)
66
+ rspec-support (~> 3.8.0)
67
+ rspec-support (3.8.0)
68
+ rubocop (0.58.1)
69
+ jaro_winkler (~> 1.5.1)
70
+ parallel (~> 1.10)
71
+ parser (>= 2.5, != 2.5.1.1)
72
+ powerpack (~> 0.1)
73
+ rainbow (>= 2.2.2, < 4.0)
74
+ ruby-progressbar (~> 1.7)
75
+ unicode-display_width (~> 1.0, >= 1.0.1)
76
+ ruby-progressbar (1.9.0)
77
+ ruby_parser (3.11.0)
78
+ sexp_processor (~> 4.9)
79
+ rubycritic (3.5.2)
80
+ flay (~> 2.8)
81
+ flog (~> 4.4)
82
+ launchy (= 2.4.3)
83
+ parser (~> 2.5.0)
84
+ rainbow (~> 3.0)
85
+ reek (~> 4.4)
86
+ ruby_parser (~> 3.8)
87
+ tty-which (~> 0.3.0)
88
+ virtus (~> 1.0)
89
+ sexp_processor (4.11.0)
90
+ simplecov (0.16.1)
91
+ docile (~> 1.1)
92
+ json (>= 1.8, < 3)
93
+ simplecov-html (~> 0.10.0)
94
+ simplecov-html (0.10.2)
95
+ thor (0.20.0)
96
+ thread_safe (0.3.6)
97
+ tty-which (0.3.0)
98
+ unicode-display_width (1.4.0)
99
+ virtus (1.0.5)
100
+ axiom-types (~> 0.1)
101
+ coercible (~> 1.0)
102
+ descendants_tracker (~> 0.0, >= 0.0.3)
103
+ equalizer (~> 0.0, >= 0.0.9)
104
+
105
+ PLATFORMS
106
+ ruby
107
+
108
+ DEPENDENCIES
109
+ bundler
110
+ bundler-audit
111
+ osu_person!
112
+ rake
113
+ rspec
114
+ rubocop
115
+ rubycritic
116
+ simplecov
117
+
118
+ BUNDLED WITH
119
+ 1.16.5
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Kurt Mueller
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # OSU Person
2
+
3
+ This gem contains logic for validating an osu person's email and name.#. It also
4
+ can strip a name.# from an osu email address.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'osu_person'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install osu_person
21
+
22
+ ## Usage
23
+
24
+ ```ruby
25
+ OSU::Email.valid?("buckeye.614@osu.edu") # => true
26
+ OSU::Email.valid?("buckeye@osu.edu") # => false
27
+
28
+ OSU::Email.new("buckeye.614@osu.edu").name_n # => 'buckeye.614'
29
+ OSU::Email.new("buckeye@osu.edu") # => # => raises InvalidEmailError
30
+
31
+ OSU::NameN.valid?("buckeye.614") # => true
32
+ OSU::NameN.valid?("buckeye-.614") # => false
33
+ ```
34
+
35
+ ## Development
36
+
37
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
38
+
39
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
40
+
41
+ ## Contributing
42
+
43
+ Bug reports and pull requests are welcome on code.osu.edu at https://code.osu.edu/asctech/osu_person. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
44
+
45
+ ## License
46
+
47
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
49
+ ## Code of Conduct
50
+
51
+ Everyone interacting in the OsuPerson project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://code.osu.edu/asctech/osu_person/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'osu_person'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/osu/email.rb ADDED
@@ -0,0 +1,30 @@
1
+ module OSU
2
+ # Validates an osu email. Can also strip a name.# from an osu email.
3
+ class Email
4
+ VALID_EMAIL =
5
+ /\A(?<name_n>[a-z]([a-z-]*[a-z])?\.[1-9]\d*)@([a-z]+\.|)osu.edu\z/i
6
+
7
+ def self.valid?(email)
8
+ case email
9
+ when VALID_EMAIL then true
10
+ else false
11
+ end
12
+ end
13
+
14
+ attr_reader :email
15
+
16
+ def initialize(email)
17
+ unless self.class.valid?(email)
18
+ raise InvalidEmailError, 'Email must resemble name.#@osu.edu'
19
+ end
20
+
21
+ @email = email.downcase
22
+ end
23
+
24
+ def name_n
25
+ VALID_EMAIL.match(email)['name_n']
26
+ end
27
+
28
+ class InvalidEmailError < ArgumentError; end
29
+ end
30
+ end
data/lib/osu/name_n.rb ADDED
@@ -0,0 +1,13 @@
1
+ module OSU
2
+ # Validates a name.#
3
+ class NameN
4
+ VALID_NAME_N = /\A(?<name_n>[a-z]([a-z-]*[a-z])?\.[1-9]\d*)\z/i
5
+
6
+ def self.valid?(name_n)
7
+ case name_n
8
+ when VALID_NAME_N then true
9
+ else false
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module OSU
2
+ module Person
3
+ VERSION = '0.1.0'.freeze
4
+ end
5
+ end
data/lib/osu.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'osu/person/version'
2
+
3
+ module OSU
4
+ # Shell module used for namespacing.
5
+ module Person
6
+ end
7
+ end
@@ -0,0 +1,40 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'osu/person/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'osu_person'
7
+ spec.version = OSU::Person::VERSION
8
+ spec.authors = ['Kurt Mueller']
9
+ spec.email = ['mueller.128@osu.edu']
10
+
11
+ spec.summary = "Validate an ohio state person's email, name.#, & emplid."
12
+ spec.description = "Validate an ohio state person's email, name.#, & emplid."
13
+ spec.homepage = 'https://code.osu.edu/asctech/osu_person'
14
+ spec.license = 'MIT'
15
+
16
+ if spec.respond_to?(:metadata)
17
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
+ else
19
+ raise 'RubyGems 2.0 or newer is required to protect against ' \
20
+ 'public gem pushes.'
21
+ end
22
+
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0")
25
+ .reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ end
27
+
28
+ spec.bindir = 'exe'
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ['lib']
31
+
32
+ spec.add_development_dependency 'bundler'
33
+ spec.add_development_dependency 'rake'
34
+
35
+ spec.add_development_dependency 'bundler-audit'
36
+ spec.add_development_dependency 'rspec'
37
+ spec.add_development_dependency 'rubocop'
38
+ spec.add_development_dependency 'rubycritic'
39
+ spec.add_development_dependency 'simplecov'
40
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: osu_person
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kurt Mueller
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-11-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler-audit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubycritic
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Validate an ohio state person's email, name.#, & emplid.
112
+ email:
113
+ - mueller.128@osu.edu
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - ".gitlab-ci.yml"
120
+ - ".rspec"
121
+ - ".rubocop.yml"
122
+ - ".travis.yml"
123
+ - CODE_OF_CONDUCT.md
124
+ - Dockerfile
125
+ - Gemfile
126
+ - Gemfile.lock
127
+ - LICENSE.txt
128
+ - README.md
129
+ - Rakefile
130
+ - bin/console
131
+ - bin/setup
132
+ - lib/osu.rb
133
+ - lib/osu/email.rb
134
+ - lib/osu/name_n.rb
135
+ - lib/osu/person/version.rb
136
+ - osu_person.gemspec
137
+ homepage: https://code.osu.edu/asctech/osu_person
138
+ licenses:
139
+ - MIT
140
+ metadata:
141
+ allowed_push_host: https://rubygems.org
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.7.3
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Validate an ohio state person's email, name.#, & emplid.
162
+ test_files: []