dubliner 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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/dubliner +13 -0
- data/dubliner.gemspec +32 -0
- data/lib/dubliner.rb +49 -0
- data/lib/dubliner/customer.rb +38 -0
- data/lib/dubliner/helper.rb +50 -0
- metadata +119 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 11c2f9050d1d9671f84643a3978db7c718fa2973
|
|
4
|
+
data.tar.gz: c4ea801122a7de71ca8beabbbb9d0b5f8589d1a0
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7de59f02a2a21e26755615a5247eea8622ebe25bd999116e1303434e4814b0ccc6f079702e86e9741b8258bcf2374c63aa544124e54dd0ec0c7fbce8f9ecbc56
|
|
7
|
+
data.tar.gz: 971a4f173d729322a684b1f01701a2522f81031a1006df4f5178b9915a163d74f764a523ddddb2b2704b2b657508c6b36b9999dc3c50a5448de2384777f0f582
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Contributor Code of Conduct
|
|
2
|
+
|
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
|
7
|
+
|
|
8
|
+
We are committed to making participation in this project a harassment-free
|
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
|
12
|
+
|
|
13
|
+
Examples of unacceptable behavior by participants include:
|
|
14
|
+
|
|
15
|
+
* The use of sexualized language or imagery
|
|
16
|
+
* Personal attacks
|
|
17
|
+
* Trolling or insulting/derogatory comments
|
|
18
|
+
* Public or private harassment
|
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
|
20
|
+
addresses, without explicit permission
|
|
21
|
+
* Other unethical or unprofessional conduct
|
|
22
|
+
|
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
27
|
+
threatening, offensive, or harmful.
|
|
28
|
+
|
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
|
32
|
+
Conduct may be permanently removed from the project team.
|
|
33
|
+
|
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
|
35
|
+
when an individual is representing the project or its community.
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
38
|
+
reported by contacting a project maintainer at chinmayad@yahoo-inc.com. All
|
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
|
42
|
+
incident.
|
|
43
|
+
|
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
45
|
+
version 1.3.0, available at
|
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
|
47
|
+
|
|
48
|
+
[homepage]: http://contributor-covenant.org
|
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 Chinmaya Dattathri
|
|
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,41 @@
|
|
|
1
|
+
# Dubliner
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dubliner`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'dubliner'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install dubliner
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
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.
|
|
30
|
+
|
|
31
|
+
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).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/dchinmaya/dubliner. 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.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
+
|
data/Rakefile
ADDED
data/bin/dubliner
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require 'dubliner'
|
|
4
|
+
|
|
5
|
+
USAGE="*****************USAGE******************\ndubliner <path-to-file-containing-customer-info>"
|
|
6
|
+
|
|
7
|
+
if ARGV.size != 1
|
|
8
|
+
puts USAGE
|
|
9
|
+
exit 1
|
|
10
|
+
end
|
|
11
|
+
dubliner = Dubliner.new(53.3381985, -6.2592576)
|
|
12
|
+
dubliner.getInvitees(ARGV[0])
|
|
13
|
+
|
data/dubliner.gemspec
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'dubliner'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "dubliner"
|
|
8
|
+
spec.version = Dubliner::VERSION
|
|
9
|
+
spec.authors = ["Chinmaya Dattathri"]
|
|
10
|
+
spec.email = ["d.chinmaya@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Find cool folks for your party who don't end up crashing at your place.}
|
|
13
|
+
spec.description = %q{Find cool folks for your party who don't end up crashing at your place.}
|
|
14
|
+
spec.homepage = "https://github.com/dchinmaya/dubliner"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
19
|
+
if not spec.respond_to?(:metadata)
|
|
20
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
24
|
+
spec.bindir = "bin"
|
|
25
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
26
|
+
spec.require_paths = ["lib"]
|
|
27
|
+
|
|
28
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
|
29
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
30
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
31
|
+
spec.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
|
|
32
|
+
end
|
data/lib/dubliner.rb
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
require_relative 'dubliner/helper'
|
|
2
|
+
|
|
3
|
+
class Dubliner
|
|
4
|
+
include Helper
|
|
5
|
+
def initialize(latitude, longitude)
|
|
6
|
+
self.latitude = latitude
|
|
7
|
+
self.longitude = longitude
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def latitude=(l)
|
|
11
|
+
raise ArgumentError.new("latitude #{l} is invalid") unless l
|
|
12
|
+
@latitude = (l.to_f * Math::PI) / 180
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def longitude=(l)
|
|
16
|
+
raise ArgumentError.new("longitude #{l} is invalid") unless l
|
|
17
|
+
@longitude = (l.to_f * Math::PI) / 180
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def getInvitees(filename)
|
|
21
|
+
file = fileRead(filename)
|
|
22
|
+
customers = jsonParse(file)
|
|
23
|
+
invitees = []
|
|
24
|
+
longestName = 0
|
|
25
|
+
customers.each do |c|
|
|
26
|
+
distance = distanceCalculator(c.latitude, c.longitude, @latitude, @longitude)
|
|
27
|
+
if distance < 100.0
|
|
28
|
+
c.distance = distance
|
|
29
|
+
invitees.push(c)
|
|
30
|
+
longestName = c.name.length unless longestName >=c.name.length
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
invitees.sort_by! {|i| i.user_id}
|
|
34
|
+
printInvitees(invitees, longestName)
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def printInvitees(invitees, width)
|
|
38
|
+
printf "count %-#{width}s %s %s", 'invitees', 'user_id', 'distance(km)'
|
|
39
|
+
puts ''
|
|
40
|
+
puts '-------------------------------------------------------------------------'
|
|
41
|
+
counter = 1
|
|
42
|
+
invitees.each do |i|
|
|
43
|
+
printf "%3d %-#{width}s %3d %-3.2f\n", counter, i.name, i.user_id, i.distance
|
|
44
|
+
counter += 1
|
|
45
|
+
end
|
|
46
|
+
puts '-------------------------------------------------------------------------'
|
|
47
|
+
end
|
|
48
|
+
VERSION = '0.1.0'
|
|
49
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
class Customer
|
|
2
|
+
def initialize(user_id, name, latitude, longitude)
|
|
3
|
+
self.user_id = user_id
|
|
4
|
+
self.name = name
|
|
5
|
+
self.latitude = latitude
|
|
6
|
+
self.longitude = longitude
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def user_id=(u)
|
|
10
|
+
raise "User id #{u} not an integer" unless u
|
|
11
|
+
@user_id = u.to_i
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def name=(n)
|
|
15
|
+
raise "Name #{n} is not a valid name" unless n
|
|
16
|
+
@name = n
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def latitude=(l)
|
|
20
|
+
raise "latitude #{l} is invalid" unless (l && ((l.to_f.to_s == l) || (l.to_i.to_s == l)))
|
|
21
|
+
@latitude = (l.to_f * Math::PI) / 180
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def longitude=(l)
|
|
25
|
+
raise "longitude #{l} is invalid" unless (l && ((l.to_f.to_s == l) || (l.to_i.to_s == l)))
|
|
26
|
+
@longitude = (l.to_f * Math::PI) / 180
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def distance=(d)
|
|
30
|
+
@distance = d
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def distance
|
|
34
|
+
@distance
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
attr_reader :user_id, :latitude, :longitude, :name
|
|
38
|
+
end
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
require_relative 'customer'
|
|
3
|
+
|
|
4
|
+
module Helper
|
|
5
|
+
|
|
6
|
+
# input : filename
|
|
7
|
+
# output : a valid file handle for the filename
|
|
8
|
+
def fileRead(filename)
|
|
9
|
+
raise ArgumentError.new("File #{filename} does not exist") unless File.exist?(filename)
|
|
10
|
+
raise ArgumentError.new("File #{filename} is not readable. Verify access permissions of the file") unless File
|
|
11
|
+
.readable? (filename)
|
|
12
|
+
File.new(filename)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
# input : valid file handle
|
|
16
|
+
# output : array of customer objects
|
|
17
|
+
def jsonParse(f)
|
|
18
|
+
customers = []
|
|
19
|
+
malformed_line = ''
|
|
20
|
+
begin
|
|
21
|
+
f.each_line do |line| # read line by line to avoid exhausting memory with large inputs
|
|
22
|
+
malformed_line = line
|
|
23
|
+
data = JSON.parse(line)
|
|
24
|
+
c = Customer.new(data['user_id'], data['name'], data['latitude'], data['longitude'])
|
|
25
|
+
customers.push(c)
|
|
26
|
+
end
|
|
27
|
+
rescue JSON::ParserError
|
|
28
|
+
raise "Malformed JSON in file #{File.basename(f.path)}, line #{malformed_line}"
|
|
29
|
+
end
|
|
30
|
+
customers
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# input : latitude, longitude of point 1 in rads, latitude, longitude of point 2 in rads
|
|
34
|
+
# output : distance between the two points in kms
|
|
35
|
+
def distanceCalculator(la1, lo1, la2, lo2)
|
|
36
|
+
return 0 if la1 == nil || la2 == nil || lo1 == nil || lo2 == nil
|
|
37
|
+
delLambda = (lo2-lo1).to_f
|
|
38
|
+
numerator = Math.sqrt(((Math.cos(la2) * Math.sin(delLambda)) ** 2) +
|
|
39
|
+
((Math.cos(la1) * Math.sin(la2) - Math.sin(la1) * Math.cos(la2) * Math.cos(delLambda)) ** 2))
|
|
40
|
+
denominator = Math.sin(la1) * Math.sin(la2) + Math.cos(la1) * Math.cos(la2) * Math.cos(delLambda)
|
|
41
|
+
denominator = 0.0000000000000000000001 if denominator == 0.0
|
|
42
|
+
delta = Math.atan(numerator/denominator)
|
|
43
|
+
earthRadius * delta
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# output : radius of earth in kms
|
|
47
|
+
def earthRadius
|
|
48
|
+
6371.0
|
|
49
|
+
end
|
|
50
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: dubliner
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chinmaya Dattathri
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-10-18 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: '1.12'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.12'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: json
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.8'
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: 1.8.3
|
|
65
|
+
type: :runtime
|
|
66
|
+
prerelease: false
|
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - "~>"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '1.8'
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 1.8.3
|
|
75
|
+
description: Find cool folks for your party who don't end up crashing at your place.
|
|
76
|
+
email:
|
|
77
|
+
- d.chinmaya@gmail.com
|
|
78
|
+
executables:
|
|
79
|
+
- dubliner
|
|
80
|
+
extensions: []
|
|
81
|
+
extra_rdoc_files: []
|
|
82
|
+
files:
|
|
83
|
+
- ".gitignore"
|
|
84
|
+
- ".rspec"
|
|
85
|
+
- CODE_OF_CONDUCT.md
|
|
86
|
+
- Gemfile
|
|
87
|
+
- LICENSE.txt
|
|
88
|
+
- README.md
|
|
89
|
+
- Rakefile
|
|
90
|
+
- bin/dubliner
|
|
91
|
+
- dubliner.gemspec
|
|
92
|
+
- lib/dubliner.rb
|
|
93
|
+
- lib/dubliner/customer.rb
|
|
94
|
+
- lib/dubliner/helper.rb
|
|
95
|
+
homepage: https://github.com/dchinmaya/dubliner
|
|
96
|
+
licenses:
|
|
97
|
+
- MIT
|
|
98
|
+
metadata: {}
|
|
99
|
+
post_install_message:
|
|
100
|
+
rdoc_options: []
|
|
101
|
+
require_paths:
|
|
102
|
+
- lib
|
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - ">="
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '0'
|
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
|
+
requirements:
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: '0'
|
|
113
|
+
requirements: []
|
|
114
|
+
rubyforge_project:
|
|
115
|
+
rubygems_version: 2.6.11
|
|
116
|
+
signing_key:
|
|
117
|
+
specification_version: 4
|
|
118
|
+
summary: Find cool folks for your party who don't end up crashing at your place.
|
|
119
|
+
test_files: []
|