angel_list 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.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in angel_list.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Scott Ballantyne
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # AngelList
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'angel_list'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install angel_list
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/angel_list/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Scott Ballantyne"]
6
+ gem.email = ["ussballantyne@gmail.com"]
7
+ gem.description = %q{wrapper for angel list}
8
+ gem.summary = %q{wrapper for angel list}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "angel_list"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = AngelList::VERSION
17
+ gem.add_dependency(%q<curb>, [">= 0"])
18
+ gem.add_dependency(%q<typhoeus>, [">= 0"])
19
+ gem.add_dependency(%q<faraday>, [">= 0"])
20
+ gem.add_dependency(%q<hashie>, [">= 0"])
21
+ gem.add_dependency(%q<yajl-ruby>, [">= 0"])
22
+ gem.add_dependency(%q<nokogiri>, [">= 0"])
23
+ gem.add_dependency(%q<hpricot>, [">= 0"])
24
+ gem.add_dependency(%q<oauth2>, [">= 0"])
25
+ gem.add_development_dependency(%q<pry>, ['>= 0'])
26
+ end
data/angel_list.yml ADDED
@@ -0,0 +1,17 @@
1
+ development:
2
+ client_id: ''
3
+ client_secret: ''
4
+ site: ''
5
+ redirect_uri: ''
6
+
7
+ test:
8
+ client_id: ''
9
+ client_secret: ''
10
+ site: ''
11
+ redirect_uri: ''
12
+
13
+ production:
14
+ client_id: ''
15
+ client_secret: ''
16
+ site: ''
17
+ redirect_uri: ''
@@ -0,0 +1,37 @@
1
+ require 'oauth2'
2
+
3
+ module AngelList
4
+ class Auth
5
+ attr_accessor :options, :token, :client
6
+
7
+ def initialize(opts)
8
+ self.options = Hashie::Mash.new
9
+ self.options = self.options.merge(AngelList::Config.options) if AngelList::Config.methods.include? :options
10
+ self.options = self.options.merge(opts)
11
+ self.options = self.options.merge(:site => 'https://angel.co/') if self.options[:site] == nil
12
+ self.client = get_client
13
+ self
14
+ end
15
+
16
+ def redirect_url
17
+ self.client.auth_code.authorize_url(:redirect_uri => self.options[:redirect_uri])
18
+ end
19
+
20
+ def get_client
21
+ OAuth2::Client.new(self.options[:client_id], self.options[:client_secret],
22
+ :site => self.options[:site],
23
+ :authorize_url => '/api/oauth/authorize',
24
+ :token_url => '/api/oauth/token')
25
+ end
26
+
27
+ def code(c)
28
+ self.token = self.client.auth_code.get_token(c, :redirect_uri => self.options[:redirect_uri])
29
+ self
30
+ end
31
+
32
+ def from_hash(token)
33
+ self.token = OAuth2::AccessToken.new(self.client, token)
34
+ self
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,27 @@
1
+ module AngelList
2
+ class Base
3
+ attr_accessor :auth
4
+
5
+ def initialize(auth)
6
+ self.auth = auth
7
+ end
8
+
9
+ def parse(r)
10
+ AngelList::Response.new(r).content
11
+ end
12
+
13
+ def get(url, options={})
14
+ parse(self.auth.token.get(url, options))
15
+ end
16
+
17
+ def post(url, options={})
18
+ parse(self.auth.token.post(url, options))
19
+ end
20
+
21
+ def delete(url, options={})
22
+ parse(self.auth.token.delete(url, options))
23
+ end
24
+ end
25
+ end
26
+
27
+
@@ -0,0 +1,5 @@
1
+ module AngelList
2
+ class Config
3
+ attr_accessor :options
4
+ end
5
+ end
@@ -0,0 +1,11 @@
1
+ module AngelList
2
+ class Feed < Base
3
+ def all(options={})
4
+ get('https://api.angel.co/1/feed', options)
5
+ end
6
+
7
+ def find(id)
8
+ get('https://api.angel.co/1/feed/'+id.to_s)
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,39 @@
1
+ module AngelList
2
+ class Follow < Base
3
+ def new(options)
4
+ post('https://api.angel.co/1/follows', options)
5
+ end
6
+
7
+ def destroy(options)
8
+ delete('https://api.angel.co/1/follows', options)
9
+ end
10
+
11
+ def batch(array)
12
+ get('https://api.angel.co/1/follows/batch?ids='+array.join(','))
13
+ end
14
+
15
+ def followers(id)
16
+ get('https://api.angel.co/1/users/'+id.to_s+'/followers')
17
+ end
18
+
19
+ def followers_ids(id)
20
+ get('https://api.angel.co/1/users/'+id.to_s+'/followers/ids')
21
+ end
22
+
23
+ def following(id, options={})
24
+ get('https://api.angel.co/1/users/'+id.to_s+'/following', options)
25
+ end
26
+
27
+ def following_ids(id, options={})
28
+ get('https://api.angel.co/1/users/'+id.to_s+'/following/ids', options))
29
+ end
30
+
31
+ def startup(id)
32
+ get('https://api.angel.co/1/startups/'+id.to_s+'/followers')
33
+ end
34
+
35
+ def startup_follower_ids(id)
36
+ get('https://api.angel.co/1/startups/'+id.to_s+'/followers/ids')
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,20 @@
1
+ module AngelList
2
+ class Job < Base
3
+
4
+ def all
5
+ get('https://api.angel.co/1/jobs')
6
+ end
7
+
8
+ def find(id)
9
+ get('https://api.angel.co/1/jobs/'+id.to_s)
10
+ end
11
+
12
+ def startup(id)
13
+ get('https://api.angel.co/startups/'+id.to_s+'/jobs')
14
+ end
15
+
16
+ def tag(tag_id)
17
+ get('https://api.angel.co/1/tags/'+tag_id.to_s+'/jobs')
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,15 @@
1
+ module AngelList
2
+ class Message < Base
3
+ def new(options)
4
+ post('https://api.angel.co/1/paths', options)
5
+ end
6
+
7
+ def thread(thread_id)
8
+ get('https://api.angel.co/1/messages/'+thread_id.to_s)
9
+ end
10
+
11
+ def all(view=:inbox)
12
+ get('https://api.angel.co/1/messages' {:view => view})
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class Path < Base
3
+ def find(options)
4
+ get('https://api.angel.co/1/paths', options)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class Press < Base
3
+ def find(startup_id)
4
+ get('https://api.angel.co/1/press?startup_id='+startup_id.to_s)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ require 'oauth2'
2
+
3
+ module AngelList
4
+ class Response
5
+ attr_accessor :content
6
+
7
+ def initialize(response)
8
+ self.content = AngelList::Tools.parse(response.response.env[:body].to_s)
9
+ self.content
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class Review < Base
3
+ def find(user_id)
4
+ get('https://api.angel.co/1/reviews?user_id='+user_id)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class Search < Base
3
+ def find(options)
4
+ get('https://api.angel.co/1/search', options)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class Startup < Base
3
+ def find(id)
4
+ get('https://api.angel.co/1/startups/'+id.to_s)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module AngelList
2
+ class StartupRole < Base
3
+ def find(startup_id)
4
+ get('https://api.angel.co/1/startup_roles?startup_id='+startup_id.to_s)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ module AngelList
2
+ class StatusUpdate < Base
3
+ def new(options)
4
+ post('https://api.angel.co/1/status_updates', :params => options)
5
+ end
6
+
7
+ def destroy(id)
8
+ delete('https://api.angel.co/1/status_updates/'+id.to_s)
9
+ end
10
+
11
+ def find(options)
12
+ get('https://api.angel.co/1/status_updates', options)
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ module AngelList
2
+ class Tag < Base
3
+ def find(id)
4
+ get('https://api.angel.co/1/tags/'+id.to_s)
5
+ end
6
+
7
+ def children(id)
8
+ get('https://api.angel.co/1/tags/'+id.to_s+'/children')
9
+ end
10
+
11
+ def parents(id)
12
+ get('https://api.angel.co/1/tags/'+id.to_s+'/parents')
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,75 @@
1
+ # coding: utf-8
2
+ require 'yajl'
3
+ require 'hashie'
4
+ require 'curb'
5
+ require 'nokogiri'
6
+ require 'hpricot'
7
+ module AngelList
8
+ module Tools
9
+
10
+ def self.download(url)
11
+ c = self.curb(url)
12
+ c.body_str
13
+ end
14
+
15
+ def self.post(url, options)
16
+ Curl.post(url, options)
17
+ end
18
+
19
+ def self.last_effective_url(url)
20
+ c = self.curb(url)
21
+ c.last_effective_url
22
+ end
23
+
24
+ def self.curb(url)
25
+ c = Curl::Easy.new(url) do |curl|
26
+ curl.headers["User-Agent"] = user_agent
27
+ # curl.verbose = true
28
+ curl.timeout = 120
29
+ curl.follow_location = true
30
+ curl.max_redirects = 20
31
+ end
32
+ c.perform
33
+ c
34
+ end
35
+
36
+ def self.parse(data)
37
+ Hashie::Mash.new Yajl::Parser.new.parse(data)
38
+ end
39
+
40
+ def self.encode(data)
41
+ Yajl::Encoder.encode(data)
42
+ end
43
+
44
+
45
+ def self.sleep_time
46
+ array_of_numbers = [1.2, 2.35, 2.45, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.1, 1.4]
47
+ random_number = array_of_numbers[rand(array_of_numbers.size)]
48
+ random_number
49
+ end
50
+
51
+ def self.hashify(source)
52
+ Digest::SHA1.hexdigest(source)
53
+ end
54
+
55
+ def self.user_agent
56
+ array_of_agents = ["Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)",
57
+ "Mozilla/5.0 (Windows; U; Windows NT 6.1; ja; rv:1.9.2a1pre) Gecko/20090403 Firefox/3.6a1pre",
58
+ "Opera/9.80 (Windows NT 6.0; U; fi) Presto/2.2.0 Version/10.00",
59
+ "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1; zh-CN) AppleWebKit/530.19.2 (KHTML, like Gecko) Version/4.0.2 Safari/530.19",
60
+ "ia_archiver (+http://www.alexa.com/site/help/webmasters; crawler@alexa.com)",
61
+ "Baiduspider+(+http://www.baidu.com/search/spider.htm)",
62
+ 'msnbot-webmaster/1.0 (+http://search.msn.com/msnbot.htm)',
63
+ 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; ar) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.1 Safari/525.18',
64
+ 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; Tablet PC 2.0; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; MS-RTC LM 8; InfoPath.3)',
65
+ 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)',
66
+ 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022)']
67
+ random_number = array_of_agents[rand(array_of_agents.size)]
68
+ random_number
69
+ end
70
+
71
+ def self.doc(html)
72
+ Hpricot(html)
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,19 @@
1
+ module AngelList
2
+ class User < Base
3
+ def me
4
+ get('https://api.angel.co/1/me')
5
+ end
6
+
7
+ def find(id)
8
+ get('https://api.angel.co/1/users/'+id.to_s)
9
+ end
10
+
11
+ def batch(array=[])
12
+ get('https://api.angel.co/1/users/batch?ids='+array.join(','))
13
+ end
14
+
15
+ def search(string)
16
+ get('https://api.angel.co/1/users/search?slug='+URI.escape(string))
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,3 @@
1
+ module AngelList
2
+ VERSION = "0.0.1"
3
+ end
data/lib/angel_list.rb ADDED
@@ -0,0 +1,22 @@
1
+ require "angel_list/version"
2
+ require 'angel_list/config'
3
+ require 'angel_list/base'
4
+ require 'angel_list/tools'
5
+ require 'angel_list/startup'
6
+ require 'angel_list/status_update'
7
+ require 'angel_list/user'
8
+ require 'angel_list/auth'
9
+ require 'angel_list/response'
10
+
11
+ if File.exists?('config/angel_list.yml')
12
+ oauth_config = YAML.load_file('config/weibo.yml')[ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development"]
13
+ puts oauth_config.inspect
14
+ AngelList::Config.options = oauth_config
15
+
16
+ else
17
+ # puts "\n\n=========================================================\n\n" +
18
+ # " You haven't made a config/angel_list.yml file.\n\n You should. \n\n The weibo gem will work much better if you do\n\n" +
19
+ # " Please set AngelList::Config.client_id and \n Weibo::Config.api_secret\n somewhere in your initialization process\n\n" +
20
+ # "=========================================================\n\n"
21
+ end
22
+
metadata ADDED
@@ -0,0 +1,216 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: angel_list
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Scott Ballantyne
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-09-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: curb
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: typhoeus
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: faraday
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: hashie
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: yajl-ruby
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: nokogiri
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: hpricot
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: oauth2
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: pry
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ description: wrapper for angel list
159
+ email:
160
+ - ussballantyne@gmail.com
161
+ executables: []
162
+ extensions: []
163
+ extra_rdoc_files: []
164
+ files:
165
+ - .gitignore
166
+ - Gemfile
167
+ - LICENSE
168
+ - README.md
169
+ - Rakefile
170
+ - angel_list.gemspec
171
+ - angel_list.yml
172
+ - lib/angel_list.rb
173
+ - lib/angel_list/auth.rb
174
+ - lib/angel_list/base.rb
175
+ - lib/angel_list/config.rb
176
+ - lib/angel_list/feed.rb
177
+ - lib/angel_list/follow.rb
178
+ - lib/angel_list/job.rb
179
+ - lib/angel_list/message.rb
180
+ - lib/angel_list/path.rb
181
+ - lib/angel_list/press.rb
182
+ - lib/angel_list/response.rb
183
+ - lib/angel_list/review.rb
184
+ - lib/angel_list/search.rb
185
+ - lib/angel_list/startup.rb
186
+ - lib/angel_list/startup_role.rb
187
+ - lib/angel_list/status_update.rb
188
+ - lib/angel_list/tag.rb
189
+ - lib/angel_list/tools.rb
190
+ - lib/angel_list/user.rb
191
+ - lib/angel_list/version.rb
192
+ homepage: ''
193
+ licenses: []
194
+ post_install_message:
195
+ rdoc_options: []
196
+ require_paths:
197
+ - lib
198
+ required_ruby_version: !ruby/object:Gem::Requirement
199
+ none: false
200
+ requirements:
201
+ - - ! '>='
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ required_rubygems_version: !ruby/object:Gem::Requirement
205
+ none: false
206
+ requirements:
207
+ - - ! '>='
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
210
+ requirements: []
211
+ rubyforge_project:
212
+ rubygems_version: 1.8.21
213
+ signing_key:
214
+ specification_version: 3
215
+ summary: wrapper for angel list
216
+ test_files: []