waves-stable 0.7.7 → 2009.3.10
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/bin/waves +20 -74
- data/doc/HISTORY +1 -44
- data/doc/README +1 -0
- data/doc/VERSION +1 -0
- data/lib/caches/file.rb +48 -0
- data/lib/caches/memcached.rb +40 -0
- data/lib/caches/simple.rb +25 -0
- data/lib/caches/synchronized.rb +25 -0
- data/lib/commands/console.rb +35 -0
- data/lib/commands/generate.rb +52 -0
- data/lib/commands/help.rb +5 -0
- data/lib/commands/{waves-server.rb → server.rb} +16 -3
- data/lib/dispatchers/base.rb +22 -21
- data/lib/dispatchers/default.rb +10 -66
- data/lib/ext/float.rb +13 -0
- data/lib/{utilities → ext}/hash.rb +2 -2
- data/lib/{utilities → ext}/integer.rb +5 -2
- data/lib/ext/kernel.rb +20 -0
- data/lib/ext/module.rb +20 -0
- data/lib/{utilities → ext}/object.rb +3 -5
- data/lib/ext/string.rb +20 -0
- data/lib/ext/symbol.rb +11 -0
- data/lib/ext/tempfile.rb +5 -0
- data/lib/foundations/classic.rb +66 -0
- data/lib/foundations/compact.rb +50 -0
- data/lib/helpers/basic.rb +11 -0
- data/lib/helpers/doc_type.rb +34 -0
- data/lib/helpers/extended.rb +21 -0
- data/lib/helpers/form.rb +3 -1
- data/lib/helpers/formatting.rb +3 -3
- data/lib/helpers/layouts.rb +37 -0
- data/lib/helpers/model.rb +8 -4
- data/lib/helpers/view.rb +2 -4
- data/lib/layers/inflect/english.rb +48 -5
- data/lib/layers/mvc.rb +18 -18
- data/lib/layers/mvc/controllers.rb +41 -0
- data/lib/layers/mvc/extensions.rb +52 -0
- data/lib/layers/orm/migration.rb +1 -1
- data/lib/layers/orm/{active_record.rb → providers/active_record.rb} +9 -14
- data/lib/layers/orm/{active_record → providers/active_record}/migrations/empty.rb.erb +0 -0
- data/lib/layers/orm/{active_record → providers/active_record}/tasks/generate.rb +1 -1
- data/lib/layers/orm/{active_record → providers/active_record}/tasks/schema.rb +1 -1
- data/lib/layers/orm/{data_mapper.rb → providers/data_mapper.rb} +3 -4
- data/lib/layers/orm/providers/filebase.rb +25 -0
- data/lib/layers/orm/{sequel.rb → providers/sequel.rb} +11 -7
- data/lib/layers/orm/{sequel → providers/sequel}/migrations/empty.rb.erb +0 -0
- data/lib/layers/orm/{sequel → providers/sequel}/tasks/generate.rb +5 -3
- data/lib/layers/orm/{sequel → providers/sequel}/tasks/schema.rb +2 -2
- data/lib/{renderers → layers/renderers}/erubis.rb +13 -16
- data/lib/{renderers → layers/renderers}/haml.rb +27 -25
- data/lib/layers/renderers/markaby.rb +29 -0
- data/lib/matchers/accept.rb +21 -0
- data/lib/matchers/base.rb +30 -0
- data/lib/matchers/content_type.rb +17 -0
- data/lib/matchers/path.rb +67 -0
- data/lib/matchers/query.rb +21 -0
- data/lib/matchers/request.rb +27 -0
- data/lib/matchers/resource.rb +19 -0
- data/lib/matchers/traits.rb +19 -0
- data/lib/matchers/uri.rb +20 -0
- data/lib/renderers/mixin.rb +15 -29
- data/lib/resources/mixin.rb +134 -0
- data/lib/resources/paths.rb +34 -0
- data/lib/runtime/configuration.rb +51 -136
- data/lib/runtime/console.rb +4 -1
- data/lib/runtime/logger.rb +24 -48
- data/lib/runtime/mime_types.rb +516 -2
- data/lib/runtime/mocks.rb +14 -0
- data/lib/runtime/monitor.rb +32 -0
- data/lib/runtime/request.rb +107 -39
- data/lib/runtime/response.rb +5 -2
- data/lib/runtime/response_mixin.rb +41 -22
- data/lib/runtime/runtime.rb +67 -0
- data/lib/runtime/server.rb +14 -101
- data/lib/runtime/session.rb +4 -43
- data/lib/runtime/worker.rb +86 -0
- data/lib/servers/base.rb +42 -0
- data/lib/servers/mongrel.rb +13 -0
- data/lib/servers/webrick.rb +13 -0
- data/lib/tasks/gem.rb +1 -0
- data/lib/tasks/generate.rb +67 -62
- data/lib/views/errors.rb +49 -0
- data/lib/views/mixin.rb +34 -82
- data/lib/waves.rb +36 -57
- data/samples/blog/Rakefile +16 -5
- data/samples/blog/configurations/default.rb +11 -0
- data/samples/blog/configurations/development.rb +9 -11
- data/samples/blog/configurations/production.rb +11 -15
- data/samples/blog/models/comment.rb +9 -0
- data/samples/blog/models/entry.rb +17 -0
- data/samples/blog/public/css/site.css +13 -2
- data/samples/blog/public/javascript/jquery-1.2.6.min.js +32 -0
- data/samples/blog/resources/entry.rb +39 -0
- data/samples/blog/resources/map.rb +9 -0
- data/samples/blog/schema/migrations/001_initial_schema.rb +3 -3
- data/samples/blog/schema/migrations/002_add_comments.rb +2 -2
- data/samples/blog/startup.rb +8 -6
- data/samples/blog/templates/comment/add.mab +6 -4
- data/samples/blog/templates/comment/list.mab +4 -4
- data/samples/blog/templates/entry/{editor.mab → edit.mab} +7 -6
- data/samples/blog/templates/entry/list.mab +10 -5
- data/samples/blog/templates/entry/show.mab +16 -7
- data/samples/blog/templates/entry/summary.mab +8 -4
- data/samples/blog/templates/errors/not_found_404.mab +6 -1
- data/samples/blog/templates/layouts/default.mab +5 -3
- data/samples/blog/templates/waves/status.mab +85 -0
- data/{app → templates/classic}/Rakefile +21 -3
- data/templates/classic/configurations/default.rb.erb +9 -0
- data/{app → templates/classic}/configurations/development.rb.erb +3 -8
- data/{app → templates/classic}/configurations/production.rb.erb +3 -5
- data/{app → templates/classic}/controllers/.gitignore +0 -0
- data/{app/doc → templates/classic/helpers}/.gitignore +0 -0
- data/{app/helpers → templates/classic/lib/tasks}/.gitignore +0 -0
- data/{app/lib/tasks → templates/classic/models}/.gitignore +0 -0
- data/{app/log → templates/classic/public/css}/.gitignore +0 -0
- data/{app/models → templates/classic/public/flash}/.gitignore +0 -0
- data/{app/public/css → templates/classic/public/images}/.gitignore +0 -0
- data/{app/public/flash → templates/classic/public/javascript}/.gitignore +0 -0
- data/{app/public/images → templates/classic/resources}/.gitignore +0 -0
- data/templates/classic/resources/map.rb.erb +8 -0
- data/{app/public/javascript → templates/classic/schema/migrations}/.gitignore +0 -0
- data/templates/classic/startup.rb.erb +11 -0
- data/templates/classic/templates/errors/not_found_404.mab +7 -0
- data/templates/classic/templates/errors/server_error_500.mab +7 -0
- data/{app → templates/classic}/templates/layouts/default.mab +0 -0
- data/{app/schema/migrations → templates/classic/tmp/sessions}/.gitignore +0 -0
- data/{app/tmp/sessions → templates/classic/views}/.gitignore +0 -0
- data/templates/compact/startup.rb.erb +11 -0
- metadata +152 -258
- data/app/bin/waves-console +0 -4
- data/app/bin/waves-server +0 -4
- data/app/configurations/mapping.rb.erb +0 -14
- data/app/lib/application.rb.erb +0 -5
- data/app/startup.rb +0 -5
- data/app/templates/errors/not_found_404.mab +0 -2
- data/app/templates/errors/server_error_500.mab +0 -2
- data/app/views/.gitignore +0 -0
- data/bin/waves-console +0 -4
- data/bin/waves-server +0 -4
- data/lib/commands/waves-console.rb +0 -21
- data/lib/controllers/base.rb +0 -11
- data/lib/controllers/mixin.rb +0 -165
- data/lib/foundations/default.rb +0 -27
- data/lib/foundations/simple.rb +0 -30
- data/lib/helpers/asset_helper.rb +0 -67
- data/lib/helpers/common.rb +0 -66
- data/lib/helpers/default.rb +0 -13
- data/lib/helpers/number_helper.rb +0 -25
- data/lib/helpers/tag_helper.rb +0 -58
- data/lib/helpers/url_helper.rb +0 -77
- data/lib/layers/default_errors.rb +0 -26
- data/lib/layers/inflect/english/rules.rb +0 -88
- data/lib/layers/inflect/english/string.rb +0 -24
- data/lib/layers/orm/filebase.rb +0 -22
- data/lib/layers/simple.rb +0 -32
- data/lib/layers/simple_errors.rb +0 -23
- data/lib/mapping/mapping.rb +0 -289
- data/lib/mapping/pretty_urls.rb +0 -96
- data/lib/renderers/markaby.rb +0 -33
- data/lib/runtime/application.rb +0 -69
- data/lib/runtime/blackboard.rb +0 -57
- data/lib/runtime/debugger.rb +0 -9
- data/lib/runtime/response_proxy.rb +0 -30
- data/lib/tasks/cluster.rb +0 -26
- data/lib/utilities/inflect.rb +0 -110
- data/lib/utilities/module.rb +0 -21
- data/lib/utilities/proc.rb +0 -16
- data/lib/utilities/string.rb +0 -49
- data/lib/utilities/symbol.rb +0 -10
- data/lib/utilities/tempfile.rb +0 -9
- data/lib/views/base.rb +0 -9
- data/samples/blog/bin/waves-console +0 -3
- data/samples/blog/bin/waves-server +0 -3
- data/samples/blog/configurations/mapping.rb +0 -23
- data/samples/blog/doc/EMTPY +0 -0
- data/samples/blog/lib/application.rb +0 -5
- data/verify/app_generation/helpers.rb +0 -24
- data/verify/app_generation/startup.rb +0 -39
- data/verify/blackboard/blackboard_verify.rb +0 -92
- data/verify/blackboard/helpers.rb +0 -5
- data/verify/configurations/attributes.rb +0 -37
- data/verify/configurations/helpers.rb +0 -1
- data/verify/configurations/rack_integration.rb +0 -29
- data/verify/controllers/base.rb +0 -37
- data/verify/controllers/helpers.rb +0 -13
- data/verify/controllers/interface.rb +0 -51
- data/verify/core/helpers.rb +0 -3
- data/verify/core/utilities.rb +0 -177
- data/verify/foundations/default.rb +0 -86
- data/verify/foundations/default_application/Rakefile +0 -14
- data/verify/foundations/default_application/bin/waves-console +0 -3
- data/verify/foundations/default_application/bin/waves-server +0 -3
- data/verify/foundations/default_application/configurations/development.rb +0 -26
- data/verify/foundations/default_application/configurations/mapping.rb +0 -14
- data/verify/foundations/default_application/configurations/production.rb +0 -30
- data/verify/foundations/default_application/controllers/default.rb +0 -15
- data/verify/foundations/default_application/controllers/loaded.rb +0 -15
- data/verify/foundations/default_application/defaultapplication.db +0 -0
- data/verify/foundations/default_application/helpers/loaded.rb +0 -10
- data/verify/foundations/default_application/lib/application.rb +0 -5
- data/verify/foundations/default_application/models/default.rb +0 -13
- data/verify/foundations/default_application/models/loaded.rb +0 -13
- data/verify/foundations/default_application/schema/migrations/templates/empty.rb.erb +0 -9
- data/verify/foundations/default_application/startup.rb +0 -7
- data/verify/foundations/default_application/templates/errors/not_found_404.mab +0 -2
- data/verify/foundations/default_application/templates/errors/server_error_500.mab +0 -2
- data/verify/foundations/default_application/templates/layouts/default.mab +0 -14
- data/verify/foundations/default_application/views/default.rb +0 -7
- data/verify/foundations/default_application/views/loaded.rb +0 -15
- data/verify/foundations/helpers.rb +0 -1
- data/verify/foundations/simple.rb +0 -25
- data/verify/helpers.rb +0 -76
- data/verify/layers/data_mapper/association_verify.rb +0 -87
- data/verify/layers/default_errors.rb +0 -29
- data/verify/layers/helpers.rb +0 -1
- data/verify/layers/migration.rb +0 -33
- data/verify/layers/sequel/model.rb +0 -41
- data/verify/mapping/always.rb +0 -19
- data/verify/mapping/filters.rb +0 -65
- data/verify/mapping/handle.rb +0 -24
- data/verify/mapping/helpers.rb +0 -7
- data/verify/mapping/matches.rb +0 -27
- data/verify/mapping/named.rb +0 -29
- data/verify/mapping/options.rb +0 -17
- data/verify/mapping/path.rb +0 -40
- data/verify/mapping/response_proxy.rb +0 -50
- data/verify/mapping/threaded.rb +0 -25
- data/verify/requests/helpers.rb +0 -16
- data/verify/requests/request.rb +0 -73
- data/verify/requests/response.rb +0 -59
- data/verify/requests/session.rb +0 -54
- data/verify/views/helpers.rb +0 -1
- data/verify/views/rendering.rb +0 -34
- data/verify/views/templates/foo.erb +0 -0
- data/verify/views/templates/moo.erb +0 -0
- data/verify/views/templates/moo.mab +0 -0
data/verify/core/helpers.rb
DELETED
data/verify/core/utilities.rb
DELETED
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
# require 'test_helper' because RubyMate needs help
|
|
2
|
-
require File.join(File.dirname(__FILE__) , "helpers")
|
|
3
|
-
|
|
4
|
-
UTILITIES = "#{File.dirname(__FILE__)}/../../lib/utilities"
|
|
5
|
-
|
|
6
|
-
require "#{UTILITIES}/module"
|
|
7
|
-
require "#{UTILITIES}/inflect"
|
|
8
|
-
require "#{UTILITIES}/string"
|
|
9
|
-
require "#{UTILITIES}/symbol"
|
|
10
|
-
require "#{UTILITIES}/object"
|
|
11
|
-
require "#{UTILITIES}/integer"
|
|
12
|
-
require "#{UTILITIES}/proc"
|
|
13
|
-
require "#{UTILITIES}/hash"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
describe "Waves::Utilities::Module" do
|
|
17
|
-
|
|
18
|
-
before do
|
|
19
|
-
module Eenie; module Meenie; module Miney; end; end ; end
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
it "defines a basename method" do
|
|
23
|
-
Eenie::Meenie.basename.should == "Meenie"
|
|
24
|
-
Eenie::Meenie::Miney.basename.should == "Miney"
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
it "defines [] for easy access to namespaced constants" do
|
|
28
|
-
Eenie[:Meenie].should == Eenie::Meenie
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
describe "a language extended with Waves::Utilities::Inflect" do
|
|
34
|
-
|
|
35
|
-
before do
|
|
36
|
-
# Nominative only, of course.
|
|
37
|
-
module Latin
|
|
38
|
-
extend Waves::Inflect::InflectorMethods
|
|
39
|
-
rule 'us', 'i'
|
|
40
|
-
rule 'u', 'ua'
|
|
41
|
-
rule 'x', 'gis'
|
|
42
|
-
|
|
43
|
-
word 'deus', 'di'
|
|
44
|
-
word 'cultus'
|
|
45
|
-
|
|
46
|
-
singular_rule 'inuum', 'inua'
|
|
47
|
-
plural_rule 'ix', 'ices'
|
|
48
|
-
end
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
it "can define general pluralization rules" do
|
|
52
|
-
Latin.plural('servus').should == 'servi'
|
|
53
|
-
end
|
|
54
|
-
|
|
55
|
-
it "can register two-way exceptions for specific words" do
|
|
56
|
-
Latin.plural('deus').should == 'di'
|
|
57
|
-
Latin.plural('cultus').should == 'cultus'
|
|
58
|
-
end
|
|
59
|
-
|
|
60
|
-
it "can register rules for singularization exceptions" do
|
|
61
|
-
Latin.singular('cornua').should == 'cornu'
|
|
62
|
-
Latin.singular('continua').should == 'continuum'
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
it "can register rules for pluralization exceptions" do
|
|
66
|
-
Latin.plural('phoenix').should == 'phoenices'
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
describe "Waves::Utilities::String" do
|
|
73
|
-
|
|
74
|
-
# ** API Change **
|
|
75
|
-
# it "delegates singular and plural inflection methods" do
|
|
76
|
-
# Waves::Inflect::English.should.receive(:singular).and_return("boring")
|
|
77
|
-
# Waves::Inflect::English.should.receive(:plural).and_return("still boring")
|
|
78
|
-
# "boring".singular.plural
|
|
79
|
-
# end
|
|
80
|
-
|
|
81
|
-
it "defines / as syntactic sugar for File.join" do
|
|
82
|
-
( "lib" / "utilities" ).should == File.join( "lib", "utilities" )
|
|
83
|
-
( "lib" / :utilities ).should == File.join( "lib", "utilities" )
|
|
84
|
-
( "lib" / 3 ).should == File.join( "lib", "3" )
|
|
85
|
-
end
|
|
86
|
-
|
|
87
|
-
it "defines a snake_case method" do
|
|
88
|
-
"MilchCow".snake_case.should == "milch_cow"
|
|
89
|
-
"Milch Cow".snake_case.should == "milch_cow"
|
|
90
|
-
"milchCow".snake_case.should == "milch_cow"
|
|
91
|
-
"StrangeFaceMilchCow".snake_case.should == "strange_face_milch_cow"
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
it "defines a camel_case method" do
|
|
95
|
-
"siege_engine".camel_case.should == "SiegeEngine"
|
|
96
|
-
"ineffective_siege_engine".camel_case.should == "IneffectiveSiegeEngine"
|
|
97
|
-
end
|
|
98
|
-
|
|
99
|
-
it "defines a lower_camel_case method" do
|
|
100
|
-
"siege_engine".lower_camel_case.should == "siegeEngine"
|
|
101
|
-
"ineffective_siege_engine".lower_camel_case.should == "ineffectiveSiegeEngine"
|
|
102
|
-
end
|
|
103
|
-
|
|
104
|
-
it "defines a title_case method" do
|
|
105
|
-
# Yes, we know that this is naive title casing.
|
|
106
|
-
"sing ho! for the life of a bear".title_case.should == "Sing Ho! For The Life Of A Bear"
|
|
107
|
-
end
|
|
108
|
-
|
|
109
|
-
end
|
|
110
|
-
|
|
111
|
-
describe "A monkeypatch to Symbol" do
|
|
112
|
-
|
|
113
|
-
it "defines / as syntactic sugar for File.join" do
|
|
114
|
-
( :lib / :utilities ).should == File.join( "lib", "utilities")
|
|
115
|
-
end
|
|
116
|
-
|
|
117
|
-
end
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
describe "Waves::Utilities::Object" do
|
|
121
|
-
|
|
122
|
-
before do |variable|
|
|
123
|
-
@foo = [ :a, :b, :c ]
|
|
124
|
-
end
|
|
125
|
-
|
|
126
|
-
it "defines instance_exec, to allow instance_eval-ing a block with parameters" do
|
|
127
|
-
result = @foo.instance_exec(2) do |i|
|
|
128
|
-
self[i]
|
|
129
|
-
end
|
|
130
|
-
result.should == :c
|
|
131
|
-
|
|
132
|
-
result = @foo.instance_exec(0,2) do |*args|
|
|
133
|
-
self.slice(*args)
|
|
134
|
-
end
|
|
135
|
-
result.should == [:a, :b]
|
|
136
|
-
end
|
|
137
|
-
|
|
138
|
-
end
|
|
139
|
-
|
|
140
|
-
describe "Waves::Utilities::Integer" do
|
|
141
|
-
# pedantic, no?
|
|
142
|
-
1.kilobytes.should == "1,024".to_i
|
|
143
|
-
1.megabytes.should == "1,048,576".to_i
|
|
144
|
-
1.gigabytes.should == "1,073,741,824".to_i
|
|
145
|
-
1.terabytes.should == "1,099,511,627,776".to_i
|
|
146
|
-
1.petabytes.should == "1,125,899,906,842,624".to_i
|
|
147
|
-
1.exabytes.should == "1,152,921,504,606,846,976".to_i
|
|
148
|
-
1.zettabytes.should == "1,180,591,620,717,411,303,424".to_i
|
|
149
|
-
1.yottabytes.should == "1,208,925,819,614,629,174,706,176".to_i
|
|
150
|
-
end
|
|
151
|
-
|
|
152
|
-
describe "Waves::Utilities::Proc" do
|
|
153
|
-
|
|
154
|
-
it "defines | as syntactic sugar for passing the result of a proc to a lambda" do
|
|
155
|
-
p = Proc.new { "smurf" }
|
|
156
|
-
l = lambda { |data| data.reverse }
|
|
157
|
-
result = p | l
|
|
158
|
-
result.call.should == "frums"
|
|
159
|
-
end
|
|
160
|
-
|
|
161
|
-
end
|
|
162
|
-
|
|
163
|
-
describe "Waves::Utilities::Hash" do
|
|
164
|
-
|
|
165
|
-
it "adds a non-destructive method for converting all hash keys to strings" do
|
|
166
|
-
h = { :a => 1, 'b' => 2, 3 => 3}
|
|
167
|
-
h.stringify_keys.should == { 'a' => 1, 'b' => 2, '3' => 3}
|
|
168
|
-
h.should == { :a => 1, 'b' => 2, 3 => 3}
|
|
169
|
-
end
|
|
170
|
-
|
|
171
|
-
it "adds a destructive method for converting hash keys to symbols" do
|
|
172
|
-
h = { "two" => 2, :three => 3}
|
|
173
|
-
h.symbolize_keys!
|
|
174
|
-
h.should == { :two => 2, :three => 3 }
|
|
175
|
-
end
|
|
176
|
-
|
|
177
|
-
end
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
# require 'test_helper' because RubyMate needs help
|
|
2
|
-
require File.join(File.dirname(__FILE__) , "helpers")
|
|
3
|
-
|
|
4
|
-
Dir.chdir File.dirname(__FILE__) / "default_application" do
|
|
5
|
-
module DefaultApplication
|
|
6
|
-
include Waves::Foundations::Default
|
|
7
|
-
end
|
|
8
|
-
Waves::Console.load( :mode => :development )
|
|
9
|
-
DA = DefaultApplication
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
describe "An application module which includes the Default foundation" do
|
|
13
|
-
|
|
14
|
-
it "defines basic namespaces" do
|
|
15
|
-
DA::Configurations::Mapping
|
|
16
|
-
DA::Configurations::Default.host.should == nil
|
|
17
|
-
DA::Configurations::Development.host.should == '127.0.0.1'
|
|
18
|
-
DA::Models::Default
|
|
19
|
-
DA::Views::Default
|
|
20
|
-
DA::Controllers::Default
|
|
21
|
-
DA::Helpers::Default
|
|
22
|
-
DA::Helpers::Testing
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
# it "**leftover tests of Default to be reapportioned**" do
|
|
26
|
-
# Waves::Application.instance.mapping.send(:mapping).should.not.be.empty
|
|
27
|
-
# DA::Helpers::Default.instance_methods.should.include "layout"
|
|
28
|
-
#
|
|
29
|
-
# DA::Models::Default.should.respond_to :crayola
|
|
30
|
-
# DA::Controllers::Default.instance_methods.should.include "attributes"
|
|
31
|
-
# DA::Controllers::Default.instance_methods.should.include "destroy_all"
|
|
32
|
-
#
|
|
33
|
-
# DA::Views::Default.instance_methods.should.include "renderer"
|
|
34
|
-
# DA::Views::Default.instance_methods.should.include "from_default"
|
|
35
|
-
# end
|
|
36
|
-
|
|
37
|
-
it "auto_creates Models when their files do not exist" do
|
|
38
|
-
DA::Models::Created.superclass.should == DA::Models::Default
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
it "auto_loads Models when their files exist" do
|
|
42
|
-
DA::Models::Loaded.instance_methods.should.include "from_loaded"
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
it "auto_creates Controllers when their files do not exist" do
|
|
46
|
-
DA::Controllers::Created.superclass.should == DA::Controllers::Default
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
it "auto_loads Controllers when their files exist" do
|
|
50
|
-
DA::Controllers::Loaded.instance_methods.should.include "from_loaded"
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
it "auto_creates Views when their files do not exist" do
|
|
54
|
-
DA::Views::Created.superclass.should == DA::Views::Default
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
it "auto_loads Views when their files exist" do
|
|
58
|
-
DA::Views::Loaded.instance_methods.should.include "from_loaded"
|
|
59
|
-
end
|
|
60
|
-
|
|
61
|
-
it "auto_creates Helpers when their files do not exist" do
|
|
62
|
-
DA::Helpers::Created.included_modules.should.include Waves::Helpers::Default
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
it "auto_loads Helpers when their files exist" do
|
|
66
|
-
DA::Helpers::Loaded.instance_methods.should.include "doctype"
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
it "should have accessors defined" do
|
|
71
|
-
[ :config, :configurations, :controllers, :models, :helpers, :views ].each do |method|
|
|
72
|
-
DA.should.respond_to method
|
|
73
|
-
end
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
it "should define [] method for appropriate submodules" do
|
|
77
|
-
DA::Configurations.should.respond_to :[]
|
|
78
|
-
DA::Models.should.respond_to :[]
|
|
79
|
-
DA::Views.should.respond_to :[]
|
|
80
|
-
DA::Controllers.should.respond_to :[]
|
|
81
|
-
end
|
|
82
|
-
|
|
83
|
-
end
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
end
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
#
|
|
3
|
-
# Warning: This file is clobbered when you update your
|
|
4
|
-
# application with the waves script. Accordingly, you may
|
|
5
|
-
# wish to keep your tasks in .rb or .rake files in lib/tasks
|
|
6
|
-
require 'startup'
|
|
7
|
-
Waves::Console.load(:mode => ENV['mode'])
|
|
8
|
-
|
|
9
|
-
# load tasks from waves framework
|
|
10
|
-
%w( schema cluster generate gem ).each { |task| require "tasks/#{task}.rb" }
|
|
11
|
-
|
|
12
|
-
# load tasks from this app's lib/tasks
|
|
13
|
-
Dir["lib/tasks/*.{rb,rake}"].each { |task| require task }
|
|
14
|
-
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
module DefaultApplication
|
|
2
|
-
module Configurations
|
|
3
|
-
class Development < Default
|
|
4
|
-
|
|
5
|
-
database :adapter => 'sqlite', :database => 'defaultapplication.db'
|
|
6
|
-
|
|
7
|
-
reloadable [ DefaultApplication ]
|
|
8
|
-
|
|
9
|
-
log :level => :debug
|
|
10
|
-
|
|
11
|
-
host '127.0.0.1'
|
|
12
|
-
|
|
13
|
-
port 3000
|
|
14
|
-
|
|
15
|
-
handler ::Rack::Handler::Mongrel, :Host => host, :Port => port
|
|
16
|
-
# handler ::Rack::Handler::WEBrick, :BindAddress => host, :Port => port
|
|
17
|
-
# handler ::Rack::Handler::Thin, :Host => host, :Port => port
|
|
18
|
-
|
|
19
|
-
application do
|
|
20
|
-
use ::Rack::ShowExceptions
|
|
21
|
-
run ::Waves::Dispatchers::Default.new
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
module DefaultApplication
|
|
2
|
-
|
|
3
|
-
module Configurations
|
|
4
|
-
|
|
5
|
-
module Mapping
|
|
6
|
-
extend Waves::Mapping
|
|
7
|
-
path( "/user-added") { response.body = "User added mapping"}
|
|
8
|
-
include Waves::Mapping::PrettyUrls::RestRules
|
|
9
|
-
include Waves::Mapping::PrettyUrls::GetRules
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
end
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
module DefaultApplication
|
|
2
|
-
|
|
3
|
-
module Configurations
|
|
4
|
-
|
|
5
|
-
class Production < Default
|
|
6
|
-
|
|
7
|
-
database :host => 'localhost', :adapter => 'mysql', :database => 'defaultapplication',
|
|
8
|
-
:user => 'root', :password => ''
|
|
9
|
-
|
|
10
|
-
reloadable []
|
|
11
|
-
|
|
12
|
-
log :level => :error,
|
|
13
|
-
:output => ( :log / "waves.#{$$}" ),
|
|
14
|
-
:rotation => :weekly
|
|
15
|
-
|
|
16
|
-
host '0.0.0.0'
|
|
17
|
-
|
|
18
|
-
port 80
|
|
19
|
-
|
|
20
|
-
handler ::Rack::Handler::Mongrel, :Host => host, :Port => port
|
|
21
|
-
# handler ::Rack::Handler::WEBrick, :BindAddress => host, :Port => port
|
|
22
|
-
# handler ::Rack::Handler::Thin, :Host => host, :Port => port
|
|
23
|
-
|
|
24
|
-
application do
|
|
25
|
-
run ::Waves::Dispatchers::Default.new
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
end
|
|
File without changes
|