osu_person 0.2.1 → 0.2.2

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: 979fd7219b1d1e6013e587ce1e77202913c900fb7b5f8fc5ed2c6e12ff302fa5
4
- data.tar.gz: f6e507bdd859a286719ab1efda380b437ac258bf38e1d9507c0bf863232865d9
3
+ metadata.gz: 8c143efb7281ed42bbafe77815b2a542521d5931250457242dcddb08219fffb2
4
+ data.tar.gz: 73ea31f244e9f79e66fabf843f90186e15735054e2d9a090100106a32c5c4a3d
5
5
  SHA512:
6
- metadata.gz: 582a7cf08647bfe8213b86219d7cf88c972e47b0743bc4bb21354633481d8946fcc3cbf05d7950e6ba17c3b3916c1f7ea9b017510a69b0518ba8001e68b09c0e
7
- data.tar.gz: e3827fcdabadae0592d4a4b5c83b1eecf3754c2ae8b3cc42e2033cbb0440e4159986df090584d63afb2e790debc4ca49f5c3f1fd1fad0d08a242c3914c81ebea
6
+ metadata.gz: 49507742323db27450c5f77b3720c1e267df56abe91aca3b3b97426e93ae7410128ceb420c0b84b602bf5961f315ec08b3699b870bfa588d0d22186a4ff7c134
7
+ data.tar.gz: 6f1e4ffda71540a89302b184a82735af8a2519e6f54a3e9ccbaee27e01a0a3d213f0b0fc7db0075b30f9a664fea63a1d92b8f810b803406d0f561ddf869facdd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- osu_person (0.2.1)
4
+ osu_person (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  module OSU
2
2
  module Person
3
- VERSION = '0.2.1'.freeze
3
+ VERSION = '0.2.2'.freeze
4
4
  end
5
5
  end
data/lib/osu_person.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'osu/email'
2
+ require 'osu/name_n'
3
+ require 'osu_person/version'
data/osu_person.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  lib = File.expand_path('lib', __dir__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
- Dir[File.join(Dir.pwd, 'lib', '**', '*.rb')].each { |f| require f }
4
+ require 'osu_person/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'osu_person'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: osu_person
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kurt Mueller
@@ -143,10 +143,10 @@ files:
143
143
  - Rakefile
144
144
  - bin/console
145
145
  - bin/setup
146
- - lib/osu.rb
147
146
  - lib/osu/email.rb
148
147
  - lib/osu/name_n.rb
149
- - lib/osu/person/version.rb
148
+ - lib/osu_person.rb
149
+ - lib/osu_person/version.rb
150
150
  - osu_person.gemspec
151
151
  homepage: https://code.osu.edu/asctech/osu_person
152
152
  licenses:
data/lib/osu.rb DELETED
@@ -1,7 +0,0 @@
1
- require 'osu/person/version'
2
-
3
- module OSU
4
- # Shell module used for namespacing.
5
- module Person
6
- end
7
- end