resumator-client 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source "http://rubygems.org"
2
+ gem "faraday", ">= 0.8.4"
3
+ gem "hashie"
4
+
5
+ # Add dependencies to develop your gem here.
6
+ # Include everything needed to run rake, tests, features, etc.
7
+ group :development do
8
+ gem "rspec", ">= 2.8.0"
9
+ gem "rdoc", ">= 3.12"
10
+ gem "bundler", ">= 1.0.0"
11
+ gem "jeweler", ">= 1.8.4"
12
+ gem "simplecov", ">= 0"
13
+ gem "pry"
14
+ gem "vcr"
15
+ gem "webmock"
16
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Kurt Nelson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ #Resumator
2
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/kurtisnelson/resumator) [![Build Status](https://secure.travis-ci.org/kurtisnelson/resumator.png?branch=master)](http://travis-ci.org/kurtisnelson/resumator)
3
+ [Documentation](http://rubydoc.info/gems/resumator-client/)
4
+
5
+ Communicates with the resumator API
6
+
7
+ ##Usage
8
+
9
+ `gem install resumator-client`
10
+
11
+ ```ruby
12
+ client = Resumator::Client.new(APIKEY)
13
+ resp = client.jobs
14
+ puts resp[0].title
15
+ resp = client.jobs(id: resp[0].id)
16
+ ``
17
+
18
+ Any of the parameters listed in the [API docs](http://www.resumatorapi.com/v1/) should be supported.
19
+
20
+ ##Contributing to resumator
21
+
22
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
23
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
24
+ * Fork the project.
25
+ * Start a feature/bugfix branch.
26
+ * Commit and push until you are happy with your contribution.
27
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
28
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
29
+
30
+ If you want messages from Faraday, set DEBUG in your environment to true.
31
+
32
+ ##Copyright
33
+
34
+ Copyright (c) 2012 Kurt Nelson. See LICENSE.txt for
35
+ further details.
36
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "resumator-client"
18
+ gem.homepage = "http://github.com/kurtisnelson/resumator"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Access the resumator API}
21
+ gem.description = %Q{Use the RESTful API found at resumatorapi.com}
22
+ gem.email = "kurtisnelson@gmail.com"
23
+ gem.authors = ["Kurt Nelson"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "resumator #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1 @@
1
+ require_relative "resumator-client/client"
@@ -0,0 +1,79 @@
1
+ require 'faraday'
2
+ require 'json'
3
+ require 'hashie'
4
+
5
+ module Resumator
6
+ class Client
7
+ # Sets up a client
8
+ #
9
+ # @param [String] API key
10
+ def initialize(key)
11
+ raise "Missing API key" unless key and not key.empty?
12
+ @api_key = key
13
+ @connection = Faraday.new(url: "https://api.resumatorapi.com/v1/") do |faraday|
14
+ faraday.request :url_encoded # form-encode POST params
15
+ faraday.response :logger if ENV['DEBUG']
16
+ faraday.adapter Faraday.default_adapter # make requests with Net::HTTP
17
+ end
18
+ @connection.params['apikey'] = @api_key
19
+ end
20
+
21
+ # Get any rest accessible object
22
+ #
23
+ # @param [String] object name
24
+ # @param [Hash] optional search parameters
25
+ # @return [Mash] your data
26
+ def get(object, options = {})
27
+ if options[:id]
28
+ resp = @connection.get "#{object}/#{options[:id]}"
29
+ elsif options.size > 0
30
+ resp = @connection.get "#{object}#{Client.parse_options(options)}"
31
+ else
32
+ resp = @connection.get object
33
+ end
34
+ raise "Bad response: #{resp.status}" unless resp.status == 200
35
+ Client.mash(JSON.parse(resp.body))
36
+ end
37
+
38
+ def applicants(options = {})
39
+ get("applicants", options)
40
+ end
41
+
42
+ def jobs(options = {})
43
+ get("jobs", options)
44
+ end
45
+
46
+ def activities(options = {})
47
+ get("activities", options)
48
+ end
49
+
50
+ def contents(options = {})
51
+ get("contents", options)
52
+ end
53
+
54
+ def users(options = {})
55
+ get("users", options)
56
+ end
57
+
58
+ def tasks(options = {})
59
+ get("tasks", options)
60
+ end
61
+
62
+ private
63
+ def self.mash(response)
64
+ if response.is_a? Array
65
+ return response.map{|o| Hashie::Mash.new(o)}
66
+ else
67
+ return Hashie::Mash.new(response)
68
+ end
69
+ end
70
+
71
+ def self.parse_options(options = {})
72
+ out = ""
73
+ for k, v in options do
74
+ out << "/#{k}/#{v}"
75
+ end
76
+ out
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,81 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "resumator-client"
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Kurt Nelson"]
12
+ s.date = "2012-10-30"
13
+ s.description = "Use the RESTful API found at resumatorapi.com"
14
+ s.email = "kurtisnelson@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ ".travis.yml",
23
+ "Gemfile",
24
+ "LICENSE.txt",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/resumator-client.rb",
29
+ "lib/resumator-client/client.rb",
30
+ "resumator-client.gemspec",
31
+ "spec/fixtures/vcr_cassettes/request.yml",
32
+ "spec/request/resumator_client_spec.rb",
33
+ "spec/spec_helper.rb",
34
+ "spec/unit/client_spec.rb"
35
+ ]
36
+ s.homepage = "http://github.com/kurtisnelson/resumator"
37
+ s.licenses = ["MIT"]
38
+ s.require_paths = ["lib"]
39
+ s.rubygems_version = "1.8.24"
40
+ s.summary = "Access the resumator API"
41
+
42
+ if s.respond_to? :specification_version then
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_runtime_dependency(%q<faraday>, [">= 0.8.4"])
47
+ s.add_runtime_dependency(%q<hashie>, [">= 0"])
48
+ s.add_development_dependency(%q<rspec>, [">= 2.8.0"])
49
+ s.add_development_dependency(%q<rdoc>, [">= 3.12"])
50
+ s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
51
+ s.add_development_dependency(%q<jeweler>, [">= 1.8.4"])
52
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
53
+ s.add_development_dependency(%q<pry>, [">= 0"])
54
+ s.add_development_dependency(%q<vcr>, [">= 0"])
55
+ s.add_development_dependency(%q<webmock>, [">= 0"])
56
+ else
57
+ s.add_dependency(%q<faraday>, [">= 0.8.4"])
58
+ s.add_dependency(%q<hashie>, [">= 0"])
59
+ s.add_dependency(%q<rspec>, [">= 2.8.0"])
60
+ s.add_dependency(%q<rdoc>, [">= 3.12"])
61
+ s.add_dependency(%q<bundler>, [">= 1.0.0"])
62
+ s.add_dependency(%q<jeweler>, [">= 1.8.4"])
63
+ s.add_dependency(%q<simplecov>, [">= 0"])
64
+ s.add_dependency(%q<pry>, [">= 0"])
65
+ s.add_dependency(%q<vcr>, [">= 0"])
66
+ s.add_dependency(%q<webmock>, [">= 0"])
67
+ end
68
+ else
69
+ s.add_dependency(%q<faraday>, [">= 0.8.4"])
70
+ s.add_dependency(%q<hashie>, [">= 0"])
71
+ s.add_dependency(%q<rspec>, [">= 2.8.0"])
72
+ s.add_dependency(%q<rdoc>, [">= 3.12"])
73
+ s.add_dependency(%q<bundler>, [">= 1.0.0"])
74
+ s.add_dependency(%q<jeweler>, [">= 1.8.4"])
75
+ s.add_dependency(%q<simplecov>, [">= 0"])
76
+ s.add_dependency(%q<pry>, [">= 0"])
77
+ s.add_dependency(%q<vcr>, [">= 0"])
78
+ s.add_dependency(%q<webmock>, [">= 0"])
79
+ end
80
+ end
81
+
@@ -0,0 +1,124 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.resumatorapi.com/v1/jobs?apikey=BxO624TAeatcdZfsugE45vNtiMpW28vJ
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - ! '*/*'
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Access-Control-Allow-Origin:
22
+ - ! '*'
23
+ Content-Type:
24
+ - application/json
25
+ Date:
26
+ - Tue, 30 Oct 2012 16:13:36 GMT
27
+ Server:
28
+ - nginx/1.0.15
29
+ X-Powered-By:
30
+ - PHP/5.3.3
31
+ Content-Length:
32
+ - '401'
33
+ Connection:
34
+ - keep-alive
35
+ body:
36
+ encoding: US-ASCII
37
+ string: ! '{"id":"job_20121030151055_ZK0WBF7NK8WXCWLA","team_id":"team_20121030153324_OY9P9H4Y3WSMSIIW","title":"Sample
38
+ Job","country_id":"C1","city":"Pittsburgh","state":"PA","zip":"O5212","minimum_salary":"C0000","maximum_salary":"C5000","notes":"I
39
+ like turtles.","original_open_date":"D012-10-30","status":"O","send_to_job_boards":"N","hiring_lead":"usr_20121030151055_TNAW6JCZNH0SYEHE","board_code":"qugheP"}'
40
+ http_version:
41
+ recorded_at: Tue, 30 Oct 2012 16:13:48 GMT
42
+ - request:
43
+ method: get
44
+ uri: https://api.resumatorapi.com/v1/jobs/job_20121030151055_ZK0WBF7NK8WXCWLA?apikey=BxO624TAeatcdZfsugE45vNtiMpW28vJ
45
+ body:
46
+ encoding: US-ASCII
47
+ string: ''
48
+ headers:
49
+ Accept-Encoding:
50
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
51
+ Accept:
52
+ - ! '*/*'
53
+ User-Agent:
54
+ - Ruby
55
+ response:
56
+ status:
57
+ code: 200
58
+ message: OK
59
+ headers:
60
+ Access-Control-Allow-Origin:
61
+ - ! '*'
62
+ Content-Type:
63
+ - application/json
64
+ Date:
65
+ - Tue, 30 Oct 2012 16:13:36 GMT
66
+ Server:
67
+ - nginx/1.0.15
68
+ X-Powered-By:
69
+ - PHP/5.3.3
70
+ Content-Length:
71
+ - '778'
72
+ Connection:
73
+ - keep-alive
74
+ body:
75
+ encoding: US-ASCII
76
+ string: ! '{"id":"job_20121030151055_ZK0WBF7NK8WXCWLA","team_id":"team_20121030153324_OY9P9H4Y3WSMSIIW","title":"Sample
77
+ Job","country_id":"United States","city":"Pittsburgh","state":"PA","zip":"15212","description":"<p>\r\nYou
78
+ can enter a detailed, formatted description of your position.<\/p>\r\n<p>\r\nWe
79
+ have a fully featured WYSIWYG editor which enables you to craft that perfectly
80
+ formatted bulleted list. So go get that new candidate!<\/p>\r\n","minimum_salary":"60000","maximum_salary":"65000","notes":"I
81
+ like turtles.","original_open_date":"2012-10-30","status":"On Hold","send_to_job_boards":"No
82
+ answer","hiring_lead":"usr_20121030151055_TNAW6JCZNH0SYEHE","board_code":"qugheP","job_applicants":{"prospect_id":"prospect_20121030151055_BKTQHUTGXV4FGQVS","apply_date":"2012-10-30"}}'
83
+ http_version:
84
+ recorded_at: Tue, 30 Oct 2012 16:13:48 GMT
85
+ - request:
86
+ method: get
87
+ uri: https://api.resumatorapi.com/v1/jobs/city/Pittsburgh?apikey=BxO624TAeatcdZfsugE45vNtiMpW28vJ
88
+ body:
89
+ encoding: US-ASCII
90
+ string: ''
91
+ headers:
92
+ Accept-Encoding:
93
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
94
+ Accept:
95
+ - ! '*/*'
96
+ User-Agent:
97
+ - Ruby
98
+ response:
99
+ status:
100
+ code: 200
101
+ message: OK
102
+ headers:
103
+ Access-Control-Allow-Origin:
104
+ - ! '*'
105
+ Content-Type:
106
+ - application/json
107
+ Date:
108
+ - Tue, 30 Oct 2012 16:13:36 GMT
109
+ Server:
110
+ - nginx/1.0.15
111
+ X-Powered-By:
112
+ - PHP/5.3.3
113
+ Content-Length:
114
+ - '401'
115
+ Connection:
116
+ - keep-alive
117
+ body:
118
+ encoding: US-ASCII
119
+ string: ! '{"id":"job_20121030151055_ZK0WBF7NK8WXCWLA","team_id":"team_20121030153324_OY9P9H4Y3WSMSIIW","title":"Sample
120
+ Job","country_id":"C1","city":"Pittsburgh","state":"PA","zip":"O5212","minimum_salary":"C0000","maximum_salary":"C5000","notes":"I
121
+ like turtles.","original_open_date":"D012-10-30","status":"O","send_to_job_boards":"N","hiring_lead":"usr_20121030151055_TNAW6JCZNH0SYEHE","board_code":"qugheP"}'
122
+ http_version:
123
+ recorded_at: Tue, 30 Oct 2012 16:13:48 GMT
124
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,37 @@
1
+ require_relative '../spec_helper'
2
+ describe Resumator::Client do
3
+ before :all do
4
+ VCR.insert_cassette "request"
5
+ end
6
+ after :all do
7
+ VCR.eject_cassette
8
+ end
9
+
10
+ it "is initialized with an API key" do
11
+ client = Resumator::Client.new(ENV['RESUMATOR_TEST_KEY'])
12
+ end
13
+
14
+ specify{ expect {client = Resumator::Client.new("")}.to raise_error}
15
+
16
+ context "valid client" do
17
+ let(:client) {Resumator::Client.new(ENV['RESUMATOR_TEST_KEY'])}
18
+
19
+ describe "#get" do
20
+ it "gets objects" do
21
+ data = client.get "jobs"
22
+ data.count.should > 1
23
+ end
24
+
25
+ it "gets specific job" do
26
+ ID = "job_20121030151055_ZK0WBF7NK8WXCWLA"
27
+ data = client.get "jobs", {id: ID}
28
+ data.id.should eq ID
29
+ end
30
+
31
+ it "searches by options" do
32
+ data = client.get "jobs", {city: "Pittsburgh"}
33
+ data.city.should eq "Pittsburgh"
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,20 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+ require 'pry'
6
+ require 'rspec'
7
+ require 'resumator-client'
8
+ require 'vcr'
9
+
10
+ # Requires supporting files with custom matchers and macros, etc,
11
+ # in ./support/ and its subdirectories.
12
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
13
+ ENV['RESUMATOR_TEST_KEY'] = "BxO624TAeatcdZfsugE45vNtiMpW28vJ" unless ENV['RESUMATOR_TEST_KEY']
14
+ VCR.configure do |c|
15
+ c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
16
+ c.hook_into :webmock # or :fakeweb
17
+ end
18
+ RSpec.configure do |config|
19
+
20
+ end
@@ -0,0 +1,22 @@
1
+ require_relative "../spec_helper"
2
+
3
+ describe Resumator::Client do
4
+ it "parses an options hash" do
5
+ options = {city: "Atlanta", state: "GA"}
6
+ Resumator::Client.parse_options(options).should eq("/city/Atlanta/state/GA")
7
+ end
8
+
9
+ it "turns a single hash into a mash" do
10
+ data = {id: 1, name: "Bob"}
11
+ mash = Resumator::Client.mash(data)
12
+ mash.id.should eq 1
13
+ mash.name.should eq "Bob"
14
+ end
15
+
16
+ it "turns an array of hashes into a mash array" do
17
+ data = [{id: 1, name: "Bob"}, {id: 2, name: "Alice"}]
18
+ mash = Resumator::Client.mash(data)
19
+ mash[0].id.should eq 1
20
+ mash[1].id.should eq 2
21
+ end
22
+ end
metadata ADDED
@@ -0,0 +1,225 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resumator-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kurt Nelson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: faraday
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.8.4
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.8.4
30
+ - !ruby/object:Gem::Dependency
31
+ name: hashie
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: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: 2.8.0
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 2.8.0
62
+ - !ruby/object:Gem::Dependency
63
+ name: rdoc
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '3.12'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '3.12'
78
+ - !ruby/object:Gem::Dependency
79
+ name: bundler
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: 1.0.0
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: 1.0.0
94
+ - !ruby/object:Gem::Dependency
95
+ name: jeweler
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: 1.8.4
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: 1.8.4
110
+ - !ruby/object:Gem::Dependency
111
+ name: simplecov
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
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: pry
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
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: vcr
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
+ - !ruby/object:Gem::Dependency
159
+ name: webmock
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ description: Use the RESTful API found at resumatorapi.com
175
+ email: kurtisnelson@gmail.com
176
+ executables: []
177
+ extensions: []
178
+ extra_rdoc_files:
179
+ - LICENSE.txt
180
+ - README.md
181
+ files:
182
+ - .document
183
+ - .rspec
184
+ - .travis.yml
185
+ - Gemfile
186
+ - LICENSE.txt
187
+ - README.md
188
+ - Rakefile
189
+ - VERSION
190
+ - lib/resumator-client.rb
191
+ - lib/resumator-client/client.rb
192
+ - resumator-client.gemspec
193
+ - spec/fixtures/vcr_cassettes/request.yml
194
+ - spec/request/resumator_client_spec.rb
195
+ - spec/spec_helper.rb
196
+ - spec/unit/client_spec.rb
197
+ homepage: http://github.com/kurtisnelson/resumator
198
+ licenses:
199
+ - MIT
200
+ post_install_message:
201
+ rdoc_options: []
202
+ require_paths:
203
+ - lib
204
+ required_ruby_version: !ruby/object:Gem::Requirement
205
+ none: false
206
+ requirements:
207
+ - - ! '>='
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
210
+ segments:
211
+ - 0
212
+ hash: 3930389205690378076
213
+ required_rubygems_version: !ruby/object:Gem::Requirement
214
+ none: false
215
+ requirements:
216
+ - - ! '>='
217
+ - !ruby/object:Gem::Version
218
+ version: '0'
219
+ requirements: []
220
+ rubyforge_project:
221
+ rubygems_version: 1.8.24
222
+ signing_key:
223
+ specification_version: 3
224
+ summary: Access the resumator API
225
+ test_files: []