linkedin 0.1.1 → 0.1.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.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. metadata +2 -7
  4. data/examples/wynn.rb +0 -10
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  gem.email = "wynn.netherland@gmail.com"
11
11
  gem.homepage = "http://github.com/pengwynn/linkedin"
12
12
  gem.authors = ["Wynn Netherland"]
13
- gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]
13
+ gem.files = FileList["[A-Z]*", "{lib,test}/**/*"]
14
14
 
15
15
 
16
16
  gem.add_dependency('oauth', '~> 0.3.5')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
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.1.1
4
+ version: 0.1.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-12-08 00:00:00 -06:00
12
+ date: 2009-12-20 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -96,11 +96,6 @@ files:
96
96
  - README.markdown
97
97
  - Rakefile
98
98
  - VERSION
99
- - examples/authenticate.rb
100
- - examples/network.rb
101
- - examples/profile.rb
102
- - examples/status.rb
103
- - examples/wynn.rb
104
99
  - lib/linked_in/api_standard_profile_request.rb
105
100
  - lib/linked_in/client.rb
106
101
  - lib/linked_in/company.rb
@@ -1,10 +0,0 @@
1
- require 'lib/linkedin'
2
- c = LinkedIn::Client.new('shSB1C3K_Xq0xZ0U9w2VqSoKYhv2ISwFfNpdgrU4rGX3uiaNwbeCYifuGBlJvIc1', 'Xy8dprsITio46xj4jonNE27ZyNILSbHmMVDN1aEzRWVQk-eHJ2aXIkk8vwZUSgJd')
3
- c.authorize_from_access("74f09d7b-3a41-4a01-8c6e-2b1072a046bc", "fcc8399e-3453-4328-9fe8-42021b73a110")
4
-
5
- require 'lib/linkedin'
6
- xml = File.open("test/fixtures/profile_full.xml", "r").read
7
- p = LinkedIn::Profile.from_xml(xml)
8
-
9
-
10
-