linkedin 0.0.1 → 0.0.2
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.
- data/README.markdown +0 -1
- data/Rakefile +1 -2
- data/VERSION +1 -1
- data/lib/linked_in/api_standard_profile_request.rb +9 -0
- data/lib/linked_in/client.rb +20 -21
- data/lib/linked_in/company.rb +9 -0
- data/lib/linked_in/connections.rb +7 -0
- data/lib/linked_in/country.rb +7 -0
- data/lib/linked_in/education.rb +11 -0
- data/lib/linked_in/error.rb +10 -0
- data/lib/linked_in/location.rb +8 -0
- data/lib/linked_in/position.rb +12 -0
- data/lib/linked_in/profile.rb +25 -0
- data/lib/linked_in/url_resource.rb +8 -0
- data/lib/linkedin.rb +31 -6
- data/test/client_test.rb +50 -0
- data/test/fixtures/connections.xml +3733 -0
- data/test/fixtures/error.xml +7 -0
- data/test/fixtures/profile.xml +9 -0
- data/test/fixtures/profile_full.xml +3849 -0
- data/test/fixtures/profile_with_positions.xml +79 -0
- data/test/test_helper.rb +1 -1
- metadata +21 -14
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<person>
|
|
3
|
+
<first-name>Wynn</first-name>
|
|
4
|
+
<last-name>Netherland</last-name>
|
|
5
|
+
<headline>Pixel Pusher at Orrka</headline>
|
|
6
|
+
<relation-to-viewer>
|
|
7
|
+
<distance>0</distance>
|
|
8
|
+
</relation-to-viewer>
|
|
9
|
+
<positions total="4">
|
|
10
|
+
<position>
|
|
11
|
+
<id>95092599</id>
|
|
12
|
+
<title>Founder</title>
|
|
13
|
+
<summary></summary>
|
|
14
|
+
<start-date>
|
|
15
|
+
<year>2009</year>
|
|
16
|
+
<month>10</month>
|
|
17
|
+
</start-date>
|
|
18
|
+
<is-current>true</is-current>
|
|
19
|
+
<company>
|
|
20
|
+
<name>Orrka</name>
|
|
21
|
+
</company>
|
|
22
|
+
</position>
|
|
23
|
+
<position>
|
|
24
|
+
<id>21901644</id>
|
|
25
|
+
<title>Founder</title>
|
|
26
|
+
<summary>- Ruby on Rails development
|
|
27
|
+
- Web application development
|
|
28
|
+
- Web-based customer satisfaction tools
|
|
29
|
+
- Hosted web applications
|
|
30
|
+
- User Interface design and front end development</summary>
|
|
31
|
+
<start-date>
|
|
32
|
+
<year>2000</year>
|
|
33
|
+
<month>9</month>
|
|
34
|
+
</start-date>
|
|
35
|
+
<end-date>
|
|
36
|
+
<year>2009</year>
|
|
37
|
+
<month>11</month>
|
|
38
|
+
</end-date>
|
|
39
|
+
<is-current>false</is-current>
|
|
40
|
+
<company>
|
|
41
|
+
<name>Squeejee</name>
|
|
42
|
+
</company>
|
|
43
|
+
</position>
|
|
44
|
+
<position>
|
|
45
|
+
<id>4891362</id>
|
|
46
|
+
<title>Solution Architect</title>
|
|
47
|
+
<summary>Part of architecture team that develops worldwide software application frameworks for web storefronts and desktop call center applications using Microsoft .NET technology.
|
|
48
|
+
Includes analyzing requirements, designing framework APIs, ensuring consistency and simplicity to enable regional extension.
|
|
49
|
+
Evangelism of project throughout enterprise and partnering with other global teams to deliver the most robust and efficient platform for our business customers.
|
|
50
|
+
Working closely with Microsoft consultants onstaff and in Redmond in order to influence future versions of Microsoft development products.</summary>
|
|
51
|
+
<start-date>
|
|
52
|
+
<year>2004</year>
|
|
53
|
+
<month>10</month>
|
|
54
|
+
</start-date>
|
|
55
|
+
<end-date>
|
|
56
|
+
<year>2007</year>
|
|
57
|
+
<month>6</month>
|
|
58
|
+
</end-date>
|
|
59
|
+
<is-current>false</is-current>
|
|
60
|
+
<company>
|
|
61
|
+
<name>Hewlett-Packard</name>
|
|
62
|
+
</company>
|
|
63
|
+
</position>
|
|
64
|
+
<position>
|
|
65
|
+
<id>4987329</id>
|
|
66
|
+
<title>Developer</title>
|
|
67
|
+
<start-date>
|
|
68
|
+
<year>1998</year>
|
|
69
|
+
</start-date>
|
|
70
|
+
<end-date>
|
|
71
|
+
<year>2000</year>
|
|
72
|
+
</end-date>
|
|
73
|
+
<is-current>false</is-current>
|
|
74
|
+
<company>
|
|
75
|
+
<name>Shell Services International</name>
|
|
76
|
+
</company>
|
|
77
|
+
</position>
|
|
78
|
+
</positions>
|
|
79
|
+
</person>
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linkedin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wynn Netherland
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-25 00:00:00 -06:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -23,24 +23,14 @@ dependencies:
|
|
|
23
23
|
version: 0.3.5
|
|
24
24
|
version:
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
|
-
name:
|
|
26
|
+
name: roxml
|
|
27
27
|
type: :runtime
|
|
28
28
|
version_requirement:
|
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ~>
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
34
|
-
version:
|
|
35
|
-
- !ruby/object:Gem::Dependency
|
|
36
|
-
name: crack
|
|
37
|
-
type: :runtime
|
|
38
|
-
version_requirement:
|
|
39
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
-
requirements:
|
|
41
|
-
- - ~>
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
version: 0.1.4
|
|
33
|
+
version: 3.1.3
|
|
44
34
|
version:
|
|
45
35
|
- !ruby/object:Gem::Dependency
|
|
46
36
|
name: thoughtbot-shoulda
|
|
@@ -96,8 +86,24 @@ files:
|
|
|
96
86
|
- README.markdown
|
|
97
87
|
- Rakefile
|
|
98
88
|
- VERSION
|
|
89
|
+
- lib/linked_in/api_standard_profile_request.rb
|
|
99
90
|
- lib/linked_in/client.rb
|
|
91
|
+
- lib/linked_in/company.rb
|
|
92
|
+
- lib/linked_in/connections.rb
|
|
93
|
+
- lib/linked_in/country.rb
|
|
94
|
+
- lib/linked_in/education.rb
|
|
95
|
+
- lib/linked_in/error.rb
|
|
96
|
+
- lib/linked_in/location.rb
|
|
97
|
+
- lib/linked_in/position.rb
|
|
98
|
+
- lib/linked_in/profile.rb
|
|
99
|
+
- lib/linked_in/url_resource.rb
|
|
100
100
|
- lib/linkedin.rb
|
|
101
|
+
- test/client_test.rb
|
|
102
|
+
- test/fixtures/connections.xml
|
|
103
|
+
- test/fixtures/error.xml
|
|
104
|
+
- test/fixtures/profile.xml
|
|
105
|
+
- test/fixtures/profile_full.xml
|
|
106
|
+
- test/fixtures/profile_with_positions.xml
|
|
101
107
|
- test/oauth_test.rb
|
|
102
108
|
- test/test_helper.rb
|
|
103
109
|
has_rdoc: true
|
|
@@ -129,5 +135,6 @@ signing_key:
|
|
|
129
135
|
specification_version: 3
|
|
130
136
|
summary: Ruby wrapper for the LinkedIn API
|
|
131
137
|
test_files:
|
|
138
|
+
- test/client_test.rb
|
|
132
139
|
- test/oauth_test.rb
|
|
133
140
|
- test/test_helper.rb
|