ariesms 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/Gemfile +8 -0
- data/LICENSE +21 -0
- data/README.md +79 -0
- data/Rakefile +8 -0
- data/data/classes.json +154 -0
- data/lib/aries.rb +7 -0
- data/lib/aries/exceptions.rb +15 -0
- data/lib/aries/models/character.rb +83 -0
- data/lib/aries/scraper.rb +66 -0
- metadata +164 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e337d4795efce5d9fcc6c9f8133daa727269e54f
|
4
|
+
data.tar.gz: 399b64464ad169a8e79efe0084e9cf0ae6c37d00
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6bb6e3401ef8989aea4ccb1eb5bfd1c57b0f7b2a33128de7d3c1fa49bd67fe5baa3a50f26b0309d946df1fd181be0ba35a1a6f4ca4e5e7408a24a58382a308fa
|
7
|
+
data.tar.gz: df7c9d702d97adca4f212803edf2b3cf999b1d482cac689e3021257676440de303975c0b0838c9c5f25b8b17a2eea583c3c2610557aa045519345b6f60c9d2cf
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Lotus
|
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,79 @@
|
|
1
|
+
[](https://travis-ci.org/yoru/aries)
|
2
|
+
[](https://rubygems.org/gems/ariesms)
|
3
|
+
|
4
|
+
# Aries
|
5
|
+
|
6
|
+
An unofficial Ruby library for AriesMS rankings. It scrapes the ranking page and
|
7
|
+
present the data in a organised fashion.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
gem 'ariesms'
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install ariesms
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'aries'
|
27
|
+
|
28
|
+
# Returns a single Character object.
|
29
|
+
character = Aries::Character.find('Ruby')
|
30
|
+
|
31
|
+
# Returns the number of online characters.
|
32
|
+
characters = Aries::Character.online
|
33
|
+
|
34
|
+
# Returns the overall ranking.
|
35
|
+
characters = Aries::Character.all
|
36
|
+
|
37
|
+
# Returns the job ranking.
|
38
|
+
characters = Aries::Character.job('phantom')
|
39
|
+
|
40
|
+
# Returns the most famed characters.
|
41
|
+
characters = Aries::Character.fame
|
42
|
+
```
|
43
|
+
|
44
|
+
You can pass a page number as an argument, e.g. `Aries::Character.all(2)`. Each
|
45
|
+
page returns an array of 10 Character objects.
|
46
|
+
|
47
|
+
### Aries::Character
|
48
|
+
|
49
|
+
It's self explanatory.
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
{
|
53
|
+
@id => 1,
|
54
|
+
@name => "Yakan",
|
55
|
+
@job => "Bow Master",
|
56
|
+
@world => "Scania"
|
57
|
+
@level => 219,
|
58
|
+
@paragon => 0,
|
59
|
+
@fame => 117
|
60
|
+
}
|
61
|
+
```
|
62
|
+
|
63
|
+
Unfortunately the ID present in the ranking table is relative, so it doesn't
|
64
|
+
reflect the ranking position when using `Aries::Character.find`. It's not a lib
|
65
|
+
issue.
|
66
|
+
|
67
|
+
## Contributing
|
68
|
+
|
69
|
+
1. Fork it
|
70
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
71
|
+
3. Fix offenses (`rubocop -a`)
|
72
|
+
4. Run the tests (`rake spec`)
|
73
|
+
5. Commit your changes (`git commit -am 'Add some feature'`)
|
74
|
+
6. Push to the branch (`git push origin my-new-feature`)
|
75
|
+
7. Create new Pull Request
|
76
|
+
|
77
|
+
## License
|
78
|
+
|
79
|
+
The gem is available as open source under the terms of the [MIT License](LICENSE).
|
data/Rakefile
ADDED
data/data/classes.json
ADDED
@@ -0,0 +1,154 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": -1,
|
4
|
+
"name": "islander"
|
5
|
+
},
|
6
|
+
{
|
7
|
+
"id": 0,
|
8
|
+
"name": "beginner"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"id": 1,
|
12
|
+
"name": "warrior"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"id": 2,
|
16
|
+
"name": "magician"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"id": 3,
|
20
|
+
"name": "bowman"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"id": 4,
|
24
|
+
"name": "thief"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"id": 5,
|
28
|
+
"name": "pirate"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"id": 10,
|
32
|
+
"name": "noblesse"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"id": 11,
|
36
|
+
"name": "dawn_warrior"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"id": 12,
|
40
|
+
"name": "blaze_wizard"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"id": 13,
|
44
|
+
"name": "wind_archer"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"id": 14,
|
48
|
+
"name": "night_walker"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"id": 15,
|
52
|
+
"name": "thunder_breaker"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"id": 20,
|
56
|
+
"name": "legend"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"id": 21,
|
60
|
+
"name": "aran"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"id": 22,
|
64
|
+
"name": "evan"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"id": 23,
|
68
|
+
"name": "mercedes"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"id": 24,
|
72
|
+
"name": "phantom"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"id": 25,
|
76
|
+
"name": "shade"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"id": 27,
|
80
|
+
"name": "luminous"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"id": 30,
|
84
|
+
"name": "citizen"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"id": 31,
|
88
|
+
"name": "demon_slayer"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"id": 32,
|
92
|
+
"name": "battle_mage"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"id": 33,
|
96
|
+
"name": "wild_hunter"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"id": 35,
|
100
|
+
"name": "mechanic"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"id": 36,
|
104
|
+
"name": "xenon"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"id": 37,
|
108
|
+
"name": "blaster"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"id": 41,
|
112
|
+
"name": "hayato"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"id": 42,
|
116
|
+
"name": "kanna"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"id": 51,
|
120
|
+
"name": "mihile"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"id": 61,
|
124
|
+
"name": "kaiser"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"id": 64,
|
128
|
+
"name": "cadena"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"id": 65,
|
132
|
+
"name": "angelic_buster"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"id": 101,
|
136
|
+
"name": "zero"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"id": 112,
|
140
|
+
"name": "beast_tamer"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"id": 131,
|
144
|
+
"name": "pink_bean"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"id": 142,
|
148
|
+
"name": "kinesis"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"id": 152,
|
152
|
+
"name": "illium"
|
153
|
+
}
|
154
|
+
]
|
data/lib/aries.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aries
|
4
|
+
module Exception
|
5
|
+
class Base < RuntimeError
|
6
|
+
def initialize(message)
|
7
|
+
super(message)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
class Scraper < Base; end
|
12
|
+
class NotFoundError < Base; end
|
13
|
+
class InvalidJobError < Base; end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'json'
|
4
|
+
|
5
|
+
module Aries
|
6
|
+
class Character
|
7
|
+
attr_reader :id, :name, :job, :world, :level, :paragon, :fame
|
8
|
+
|
9
|
+
def initialize(attributes)
|
10
|
+
@id = attributes[:id]
|
11
|
+
@name = attributes[:name]
|
12
|
+
@job = attributes[:job]
|
13
|
+
@world = attributes[:world] || 'Scania'
|
14
|
+
@level = attributes[:level]
|
15
|
+
@paragon = attributes[:paragon]
|
16
|
+
@fame = attributes[:fame]
|
17
|
+
end
|
18
|
+
|
19
|
+
def to_json
|
20
|
+
hash = {}
|
21
|
+
instance_variables.each do |var|
|
22
|
+
var = var[1..-1]
|
23
|
+
hash[var] = send(var.to_sym)
|
24
|
+
end
|
25
|
+
|
26
|
+
JSON.pretty_generate(hash)
|
27
|
+
end
|
28
|
+
|
29
|
+
def to_hash
|
30
|
+
JSON.parse(to_json, symbolize_names: true)
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.online
|
34
|
+
online = Aries::Scraper.raw(page: 'home')
|
35
|
+
.body
|
36
|
+
.match(/(\d+)\sONLINE/)
|
37
|
+
|
38
|
+
return false unless online
|
39
|
+
|
40
|
+
online.captures.first.to_i
|
41
|
+
end
|
42
|
+
|
43
|
+
def self.all(n = 1)
|
44
|
+
Aries::Scraper.get(page: 'ranking', overall: skip(n))
|
45
|
+
.map { |attr| new(attr) }
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.fame(n = 1)
|
49
|
+
Aries::Scraper.get(page: 'ranking', fame: 1, start: skip(n))
|
50
|
+
.map { |attr| new(attr) }
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.job(name, n = 1)
|
54
|
+
Aries::Scraper.get(page: 'ranking', job: job_id(name), start: skip(n))
|
55
|
+
.map { |attr| new(attr) }
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.find(ign)
|
59
|
+
new Aries::Scraper.post({ page: 'ranking', name: 1 }, username: ign)
|
60
|
+
.first
|
61
|
+
end
|
62
|
+
|
63
|
+
class << self
|
64
|
+
protected
|
65
|
+
|
66
|
+
# HACK: Pagination
|
67
|
+
# Skip <number> of characters
|
68
|
+
def skip(page)
|
69
|
+
(page * 10) - 10
|
70
|
+
end
|
71
|
+
|
72
|
+
def job_id(name)
|
73
|
+
file = File.read \
|
74
|
+
File.expand_path('../../../../data/classes.json', __FILE__)
|
75
|
+
job = JSON.parse(file).find { |j| j['name'] == name }
|
76
|
+
|
77
|
+
raise Aries::Exception::InvalidJobError, 'Invalid job' if job.nil?
|
78
|
+
|
79
|
+
job['id']
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'nokogiri'
|
4
|
+
require 'rest_client'
|
5
|
+
|
6
|
+
module Aries
|
7
|
+
module Scraper
|
8
|
+
class << self
|
9
|
+
def url_for(params = {})
|
10
|
+
url = URI.parse('https://aries.elluel.net/')
|
11
|
+
url.query = URI.encode_www_form(params) if params
|
12
|
+
url.to_s
|
13
|
+
end
|
14
|
+
|
15
|
+
def get(params)
|
16
|
+
perform_request do
|
17
|
+
parse_response(RestClient.get(url_for(params)))
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def post(params, form_data = {})
|
22
|
+
perform_request do
|
23
|
+
parse_response(RestClient.post(url_for(params), form_data))
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def raw(params)
|
28
|
+
perform_request do
|
29
|
+
RestClient.get(url_for(params))
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def perform_request
|
36
|
+
yield
|
37
|
+
rescue RestClient::Exception => e
|
38
|
+
raise Aries::Exception::Scraper, e.message
|
39
|
+
end
|
40
|
+
|
41
|
+
def parse_response(response_body)
|
42
|
+
characters = []
|
43
|
+
|
44
|
+
table = Nokogiri::HTML(response_body).at('table').search('tr')
|
45
|
+
table.drop(1).each do |tr|
|
46
|
+
cells = tr.search('th', 'td')
|
47
|
+
characters << {
|
48
|
+
id: cells[0].text.to_i,
|
49
|
+
name: cells[1].text,
|
50
|
+
job: cells[2].text.strip,
|
51
|
+
level: cells[3].children[0].text.to_i,
|
52
|
+
paragon: cells[4].children[0].text.to_i,
|
53
|
+
fame: cells[5].text.to_i
|
54
|
+
}
|
55
|
+
end
|
56
|
+
|
57
|
+
if characters.empty?
|
58
|
+
raise Aries::Exception::NotFoundError,
|
59
|
+
'No character was found'
|
60
|
+
end
|
61
|
+
|
62
|
+
characters
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
metadata
ADDED
@@ -0,0 +1,164 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ariesms
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '1.0'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Lotus
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-01-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: json
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
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: nokogiri
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
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: rest-client
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
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: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.16'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.16'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.11.3
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.11.3
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.52.1
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.52.1
|
125
|
+
description:
|
126
|
+
email: lotus@disr.it
|
127
|
+
executables: []
|
128
|
+
extensions: []
|
129
|
+
extra_rdoc_files: []
|
130
|
+
files:
|
131
|
+
- Gemfile
|
132
|
+
- LICENSE
|
133
|
+
- README.md
|
134
|
+
- Rakefile
|
135
|
+
- data/classes.json
|
136
|
+
- lib/aries.rb
|
137
|
+
- lib/aries/exceptions.rb
|
138
|
+
- lib/aries/models/character.rb
|
139
|
+
- lib/aries/scraper.rb
|
140
|
+
homepage: https://github.com/yoru/aries
|
141
|
+
licenses:
|
142
|
+
- MIT
|
143
|
+
metadata: {}
|
144
|
+
post_install_message:
|
145
|
+
rdoc_options: []
|
146
|
+
require_paths:
|
147
|
+
- lib
|
148
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
requirements: []
|
159
|
+
rubyforge_project:
|
160
|
+
rubygems_version: 2.6.13
|
161
|
+
signing_key:
|
162
|
+
specification_version: 4
|
163
|
+
summary: An unofficial Ruby library for AriesMS rankings
|
164
|
+
test_files: []
|