caulfield 0.0.8 → 0.0.9
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/lib/caulfield.rb +1 -1
- data/lib/caulfield/version.rb +1 -1
- metadata +19 -38
data/lib/caulfield.rb
CHANGED
@@ -10,6 +10,6 @@ end
|
|
10
10
|
|
11
11
|
if defined?(Rails) && Rails.version >= '3.0.0'
|
12
12
|
ActiveSupport.on_load :before_initialize do
|
13
|
-
Rails.configuration.middleware.
|
13
|
+
Rails.configuration.middleware.insert_before ActionDispatch::Static, Caulfield::Middleware
|
14
14
|
end
|
15
15
|
end
|
data/lib/caulfield/version.rb
CHANGED
metadata
CHANGED
@@ -1,34 +1,24 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: caulfield
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 8
|
10
|
-
version: 0.0.8
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Chris Hanks
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2011-06-17 00:00:00 -07:00
|
12
|
+
date: 2011-09-01 00:00:00.000000000 -07:00
|
19
13
|
default_executable:
|
20
14
|
dependencies: []
|
21
|
-
|
22
15
|
description: A Rack middleware to aid in integration testing for Rails 3 and up.
|
23
|
-
email:
|
16
|
+
email:
|
24
17
|
- christopher.m.hanks@gmail.com
|
25
18
|
executables: []
|
26
|
-
|
27
19
|
extensions: []
|
28
|
-
|
29
20
|
extra_rdoc_files: []
|
30
|
-
|
31
|
-
files:
|
21
|
+
files:
|
32
22
|
- lib/caulfield/middleware.rb
|
33
23
|
- lib/caulfield/version.rb
|
34
24
|
- lib/caulfield.rb
|
@@ -39,38 +29,29 @@ files:
|
|
39
29
|
has_rdoc: true
|
40
30
|
homepage: http://github.com/chanks/caulfield
|
41
31
|
licenses: []
|
42
|
-
|
43
32
|
post_install_message:
|
44
33
|
rdoc_options: []
|
45
|
-
|
46
|
-
require_paths:
|
34
|
+
require_paths:
|
47
35
|
- lib
|
48
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
37
|
none: false
|
50
|
-
requirements:
|
51
|
-
- -
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
|
54
|
-
segments:
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
segments:
|
55
43
|
- 0
|
56
|
-
|
57
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
hash: -4030370451331215849
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
46
|
none: false
|
59
|
-
requirements:
|
60
|
-
- -
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
hash: 23
|
63
|
-
segments:
|
64
|
-
- 1
|
65
|
-
- 3
|
66
|
-
- 6
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
67
50
|
version: 1.3.6
|
68
51
|
requirements: []
|
69
|
-
|
70
52
|
rubyforge_project: caulfield
|
71
53
|
rubygems_version: 1.6.2
|
72
54
|
signing_key:
|
73
55
|
specification_version: 3
|
74
56
|
summary: A Rack middleware for Rails testing.
|
75
57
|
test_files: []
|
76
|
-
|