houdini-rails 0.1.2 → 0.1.3
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/VERSION +1 -1
- data/houdini-rails.gemspec +4 -6
- data/{init.rb → rails/init.rb} +0 -0
- metadata +4 -6
- data/install.rb +0 -1
- data/uninstall.rb +0 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/houdini-rails.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{houdini-rails}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Chris Conley"]
|
|
12
|
-
s.date = %q{2010-08-
|
|
12
|
+
s.date = %q{2010-08-07}
|
|
13
13
|
s.description = %q{Rails plugin for interacting with the Houdini Mechanical Turk API}
|
|
14
14
|
s.email = %q{chris@chrisconley.me}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -24,12 +24,11 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
"app/controllers/houdini/postbacks_controller.rb",
|
|
25
25
|
"config/routes.rb",
|
|
26
26
|
"houdini-rails.gemspec",
|
|
27
|
-
"init.rb",
|
|
28
|
-
"install.rb",
|
|
29
27
|
"lib/houdini.rb",
|
|
30
28
|
"lib/houdini/base.rb",
|
|
31
29
|
"lib/houdini/model.rb",
|
|
32
30
|
"lib/houdini/task.rb",
|
|
31
|
+
"rails/init.rb",
|
|
33
32
|
"spec/controllers/houdini/postbacks_controller_spec.rb",
|
|
34
33
|
"spec/integration/postbacks_test.rb",
|
|
35
34
|
"spec/rails_app/README",
|
|
@@ -82,8 +81,7 @@ Gem::Specification.new do |s|
|
|
|
82
81
|
"spec/spec.opts",
|
|
83
82
|
"spec/spec_helper.rb",
|
|
84
83
|
"spec/test_helper.rb",
|
|
85
|
-
"tasks/houdini_tasks.rake"
|
|
86
|
-
"uninstall.rb"
|
|
84
|
+
"tasks/houdini_tasks.rake"
|
|
87
85
|
]
|
|
88
86
|
s.homepage = %q{http://github.com/chrisconley/houdini-rails}
|
|
89
87
|
s.rdoc_options = ["--charset=UTF-8"]
|
data/{init.rb → rails/init.rb}
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.1.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Chris Conley
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-08-
|
|
17
|
+
date: 2010-08-07 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -48,12 +48,11 @@ files:
|
|
|
48
48
|
- app/controllers/houdini/postbacks_controller.rb
|
|
49
49
|
- config/routes.rb
|
|
50
50
|
- houdini-rails.gemspec
|
|
51
|
-
- init.rb
|
|
52
|
-
- install.rb
|
|
53
51
|
- lib/houdini.rb
|
|
54
52
|
- lib/houdini/base.rb
|
|
55
53
|
- lib/houdini/model.rb
|
|
56
54
|
- lib/houdini/task.rb
|
|
55
|
+
- rails/init.rb
|
|
57
56
|
- spec/controllers/houdini/postbacks_controller_spec.rb
|
|
58
57
|
- spec/integration/postbacks_test.rb
|
|
59
58
|
- spec/rails_app/README
|
|
@@ -107,7 +106,6 @@ files:
|
|
|
107
106
|
- spec/spec_helper.rb
|
|
108
107
|
- spec/test_helper.rb
|
|
109
108
|
- tasks/houdini_tasks.rake
|
|
110
|
-
- uninstall.rb
|
|
111
109
|
has_rdoc: true
|
|
112
110
|
homepage: http://github.com/chrisconley/houdini-rails
|
|
113
111
|
licenses: []
|
data/install.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Install hook code here
|
data/uninstall.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Uninstall hook code here
|