gridder 0.0.7 → 0.0.8
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/gridder.rb +3 -1
- data/lib/gridder/version.rb +1 -1
- data/test/dummy/app/controllers/welcome_controller.rb +2 -1
- data/test/dummy/app/models/address.rb +3 -0
- data/test/dummy/app/models/base.rb +20 -0
- data/test/dummy/app/models/person.rb +3 -0
- data/test/dummy/app/views/welcome/index.html.erb +47 -12
- data/test/dummy/config/routes.rb +1 -58
- data/test/dummy/data.yml +701 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/log/development.log +3863 -0
- data/test/dummy/log/production.log +21 -0
- data/test/dummy/tmp/cache/assets/{DAF/2C0/sprockets%2Fcab45e548fe8052c62e467fde4dfe368 → C55/BD0/sprockets%2Faecd4700129c44c79c71965552019594} +0 -0
- data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
- data/test/dummy/tmp/cache/assets/{D02/7C0/sprockets%2F5a91dd113f57ac4a330b9800376ed1e6 → C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e} +0 -0
- data/test/dummy/tmp/cache/assets/{E03/DD0/sprockets%2Fc0b56c43d65acbf25696aced895cde6a → C97/410/sprockets%2F56fe119098922d0755dd813be3c86798} +0 -0
- data/test/dummy/tmp/cache/assets/{E54/0A0/sprockets%2F0c12aa3768b3dcccdeec7f29ed0b15ff → CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97} +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
- data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- metadata +24 -12
@@ -0,0 +1,21 @@
|
|
1
|
+
Started GET "/" for 127.0.0.1 at 2012-11-16 17:37:11 -0200
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Processing by WelcomeController#index as HTML
|
4
|
+
Rendered welcome/index.html.erb within layouts/application (51.1ms)
|
5
|
+
Completed 500 Internal Server Error in 105ms
|
6
|
+
|
7
|
+
ActionView::Template::Error (application.css isn't precompiled):
|
8
|
+
2: <html>
|
9
|
+
3: <head>
|
10
|
+
4: <title>Dummy</title>
|
11
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
12
|
+
6: <%= javascript_include_tag "application" %>
|
13
|
+
7: <%= csrf_meta_tags %>
|
14
|
+
8: </head>
|
15
|
+
app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2129424579288972882_2177059800'
|
16
|
+
|
17
|
+
|
18
|
+
Compiled jquery.js (4ms) (pid 882)
|
19
|
+
Compiled jquery_ujs.js (0ms) (pid 882)
|
20
|
+
Compiled welcome.js (0ms) (pid 882)
|
21
|
+
Compiled application.js (49ms) (pid 882)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: gridder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.8
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Pablo Targa
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-11-
|
13
|
+
date: 2012-11-20 00:00:00 -02:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -70,6 +70,9 @@ files:
|
|
70
70
|
- test/dummy/app/controllers/welcome_controller.rb
|
71
71
|
- test/dummy/app/helpers/application_helper.rb
|
72
72
|
- test/dummy/app/helpers/welcome_helper.rb
|
73
|
+
- test/dummy/app/models/address.rb
|
74
|
+
- test/dummy/app/models/base.rb
|
75
|
+
- test/dummy/app/models/person.rb
|
73
76
|
- test/dummy/app/views/layouts/application.html.erb
|
74
77
|
- test/dummy/app/views/welcome/index.html.erb
|
75
78
|
- test/dummy/config/application.rb
|
@@ -88,8 +91,11 @@ files:
|
|
88
91
|
- test/dummy/config/locales/en.yml
|
89
92
|
- test/dummy/config/routes.rb
|
90
93
|
- test/dummy/config.ru
|
94
|
+
- test/dummy/data.yml
|
91
95
|
- test/dummy/db/development.sqlite3
|
96
|
+
- test/dummy/db/production.sqlite3
|
92
97
|
- test/dummy/log/development.log
|
98
|
+
- test/dummy/log/production.log
|
93
99
|
- test/dummy/public/404.html
|
94
100
|
- test/dummy/public/422.html
|
95
101
|
- test/dummy/public/500.html
|
@@ -99,20 +105,20 @@ files:
|
|
99
105
|
- test/dummy/script/rails
|
100
106
|
- test/dummy/test/functional/welcome_controller_test.rb
|
101
107
|
- test/dummy/test/unit/helpers/welcome_helper_test.rb
|
108
|
+
- test/dummy/tmp/cache/assets/C55/BD0/sprockets%2Faecd4700129c44c79c71965552019594
|
102
109
|
- test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c
|
110
|
+
- test/dummy/tmp/cache/assets/C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e
|
111
|
+
- test/dummy/tmp/cache/assets/C97/410/sprockets%2F56fe119098922d0755dd813be3c86798
|
112
|
+
- test/dummy/tmp/cache/assets/CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97
|
103
113
|
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
104
|
-
- test/dummy/tmp/cache/assets/D02/7C0/sprockets%2F5a91dd113f57ac4a330b9800376ed1e6
|
105
114
|
- test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
|
106
115
|
- test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
|
107
116
|
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
108
117
|
- test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
|
109
118
|
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
110
119
|
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
111
|
-
- test/dummy/tmp/cache/assets/DAF/2C0/sprockets%2Fcab45e548fe8052c62e467fde4dfe368
|
112
120
|
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
113
|
-
- test/dummy/tmp/cache/assets/E03/DD0/sprockets%2Fc0b56c43d65acbf25696aced895cde6a
|
114
121
|
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
115
|
-
- test/dummy/tmp/cache/assets/E54/0A0/sprockets%2F0c12aa3768b3dcccdeec7f29ed0b15ff
|
116
122
|
- test/gridder_test.rb
|
117
123
|
- test/test_helper.rb
|
118
124
|
has_rdoc: true
|
@@ -129,7 +135,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
129
135
|
requirements:
|
130
136
|
- - ">="
|
131
137
|
- !ruby/object:Gem::Version
|
132
|
-
hash:
|
138
|
+
hash: 2749217683410939937
|
133
139
|
segments:
|
134
140
|
- 0
|
135
141
|
version: "0"
|
@@ -138,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
144
|
requirements:
|
139
145
|
- - ">="
|
140
146
|
- !ruby/object:Gem::Version
|
141
|
-
hash:
|
147
|
+
hash: 2749217683410939937
|
142
148
|
segments:
|
143
149
|
- 0
|
144
150
|
version: "0"
|
@@ -158,6 +164,9 @@ test_files:
|
|
158
164
|
- test/dummy/app/controllers/welcome_controller.rb
|
159
165
|
- test/dummy/app/helpers/application_helper.rb
|
160
166
|
- test/dummy/app/helpers/welcome_helper.rb
|
167
|
+
- test/dummy/app/models/address.rb
|
168
|
+
- test/dummy/app/models/base.rb
|
169
|
+
- test/dummy/app/models/person.rb
|
161
170
|
- test/dummy/app/views/layouts/application.html.erb
|
162
171
|
- test/dummy/app/views/welcome/index.html.erb
|
163
172
|
- test/dummy/config/application.rb
|
@@ -176,8 +185,11 @@ test_files:
|
|
176
185
|
- test/dummy/config/locales/en.yml
|
177
186
|
- test/dummy/config/routes.rb
|
178
187
|
- test/dummy/config.ru
|
188
|
+
- test/dummy/data.yml
|
179
189
|
- test/dummy/db/development.sqlite3
|
190
|
+
- test/dummy/db/production.sqlite3
|
180
191
|
- test/dummy/log/development.log
|
192
|
+
- test/dummy/log/production.log
|
181
193
|
- test/dummy/public/404.html
|
182
194
|
- test/dummy/public/422.html
|
183
195
|
- test/dummy/public/500.html
|
@@ -187,19 +199,19 @@ test_files:
|
|
187
199
|
- test/dummy/script/rails
|
188
200
|
- test/dummy/test/functional/welcome_controller_test.rb
|
189
201
|
- test/dummy/test/unit/helpers/welcome_helper_test.rb
|
202
|
+
- test/dummy/tmp/cache/assets/C55/BD0/sprockets%2Faecd4700129c44c79c71965552019594
|
190
203
|
- test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c
|
204
|
+
- test/dummy/tmp/cache/assets/C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e
|
205
|
+
- test/dummy/tmp/cache/assets/C97/410/sprockets%2F56fe119098922d0755dd813be3c86798
|
206
|
+
- test/dummy/tmp/cache/assets/CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97
|
191
207
|
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
192
|
-
- test/dummy/tmp/cache/assets/D02/7C0/sprockets%2F5a91dd113f57ac4a330b9800376ed1e6
|
193
208
|
- test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
|
194
209
|
- test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
|
195
210
|
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
196
211
|
- test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
|
197
212
|
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
198
213
|
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
199
|
-
- test/dummy/tmp/cache/assets/DAF/2C0/sprockets%2Fcab45e548fe8052c62e467fde4dfe368
|
200
214
|
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
201
|
-
- test/dummy/tmp/cache/assets/E03/DD0/sprockets%2Fc0b56c43d65acbf25696aced895cde6a
|
202
215
|
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
203
|
-
- test/dummy/tmp/cache/assets/E54/0A0/sprockets%2F0c12aa3768b3dcccdeec7f29ed0b15ff
|
204
216
|
- test/gridder_test.rb
|
205
217
|
- test/test_helper.rb
|