rturk 2.4.1 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,8 @@
1
+ 2.5.0
2
+ -----
3
+ * Updated endpoints to HTTPS. This change could break some installations behind firewalls, so
4
+ bumping with a minor release.
5
+
1
6
  2.3.5
2
7
  -----
3
8
  * Added GetQualificationRequests API call [hamin]
data/README.markdown CHANGED
@@ -6,7 +6,7 @@ RTurk is designed to fire off Mechanical Turk tasks for pages that reside on an
6
6
 
7
7
  The pages could be a part of a rails app, or just a simple javascript enabled form.
8
8
 
9
- If your integrating RTurk with a Rails app, do yourself a favor and check out [Turkee](http://github.com/aantix/turkee) by Jim Jones. It integrates your Rails forms with mechanical turk, and includes rake tasks to pull and process submissions. Definitely a time saver.
9
+ If you're integrating RTurk with a Rails app, do yourself a favor and check out [Turkee](http://github.com/aantix/turkee) by Jim Jones. It integrates your Rails forms with Mechanical Turk, and includes rake tasks to pull and process submissions. Definitely a time saver.
10
10
 
11
11
  ## Installation
12
12
 
data/lib/rturk.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  module RTurk
2
2
  require 'rturk/logger'
3
3
 
4
- SANDBOX = 'http://mechanicalturk.sandbox.amazonaws.com/'
5
- PRODUCTION = 'http://mechanicalturk.amazonaws.com/'
4
+ SANDBOX = 'https://mechanicalturk.sandbox.amazonaws.com/'
5
+ PRODUCTION = 'https://mechanicalturk.amazonaws.com/'
6
6
  API_VERSION = '2008-08-02'
7
7
  OLD_API_VERSION = '2006-05-05'
8
8
 
data/lib/rturk/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RTurk
2
- VERSION = "2.4.1"
2
+ VERSION = "2.5.0"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rturk
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
- - 4
9
- - 1
10
- version: 2.4.1
8
+ - 5
9
+ - 0
10
+ version: 2.5.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Mark Percival
@@ -18,7 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2011-06-03 00:00:00 -07:00
21
+ date: 2011-06-03 00:00:00 -04:00
22
22
  default_executable:
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency