authentic_jobs 0.2.1 → 0.2.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/Rakefile +1 -1
- data/VERSION +1 -1
- data/authentic_jobs.gemspec +2 -2
- data/lib/authentic_jobs.rb +5 -0
- metadata +3 -3
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ begin
|
|
8
8
|
gem.summary = %Q{Ruby wrapper for the Authenic Jobs API}
|
9
9
|
gem.description = %Q{Ruby wrapper for the Authentic Jobs API}
|
10
10
|
gem.email = "wynn.netherland@gmail.com"
|
11
|
-
gem.homepage = "http://
|
11
|
+
gem.homepage = "http://wynnnetherland.com/projects/authentic_jobs/"
|
12
12
|
gem.authors = ["Wynn Netherland"]
|
13
13
|
|
14
14
|
gem.add_dependency('hashie', '~> 0.2.0')
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
data/authentic_jobs.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{authentic_jobs}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Wynn Netherland"]
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
37
37
|
"test/helper.rb",
|
38
38
|
"test/test_authentic_jobs.rb"
|
39
39
|
]
|
40
|
-
s.homepage = %q{http://
|
40
|
+
s.homepage = %q{http://wynnnetherland.com/projects/authentic_jobs/}
|
41
41
|
s.rdoc_options = ["--charset=UTF-8"]
|
42
42
|
s.require_paths = ["lib"]
|
43
43
|
s.rubygems_version = %q{1.3.6}
|
data/lib/authentic_jobs.rb
CHANGED
@@ -19,6 +19,11 @@ class AuthenticJobs
|
|
19
19
|
base_uri 'www.authenticjobs.com/api'
|
20
20
|
format :json
|
21
21
|
|
22
|
+
# API key for all requests
|
23
|
+
#
|
24
|
+
# @see http://www.authenticjobs.com/api/ Request your API key here
|
25
|
+
# @param [String] api_key your API key
|
26
|
+
# @return [String] API key
|
22
27
|
attr_accessor :api_key
|
23
28
|
|
24
29
|
def initialize(api_key)
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 2
|
9
|
+
version: 0.2.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Wynn Netherland
|
@@ -131,7 +131,7 @@ files:
|
|
131
131
|
- test/helper.rb
|
132
132
|
- test/test_authentic_jobs.rb
|
133
133
|
has_rdoc: true
|
134
|
-
homepage: http://
|
134
|
+
homepage: http://wynnnetherland.com/projects/authentic_jobs/
|
135
135
|
licenses: []
|
136
136
|
|
137
137
|
post_install_message:
|