hassox-pancake 0.1.6
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/LICENSE +20 -0
- data/README.textile +95 -0
- data/Rakefile +56 -0
- data/TODO +18 -0
- data/bin/jeweler +19 -0
- data/bin/pancake-gen +17 -0
- data/bin/rubyforge +19 -0
- data/lib/pancake.rb +48 -0
- data/lib/pancake/bootloaders.rb +180 -0
- data/lib/pancake/configuration.rb +140 -0
- data/lib/pancake/core_ext/class.rb +44 -0
- data/lib/pancake/core_ext/object.rb +22 -0
- data/lib/pancake/core_ext/symbol.rb +15 -0
- data/lib/pancake/errors.rb +61 -0
- data/lib/pancake/generators.rb +8 -0
- data/lib/pancake/generators/base.rb +12 -0
- data/lib/pancake/generators/flat_generator.rb +17 -0
- data/lib/pancake/generators/short_generator.rb +17 -0
- data/lib/pancake/generators/stack_generator.rb +17 -0
- data/lib/pancake/generators/templates/common/dotgitignore +22 -0
- data/lib/pancake/generators/templates/common/dothtaccess +17 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/%stack_name%.rb.tt +8 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/.gitignore +21 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/config.ru.tt +12 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/pancake.init.tt +1 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/public/.empty_directory +0 -0
- data/lib/pancake/generators/templates/flat/%stack_name%/tmp/.empty_directory +0 -0
- data/lib/pancake/generators/templates/short/%stack_name%/.gitignore +21 -0
- data/lib/pancake/generators/templates/short/%stack_name%/LICENSE.tt +20 -0
- data/lib/pancake/generators/templates/short/%stack_name%/README.tt +7 -0
- data/lib/pancake/generators/templates/short/%stack_name%/Rakefile.tt +48 -0
- data/lib/pancake/generators/templates/short/%stack_name%/VERSION.tt +1 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%.rb.tt +5 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/%stack_name%.rb.tt +6 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/config.ru.tt +12 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/gems/cache/.empty_directory +0 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/mounts/.empty_directory +0 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/public/.empty_directory +0 -0
- data/lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/tmp/.empty_directory +0 -0
- data/lib/pancake/generators/templates/short/%stack_name%/pancake.init.tt +1 -0
- data/lib/pancake/generators/templates/short/%stack_name%/spec/%stack_name%_spec.rb.tt +7 -0
- data/lib/pancake/generators/templates/short/%stack_name%/spec/spec_helper.rb.tt +9 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/.gitignore +21 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/LICENSE.tt +20 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/README.tt +7 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/Rakefile.tt +48 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/VERSION.tt +1 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%.rb.tt +3 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config.ru.tt +12 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/environments/development.rb.tt +18 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/environments/production.rb.tt +18 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/router.rb.tt +6 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/gems/cache/.empty_directory +0 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/mounts/.empty_directory +0 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/public/.empty_directory +0 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/tmp/.empty_directory +0 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/pancake.init.tt +1 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/spec/%stack_name%_spec.rb.tt +7 -0
- data/lib/pancake/generators/templates/stack/%stack_name%/spec/spec_helper.rb.tt +9 -0
- data/lib/pancake/hooks/inheritable_inner_classes.rb +60 -0
- data/lib/pancake/hooks/on_inherit.rb +34 -0
- data/lib/pancake/master.rb +87 -0
- data/lib/pancake/middleware.rb +354 -0
- data/lib/pancake/mime_types.rb +265 -0
- data/lib/pancake/mixins/publish.rb +125 -0
- data/lib/pancake/mixins/publish/action_options.rb +104 -0
- data/lib/pancake/mixins/render.rb +61 -0
- data/lib/pancake/mixins/request_helper.rb +92 -0
- data/lib/pancake/mixins/stack_helper.rb +44 -0
- data/lib/pancake/mixins/url.rb +10 -0
- data/lib/pancake/more/controller.rb +4 -0
- data/lib/pancake/more/controller/base.rb +34 -0
- data/lib/pancake/paths.rb +218 -0
- data/lib/pancake/router.rb +99 -0
- data/lib/pancake/stack/app.rb +10 -0
- data/lib/pancake/stack/bootloader.rb +79 -0
- data/lib/pancake/stack/configuration.rb +44 -0
- data/lib/pancake/stack/middleware.rb +0 -0
- data/lib/pancake/stack/router.rb +18 -0
- data/lib/pancake/stack/stack.rb +57 -0
- data/lib/pancake/stacks/short.rb +2 -0
- data/lib/pancake/stacks/short/controller.rb +105 -0
- data/lib/pancake/stacks/short/stack.rb +194 -0
- data/spec/helpers/helpers.rb +20 -0
- data/spec/helpers/matchers.rb +25 -0
- data/spec/pancake/bootloaders_spec.rb +109 -0
- data/spec/pancake/configuration_spec.rb +177 -0
- data/spec/pancake/fixtures/foo_stack/pancake.init +0 -0
- data/spec/pancake/fixtures/paths/controllers/controller1.rb +0 -0
- data/spec/pancake/fixtures/paths/controllers/controller2.rb +0 -0
- data/spec/pancake/fixtures/paths/controllers/controller3.rb +0 -0
- data/spec/pancake/fixtures/paths/models/model1.rb +0 -0
- data/spec/pancake/fixtures/paths/models/model2.rb +0 -0
- data/spec/pancake/fixtures/paths/models/model3.rb +0 -0
- data/spec/pancake/fixtures/paths/stack/controllers/controller1.rb +0 -0
- data/spec/pancake/fixtures/paths/stack/models/model3.rb +0 -0
- data/spec/pancake/fixtures/paths/stack/views/view1.erb +0 -0
- data/spec/pancake/fixtures/paths/stack/views/view1.rb +0 -0
- data/spec/pancake/fixtures/paths/stack/views/view2.erb +0 -0
- data/spec/pancake/fixtures/paths/stack/views/view2.haml +0 -0
- data/spec/pancake/fixtures/render_templates/context_template.html.erb +1 -0
- data/spec/pancake/fixtures/render_templates/erb_template.html.erb +1 -0
- data/spec/pancake/fixtures/render_templates/erb_template.json.erb +1 -0
- data/spec/pancake/fixtures/render_templates/haml_template.html.haml +1 -0
- data/spec/pancake/fixtures/render_templates/haml_template.xml.haml +1 -0
- data/spec/pancake/hooks/on_inherit_spec.rb +65 -0
- data/spec/pancake/inheritance_spec.rb +100 -0
- data/spec/pancake/middleware_spec.rb +401 -0
- data/spec/pancake/mime_types_spec.rb +234 -0
- data/spec/pancake/mixins/publish_spec.rb +94 -0
- data/spec/pancake/mixins/render_spec.rb +55 -0
- data/spec/pancake/mixins/stack_helper_spec.rb +46 -0
- data/spec/pancake/pancake_spec.rb +31 -0
- data/spec/pancake/paths_spec.rb +210 -0
- data/spec/pancake/stack/app_spec.rb +28 -0
- data/spec/pancake/stack/bootloader_spec.rb +41 -0
- data/spec/pancake/stack/middleware_spec.rb +0 -0
- data/spec/pancake/stack/router_spec.rb +266 -0
- data/spec/pancake/stack/stack_configuration_spec.rb +101 -0
- data/spec/pancake/stack/stack_spec.rb +55 -0
- data/spec/pancake/stacks/short/controller_spec.rb +287 -0
- data/spec/pancake/stacks/short/router_spec.rb +132 -0
- data/spec/pancake/stacks/short/stack_spec.rb +40 -0
- data/spec/spec_helper.rb +21 -0
- metadata +238 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
2
|
+
|
|
3
|
+
describe Pancake::Stacks::Short do
|
|
4
|
+
|
|
5
|
+
before do
|
|
6
|
+
$captures = []
|
|
7
|
+
class ::ShortMiddle
|
|
8
|
+
def initialize(app)
|
|
9
|
+
@app = app
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def call(env)
|
|
13
|
+
$captures << ShortMiddle
|
|
14
|
+
@app.call(env)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
class ::ShortFoo < Pancake::Stacks::Short
|
|
19
|
+
roots << Pancake.get_root(__FILE__)
|
|
20
|
+
use ShortMiddle
|
|
21
|
+
|
|
22
|
+
get "/foo" do
|
|
23
|
+
"HERE"
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
after do
|
|
29
|
+
clear_constants :ShortFoo, :ShortMiddle
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def app
|
|
33
|
+
ShortFoo.stackup
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
it "should go through the middleware to get to the actions" do
|
|
37
|
+
get "/foo"
|
|
38
|
+
$captures.should == [ShortMiddle]
|
|
39
|
+
end
|
|
40
|
+
end
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
$TESTING=true
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'date'
|
|
4
|
+
require 'rack'
|
|
5
|
+
require 'rack/test'
|
|
6
|
+
require 'spec/rake/spectask'
|
|
7
|
+
require 'spec'
|
|
8
|
+
require 'haml'
|
|
9
|
+
require 'json'
|
|
10
|
+
|
|
11
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
12
|
+
require 'pancake'
|
|
13
|
+
|
|
14
|
+
Dir[File.join(File.dirname(__FILE__), "helpers", "**/*.rb")].each{|f| require f}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Spec::Runner.configure do |config|
|
|
18
|
+
config.include(Pancake::Matchers)
|
|
19
|
+
config.include(Pancake::Spec::Helpers)
|
|
20
|
+
config.include(Rack::Test::Methods)
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hassox-pancake
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.6
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Daniel Neighman
|
|
8
|
+
autorequire: pancake
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-09-19 00:00:00 -07:00
|
|
13
|
+
default_executable: pancake-gen
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rspec
|
|
17
|
+
type: :development
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: usher
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.5.5
|
|
34
|
+
version:
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: mynyml-rack-accept-media-types
|
|
37
|
+
type: :runtime
|
|
38
|
+
version_requirement:
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: "0"
|
|
44
|
+
version:
|
|
45
|
+
description: Eat Pancake Stacks for Breakfast
|
|
46
|
+
email: has.sox@gmail.com
|
|
47
|
+
executables:
|
|
48
|
+
- pancake-gen
|
|
49
|
+
extensions: []
|
|
50
|
+
|
|
51
|
+
extra_rdoc_files:
|
|
52
|
+
- LICENSE
|
|
53
|
+
- README.textile
|
|
54
|
+
files:
|
|
55
|
+
- LICENSE
|
|
56
|
+
- README.textile
|
|
57
|
+
- Rakefile
|
|
58
|
+
- TODO
|
|
59
|
+
- bin/jeweler
|
|
60
|
+
- bin/pancake-gen
|
|
61
|
+
- bin/rubyforge
|
|
62
|
+
- lib/pancake.rb
|
|
63
|
+
- lib/pancake/bootloaders.rb
|
|
64
|
+
- lib/pancake/configuration.rb
|
|
65
|
+
- lib/pancake/core_ext/class.rb
|
|
66
|
+
- lib/pancake/core_ext/object.rb
|
|
67
|
+
- lib/pancake/core_ext/symbol.rb
|
|
68
|
+
- lib/pancake/errors.rb
|
|
69
|
+
- lib/pancake/generators.rb
|
|
70
|
+
- lib/pancake/generators/base.rb
|
|
71
|
+
- lib/pancake/generators/flat_generator.rb
|
|
72
|
+
- lib/pancake/generators/short_generator.rb
|
|
73
|
+
- lib/pancake/generators/stack_generator.rb
|
|
74
|
+
- lib/pancake/generators/templates/common/dotgitignore
|
|
75
|
+
- lib/pancake/generators/templates/common/dothtaccess
|
|
76
|
+
- lib/pancake/generators/templates/flat/%stack_name%/%stack_name%.rb.tt
|
|
77
|
+
- lib/pancake/generators/templates/flat/%stack_name%/.gitignore
|
|
78
|
+
- lib/pancake/generators/templates/flat/%stack_name%/config.ru.tt
|
|
79
|
+
- lib/pancake/generators/templates/flat/%stack_name%/pancake.init.tt
|
|
80
|
+
- lib/pancake/generators/templates/flat/%stack_name%/public/.empty_directory
|
|
81
|
+
- lib/pancake/generators/templates/flat/%stack_name%/tmp/.empty_directory
|
|
82
|
+
- lib/pancake/generators/templates/short/%stack_name%/.gitignore
|
|
83
|
+
- lib/pancake/generators/templates/short/%stack_name%/LICENSE.tt
|
|
84
|
+
- lib/pancake/generators/templates/short/%stack_name%/README.tt
|
|
85
|
+
- lib/pancake/generators/templates/short/%stack_name%/Rakefile.tt
|
|
86
|
+
- lib/pancake/generators/templates/short/%stack_name%/VERSION.tt
|
|
87
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%.rb.tt
|
|
88
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/%stack_name%.rb.tt
|
|
89
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/config.ru.tt
|
|
90
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/gems/cache/.empty_directory
|
|
91
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/mounts/.empty_directory
|
|
92
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/public/.empty_directory
|
|
93
|
+
- lib/pancake/generators/templates/short/%stack_name%/lib/%stack_name%/tmp/.empty_directory
|
|
94
|
+
- lib/pancake/generators/templates/short/%stack_name%/pancake.init.tt
|
|
95
|
+
- lib/pancake/generators/templates/short/%stack_name%/spec/%stack_name%_spec.rb.tt
|
|
96
|
+
- lib/pancake/generators/templates/short/%stack_name%/spec/spec_helper.rb.tt
|
|
97
|
+
- lib/pancake/generators/templates/stack/%stack_name%/.gitignore
|
|
98
|
+
- lib/pancake/generators/templates/stack/%stack_name%/LICENSE.tt
|
|
99
|
+
- lib/pancake/generators/templates/stack/%stack_name%/README.tt
|
|
100
|
+
- lib/pancake/generators/templates/stack/%stack_name%/Rakefile.tt
|
|
101
|
+
- lib/pancake/generators/templates/stack/%stack_name%/VERSION.tt
|
|
102
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%.rb.tt
|
|
103
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config.ru.tt
|
|
104
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/environments/development.rb.tt
|
|
105
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/environments/production.rb.tt
|
|
106
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/config/router.rb.tt
|
|
107
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/gems/cache/.empty_directory
|
|
108
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/mounts/.empty_directory
|
|
109
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/public/.empty_directory
|
|
110
|
+
- lib/pancake/generators/templates/stack/%stack_name%/lib/%stack_name%/tmp/.empty_directory
|
|
111
|
+
- lib/pancake/generators/templates/stack/%stack_name%/pancake.init.tt
|
|
112
|
+
- lib/pancake/generators/templates/stack/%stack_name%/spec/%stack_name%_spec.rb.tt
|
|
113
|
+
- lib/pancake/generators/templates/stack/%stack_name%/spec/spec_helper.rb.tt
|
|
114
|
+
- lib/pancake/hooks/inheritable_inner_classes.rb
|
|
115
|
+
- lib/pancake/hooks/on_inherit.rb
|
|
116
|
+
- lib/pancake/master.rb
|
|
117
|
+
- lib/pancake/middleware.rb
|
|
118
|
+
- lib/pancake/mime_types.rb
|
|
119
|
+
- lib/pancake/mixins/publish.rb
|
|
120
|
+
- lib/pancake/mixins/publish/action_options.rb
|
|
121
|
+
- lib/pancake/mixins/render.rb
|
|
122
|
+
- lib/pancake/mixins/request_helper.rb
|
|
123
|
+
- lib/pancake/mixins/stack_helper.rb
|
|
124
|
+
- lib/pancake/mixins/url.rb
|
|
125
|
+
- lib/pancake/more/controller.rb
|
|
126
|
+
- lib/pancake/more/controller/base.rb
|
|
127
|
+
- lib/pancake/paths.rb
|
|
128
|
+
- lib/pancake/router.rb
|
|
129
|
+
- lib/pancake/stack/app.rb
|
|
130
|
+
- lib/pancake/stack/bootloader.rb
|
|
131
|
+
- lib/pancake/stack/configuration.rb
|
|
132
|
+
- lib/pancake/stack/middleware.rb
|
|
133
|
+
- lib/pancake/stack/router.rb
|
|
134
|
+
- lib/pancake/stack/stack.rb
|
|
135
|
+
- lib/pancake/stacks/short.rb
|
|
136
|
+
- lib/pancake/stacks/short/controller.rb
|
|
137
|
+
- lib/pancake/stacks/short/stack.rb
|
|
138
|
+
- spec/helpers/helpers.rb
|
|
139
|
+
- spec/helpers/matchers.rb
|
|
140
|
+
- spec/pancake/bootloaders_spec.rb
|
|
141
|
+
- spec/pancake/configuration_spec.rb
|
|
142
|
+
- spec/pancake/fixtures/foo_stack/pancake.init
|
|
143
|
+
- spec/pancake/fixtures/paths/controllers/controller1.rb
|
|
144
|
+
- spec/pancake/fixtures/paths/controllers/controller2.rb
|
|
145
|
+
- spec/pancake/fixtures/paths/controllers/controller3.rb
|
|
146
|
+
- spec/pancake/fixtures/paths/models/model1.rb
|
|
147
|
+
- spec/pancake/fixtures/paths/models/model2.rb
|
|
148
|
+
- spec/pancake/fixtures/paths/models/model3.rb
|
|
149
|
+
- spec/pancake/fixtures/paths/stack/controllers/controller1.rb
|
|
150
|
+
- spec/pancake/fixtures/paths/stack/models/model3.rb
|
|
151
|
+
- spec/pancake/fixtures/paths/stack/views/view1.erb
|
|
152
|
+
- spec/pancake/fixtures/paths/stack/views/view1.rb
|
|
153
|
+
- spec/pancake/fixtures/paths/stack/views/view2.erb
|
|
154
|
+
- spec/pancake/fixtures/paths/stack/views/view2.haml
|
|
155
|
+
- spec/pancake/fixtures/render_templates/context_template.html.erb
|
|
156
|
+
- spec/pancake/fixtures/render_templates/erb_template.html.erb
|
|
157
|
+
- spec/pancake/fixtures/render_templates/erb_template.json.erb
|
|
158
|
+
- spec/pancake/fixtures/render_templates/haml_template.html.haml
|
|
159
|
+
- spec/pancake/fixtures/render_templates/haml_template.xml.haml
|
|
160
|
+
- spec/pancake/hooks/on_inherit_spec.rb
|
|
161
|
+
- spec/pancake/inheritance_spec.rb
|
|
162
|
+
- spec/pancake/middleware_spec.rb
|
|
163
|
+
- spec/pancake/mime_types_spec.rb
|
|
164
|
+
- spec/pancake/mixins/publish_spec.rb
|
|
165
|
+
- spec/pancake/mixins/render_spec.rb
|
|
166
|
+
- spec/pancake/mixins/stack_helper_spec.rb
|
|
167
|
+
- spec/pancake/pancake_spec.rb
|
|
168
|
+
- spec/pancake/paths_spec.rb
|
|
169
|
+
- spec/pancake/stack/app_spec.rb
|
|
170
|
+
- spec/pancake/stack/bootloader_spec.rb
|
|
171
|
+
- spec/pancake/stack/middleware_spec.rb
|
|
172
|
+
- spec/pancake/stack/router_spec.rb
|
|
173
|
+
- spec/pancake/stack/stack_configuration_spec.rb
|
|
174
|
+
- spec/pancake/stack/stack_spec.rb
|
|
175
|
+
- spec/pancake/stacks/short/controller_spec.rb
|
|
176
|
+
- spec/pancake/stacks/short/router_spec.rb
|
|
177
|
+
- spec/pancake/stacks/short/stack_spec.rb
|
|
178
|
+
- spec/spec_helper.rb
|
|
179
|
+
has_rdoc: false
|
|
180
|
+
homepage: http://github.com/hassox/pancake
|
|
181
|
+
licenses:
|
|
182
|
+
post_install_message:
|
|
183
|
+
rdoc_options:
|
|
184
|
+
- --charset=UTF-8
|
|
185
|
+
require_paths:
|
|
186
|
+
- lib
|
|
187
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
188
|
+
requirements:
|
|
189
|
+
- - ">="
|
|
190
|
+
- !ruby/object:Gem::Version
|
|
191
|
+
version: "0"
|
|
192
|
+
version:
|
|
193
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
|
+
requirements:
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: "0"
|
|
198
|
+
version:
|
|
199
|
+
requirements: []
|
|
200
|
+
|
|
201
|
+
rubyforge_project:
|
|
202
|
+
rubygems_version: 1.3.5
|
|
203
|
+
signing_key:
|
|
204
|
+
specification_version: 3
|
|
205
|
+
summary: Eat Pancake Stacks for Breakfast
|
|
206
|
+
test_files:
|
|
207
|
+
- spec/helpers/helpers.rb
|
|
208
|
+
- spec/helpers/matchers.rb
|
|
209
|
+
- spec/pancake/bootloaders_spec.rb
|
|
210
|
+
- spec/pancake/configuration_spec.rb
|
|
211
|
+
- spec/pancake/fixtures/paths/controllers/controller1.rb
|
|
212
|
+
- spec/pancake/fixtures/paths/controllers/controller2.rb
|
|
213
|
+
- spec/pancake/fixtures/paths/controllers/controller3.rb
|
|
214
|
+
- spec/pancake/fixtures/paths/models/model1.rb
|
|
215
|
+
- spec/pancake/fixtures/paths/models/model2.rb
|
|
216
|
+
- spec/pancake/fixtures/paths/models/model3.rb
|
|
217
|
+
- spec/pancake/fixtures/paths/stack/controllers/controller1.rb
|
|
218
|
+
- spec/pancake/fixtures/paths/stack/models/model3.rb
|
|
219
|
+
- spec/pancake/fixtures/paths/stack/views/view1.rb
|
|
220
|
+
- spec/pancake/hooks/on_inherit_spec.rb
|
|
221
|
+
- spec/pancake/inheritance_spec.rb
|
|
222
|
+
- spec/pancake/middleware_spec.rb
|
|
223
|
+
- spec/pancake/mime_types_spec.rb
|
|
224
|
+
- spec/pancake/mixins/publish_spec.rb
|
|
225
|
+
- spec/pancake/mixins/render_spec.rb
|
|
226
|
+
- spec/pancake/mixins/stack_helper_spec.rb
|
|
227
|
+
- spec/pancake/pancake_spec.rb
|
|
228
|
+
- spec/pancake/paths_spec.rb
|
|
229
|
+
- spec/pancake/stack/app_spec.rb
|
|
230
|
+
- spec/pancake/stack/bootloader_spec.rb
|
|
231
|
+
- spec/pancake/stack/middleware_spec.rb
|
|
232
|
+
- spec/pancake/stack/router_spec.rb
|
|
233
|
+
- spec/pancake/stack/stack_configuration_spec.rb
|
|
234
|
+
- spec/pancake/stack/stack_spec.rb
|
|
235
|
+
- spec/pancake/stacks/short/controller_spec.rb
|
|
236
|
+
- spec/pancake/stacks/short/router_spec.rb
|
|
237
|
+
- spec/pancake/stacks/short/stack_spec.rb
|
|
238
|
+
- spec/spec_helper.rb
|