linodians 0.0.1
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 +5 -0
- data/.rspec +2 -0
- data/.rubocop.yml +2 -0
- data/.travis.yml +11 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +22 -0
- data/Rakefile +14 -0
- data/lib/linodians.rb +43 -0
- data/lib/linodians/employee.rb +23 -0
- data/lib/linodians/group.rb +20 -0
- data/linodians.gemspec +21 -0
- data/spec/linodians_spec.rb +1 -0
- data/spec/spec_helper.rb +10 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b5d428ba44f8823bbfe93ed036945951bc256428
|
4
|
+
data.tar.gz: 6798e731b05f6c64fe99c0762a058feb489747f7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ad6cfbb93508d4479c21bef7ad069a7d3212f7baf984d88bdf66327f2105a516483c031565dba82bec977f8def77faf1763c3698cd9a8d77dacd1c2e8742f8dc
|
7
|
+
data.tar.gz: dd00e3df500227fb6ecd3987bef2509b4a079b42eba9a42eaf9f53572b33a0dec773368e2c89ee1a945d7bf66b0c842f035cb969181a507e6e702b1d18daa232
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Les Aker
|
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.
|
22
|
+
|
data/README.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
linodians
|
2
|
+
=========
|
3
|
+
|
4
|
+
[](https://rubygems.org/gems/linodians)
|
5
|
+
[](https://gemnasium.com/akerl/linodians)
|
6
|
+
[](https://codeclimate.com/github/akerl/linodians)
|
7
|
+
[](https://coveralls.io/r/akerl/linodians)
|
8
|
+
[](https://travis-ci.org/akerl/linodians)
|
9
|
+
[](https://tldrlegal.com/license/mit-license)
|
10
|
+
|
11
|
+
Library for viewing public Linode employee data
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
gem install linodians
|
18
|
+
|
19
|
+
## License
|
20
|
+
|
21
|
+
linodians is released under the MIT License. See the bundled LICENSE file for details.
|
22
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rspec/core/rake_task'
|
3
|
+
require 'rubocop/rake_task'
|
4
|
+
|
5
|
+
desc 'Run tests'
|
6
|
+
RSpec::Core::RakeTask.new(:spec)
|
7
|
+
|
8
|
+
desc 'Run Rubocop on the gem'
|
9
|
+
RuboCop::RakeTask.new(:rubocop) do |task|
|
10
|
+
task.patterns = ['lib/**/*.rb', 'spec/**/*.rb']
|
11
|
+
task.fail_on_error = true
|
12
|
+
end
|
13
|
+
|
14
|
+
task default: [:spec, :rubocop, :build, :install]
|
data/lib/linodians.rb
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'nokogiri'
|
3
|
+
|
4
|
+
##
|
5
|
+
# Module for parsing Linode employee info
|
6
|
+
module Linodians
|
7
|
+
DATA_URL = 'https://www.linode.com/employees'
|
8
|
+
|
9
|
+
class << self
|
10
|
+
##
|
11
|
+
# Insert a helper .new() method for creating a new Group object
|
12
|
+
def new(*args)
|
13
|
+
self::Group.new(*args)
|
14
|
+
end
|
15
|
+
|
16
|
+
def download_data
|
17
|
+
Nokogiri::HTML(open(DATA_URL)).css('.employee-display').map do |block|
|
18
|
+
data = parse_user(block).merge parse_social(block)
|
19
|
+
Employee.new data
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def parse_user(block)
|
26
|
+
{
|
27
|
+
username: block.at_css('img')['img-name'],
|
28
|
+
fullname: block.at_css('strong').text,
|
29
|
+
title: block.at_css('small').text
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
def parse_social(block)
|
34
|
+
block.css('a.employee-link').map do |link|
|
35
|
+
# Social site name from CSS class, link target
|
36
|
+
[link[:class].split.last.split('-').last.to_sym, link['href']]
|
37
|
+
end.to_h
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
require 'linodians/employee'
|
43
|
+
require 'linodians/group'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Linodians
|
2
|
+
##
|
3
|
+
# Employee object
|
4
|
+
class Employee
|
5
|
+
def initialize(params = {})
|
6
|
+
@raw = params
|
7
|
+
end
|
8
|
+
|
9
|
+
def [](value)
|
10
|
+
@raw[value.to_sym] || @raw[value.to_s]
|
11
|
+
end
|
12
|
+
|
13
|
+
def respond_to?(method, _)
|
14
|
+
@raw.key?(method) || super
|
15
|
+
end
|
16
|
+
|
17
|
+
def method_missing(method, *args, &block)
|
18
|
+
return super unless @raw.key?(method)
|
19
|
+
instance_eval "def #{method}() @raw[:'#{method}'] end"
|
20
|
+
send(method)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'delegate'
|
2
|
+
|
3
|
+
module Linodians
|
4
|
+
##
|
5
|
+
# Group of employees
|
6
|
+
class Group < Delegator
|
7
|
+
attr_reader :members
|
8
|
+
alias_method :__getobj__, :members
|
9
|
+
|
10
|
+
def initialize
|
11
|
+
@members = Linodians.download_data
|
12
|
+
@members.freeze
|
13
|
+
super(@members)
|
14
|
+
end
|
15
|
+
|
16
|
+
def __setobj__(_)
|
17
|
+
@members
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
data/linodians.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'linodians'
|
3
|
+
s.version = '0.0.1'
|
4
|
+
s.date = Time.now.strftime("%Y-%m-%d")
|
5
|
+
|
6
|
+
s.summary = 'Parse Linode employees'
|
7
|
+
s.description = "Library for viewing public Linode employee data"
|
8
|
+
s.authors = ['Les Aker']
|
9
|
+
s.email = 'me@lesaker.org'
|
10
|
+
s.homepage = 'https://github.com/akerl/linodians'
|
11
|
+
s.license = 'MIT'
|
12
|
+
|
13
|
+
s.files = `git ls-files`.split
|
14
|
+
s.test_files = `git ls-files spec/*`.split
|
15
|
+
|
16
|
+
s.add_development_dependency 'rubocop', '~> 0.26.0'
|
17
|
+
s.add_development_dependency 'rake', '~> 10.3.2'
|
18
|
+
s.add_development_dependency 'coveralls', '~> 0.7.1'
|
19
|
+
s.add_development_dependency 'rspec', '~> 3.1.0'
|
20
|
+
s.add_development_dependency 'fuubar', '~> 2.0.0'
|
21
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'spec_helper'
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: linodians
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Les Aker
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rubocop
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.26.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.26.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: 10.3.2
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 10.3.2
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: coveralls
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.7.1
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.7.1
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.1.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.1.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: fuubar
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.0.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.0.0
|
83
|
+
description: Library for viewing public Linode employee data
|
84
|
+
email: me@lesaker.org
|
85
|
+
executables: []
|
86
|
+
extensions: []
|
87
|
+
extra_rdoc_files: []
|
88
|
+
files:
|
89
|
+
- ".gitignore"
|
90
|
+
- ".rspec"
|
91
|
+
- ".rubocop.yml"
|
92
|
+
- ".travis.yml"
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- lib/linodians.rb
|
98
|
+
- lib/linodians/employee.rb
|
99
|
+
- lib/linodians/group.rb
|
100
|
+
- linodians.gemspec
|
101
|
+
- spec/linodians_spec.rb
|
102
|
+
- spec/spec_helper.rb
|
103
|
+
homepage: https://github.com/akerl/linodians
|
104
|
+
licenses:
|
105
|
+
- MIT
|
106
|
+
metadata: {}
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
requirements: []
|
122
|
+
rubyforge_project:
|
123
|
+
rubygems_version: 2.2.2
|
124
|
+
signing_key:
|
125
|
+
specification_version: 4
|
126
|
+
summary: Parse Linode employees
|
127
|
+
test_files:
|
128
|
+
- spec/linodians_spec.rb
|
129
|
+
- spec/spec_helper.rb
|