crystal 0.0.12 → 0.0.13
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/Rakefile +2 -17
- data/lib/crystal/gems.rb +16 -0
- data/lib/crystal/support.rb +1 -3
- data/spec/controller/abstract_controller_spec.rb +1 -2
- data/spec/controller/controller_context_spec.rb +1 -2
- data/spec/controller/controller_helper_spec.rb +1 -2
- data/spec/controller/controller_render_spec.rb +1 -2
- data/spec/controller/error_handling_spec.rb +1 -2
- data/spec/controller/http_controller_spec.rb +1 -2
- data/spec/controller/{helper.rb → spec_helper.rb} +2 -0
- data/spec/conveyor/conveyor_spec.rb +1 -1
- data/spec/conveyor/{helper.rb → spec_helper.rb} +0 -0
- data/spec/environment/environment_spec.rb +1 -2
- data/spec/environment/logger_spec.rb +1 -2
- data/spec/environment/minimal_app_spec.rb +1 -2
- data/spec/environment/{helper.rb → spec_helper.rb} +2 -0
- data/spec/environment/standard_app_spec.rb +1 -2
- data/spec/html/basic_html_helper_spec.rb +1 -2
- data/spec/html/flash_spec.rb +1 -2
- data/spec/html/form_helper_spec.rb +1 -2
- data/spec/html/javascript_helper_spec.rb +1 -2
- data/spec/html/model_helper_spec.rb +1 -2
- data/spec/html/scoped_params_spec.rb +1 -2
- data/spec/html/{helper.rb → spec_helper.rb} +2 -0
- data/spec/html/url_helper_spec.rb +1 -2
- data/spec/http/http_spec.rb +1 -2
- data/spec/http/{helper.rb → spec_helper.rb} +2 -0
- data/spec/integration/basic_spec.rb +1 -2
- data/spec/integration/{helper.rb → spec_helper.rb} +2 -0
- data/spec/remote/remote_spec.rb +1 -2
- data/spec/remote/{helper.rb → spec_helper.rb} +2 -0
- data/spec/router/basic_spec.rb +1 -2
- data/spec/router/configurator_spec.rb +1 -2
- data/spec/router/integration_spec.rb +1 -2
- data/spec/router/{helper.rb → spec_helper.rb} +2 -0
- data/spec/support/callbacks_spec.rb +1 -2
- data/spec/support/filters_spec.rb +1 -2
- data/spec/support/safe_hash_spec.rb +1 -2
- data/spec/support/{helper.rb → spec_helper.rb} +2 -0
- data/spec/template/{helper.rb → spec_helper.rb} +2 -0
- data/spec/template/template_spec.rb +1 -2
- data/spec/template/tilt_spec.rb +1 -2
- metadata +80 -60
- data/lib/crystal/support/gems.rb +0 -12
data/Rakefile
CHANGED
|
@@ -1,24 +1,9 @@
|
|
|
1
1
|
require 'rake_ext'
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
project(
|
|
4
4
|
:name => "crystal",
|
|
5
|
-
:version => "0.0.
|
|
5
|
+
:version => "0.0.13",
|
|
6
6
|
:summary => "Ruby Web Framework",
|
|
7
|
-
:dependencies => %w(
|
|
8
|
-
activesupport
|
|
9
|
-
|
|
10
|
-
haml
|
|
11
|
-
tilt
|
|
12
|
-
dictionary
|
|
13
|
-
json
|
|
14
|
-
addressable
|
|
15
|
-
nokogiri
|
|
16
|
-
|
|
17
|
-
rack
|
|
18
|
-
|
|
19
|
-
facets
|
|
20
|
-
ruby-ext
|
|
21
|
-
),
|
|
22
7
|
|
|
23
8
|
:author => "Alexey Petrushin",
|
|
24
9
|
:homepage => "http://github.com/alexeypetrushin/crystal"
|
data/lib/crystal/gems.rb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
gem 'activesupport', '3.0.0'
|
|
2
|
+
gem 'i18n', '0.4.1'
|
|
3
|
+
gem 'builder', '2.1.2'
|
|
4
|
+
|
|
5
|
+
gem 'haml', '3.0.21'
|
|
6
|
+
gem 'tilt', '1.1'
|
|
7
|
+
|
|
8
|
+
gem 'dictionary', '1.0.0'
|
|
9
|
+
|
|
10
|
+
gem 'json', '1.4.6'
|
|
11
|
+
gem 'addressable', '2.2.1'
|
|
12
|
+
gem 'nokogiri', '1.4.3.1'
|
|
13
|
+
gem 'rack', '1.2.1'
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# gem 'ruby-ext'
|
data/lib/crystal/support.rb
CHANGED
|
File without changes
|
data/spec/html/flash_spec.rb
CHANGED
data/spec/http/http_spec.rb
CHANGED
data/spec/remote/remote_spec.rb
CHANGED
data/spec/router/basic_spec.rb
CHANGED
data/spec/template/tilt_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: crystal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 13
|
|
10
|
+
version: 0.0.13
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Alexey Petrushin
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-10-
|
|
18
|
+
date: 2010-10-14 00:00:00 +04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -24,138 +24,158 @@ dependencies:
|
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
25
|
none: false
|
|
26
26
|
requirements:
|
|
27
|
-
- - "
|
|
27
|
+
- - "="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 7
|
|
30
30
|
segments:
|
|
31
|
+
- 3
|
|
31
32
|
- 0
|
|
32
|
-
|
|
33
|
+
- 0
|
|
34
|
+
version: 3.0.0
|
|
33
35
|
type: :runtime
|
|
34
36
|
version_requirements: *id001
|
|
35
37
|
- !ruby/object:Gem::Dependency
|
|
36
|
-
name:
|
|
38
|
+
name: i18n
|
|
37
39
|
prerelease: false
|
|
38
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
41
|
none: false
|
|
40
42
|
requirements:
|
|
41
|
-
- - "
|
|
43
|
+
- - "="
|
|
42
44
|
- !ruby/object:Gem::Version
|
|
43
|
-
hash:
|
|
45
|
+
hash: 13
|
|
44
46
|
segments:
|
|
45
47
|
- 0
|
|
46
|
-
|
|
48
|
+
- 4
|
|
49
|
+
- 1
|
|
50
|
+
version: 0.4.1
|
|
47
51
|
type: :runtime
|
|
48
52
|
version_requirements: *id002
|
|
49
53
|
- !ruby/object:Gem::Dependency
|
|
50
|
-
name:
|
|
54
|
+
name: builder
|
|
51
55
|
prerelease: false
|
|
52
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
53
57
|
none: false
|
|
54
58
|
requirements:
|
|
55
|
-
- - "
|
|
59
|
+
- - "="
|
|
56
60
|
- !ruby/object:Gem::Version
|
|
57
|
-
hash:
|
|
61
|
+
hash: 15
|
|
58
62
|
segments:
|
|
59
|
-
-
|
|
60
|
-
|
|
63
|
+
- 2
|
|
64
|
+
- 1
|
|
65
|
+
- 2
|
|
66
|
+
version: 2.1.2
|
|
61
67
|
type: :runtime
|
|
62
68
|
version_requirements: *id003
|
|
63
69
|
- !ruby/object:Gem::Dependency
|
|
64
|
-
name:
|
|
70
|
+
name: haml
|
|
65
71
|
prerelease: false
|
|
66
72
|
requirement: &id004 !ruby/object:Gem::Requirement
|
|
67
73
|
none: false
|
|
68
74
|
requirements:
|
|
69
|
-
- - "
|
|
75
|
+
- - "="
|
|
70
76
|
- !ruby/object:Gem::Version
|
|
71
|
-
hash:
|
|
77
|
+
hash: 45
|
|
72
78
|
segments:
|
|
79
|
+
- 3
|
|
73
80
|
- 0
|
|
74
|
-
|
|
81
|
+
- 21
|
|
82
|
+
version: 3.0.21
|
|
75
83
|
type: :runtime
|
|
76
84
|
version_requirements: *id004
|
|
77
85
|
- !ruby/object:Gem::Dependency
|
|
78
|
-
name:
|
|
86
|
+
name: tilt
|
|
79
87
|
prerelease: false
|
|
80
88
|
requirement: &id005 !ruby/object:Gem::Requirement
|
|
81
89
|
none: false
|
|
82
90
|
requirements:
|
|
83
|
-
- - "
|
|
91
|
+
- - "="
|
|
84
92
|
- !ruby/object:Gem::Version
|
|
85
|
-
hash:
|
|
93
|
+
hash: 13
|
|
86
94
|
segments:
|
|
87
|
-
-
|
|
88
|
-
|
|
95
|
+
- 1
|
|
96
|
+
- 1
|
|
97
|
+
version: "1.1"
|
|
89
98
|
type: :runtime
|
|
90
99
|
version_requirements: *id005
|
|
91
100
|
- !ruby/object:Gem::Dependency
|
|
92
|
-
name:
|
|
101
|
+
name: dictionary
|
|
93
102
|
prerelease: false
|
|
94
103
|
requirement: &id006 !ruby/object:Gem::Requirement
|
|
95
104
|
none: false
|
|
96
105
|
requirements:
|
|
97
|
-
- - "
|
|
106
|
+
- - "="
|
|
98
107
|
- !ruby/object:Gem::Version
|
|
99
|
-
hash:
|
|
108
|
+
hash: 23
|
|
100
109
|
segments:
|
|
110
|
+
- 1
|
|
101
111
|
- 0
|
|
102
|
-
|
|
112
|
+
- 0
|
|
113
|
+
version: 1.0.0
|
|
103
114
|
type: :runtime
|
|
104
115
|
version_requirements: *id006
|
|
105
116
|
- !ruby/object:Gem::Dependency
|
|
106
|
-
name:
|
|
117
|
+
name: json
|
|
107
118
|
prerelease: false
|
|
108
119
|
requirement: &id007 !ruby/object:Gem::Requirement
|
|
109
120
|
none: false
|
|
110
121
|
requirements:
|
|
111
|
-
- - "
|
|
122
|
+
- - "="
|
|
112
123
|
- !ruby/object:Gem::Version
|
|
113
|
-
hash:
|
|
124
|
+
hash: 11
|
|
114
125
|
segments:
|
|
115
|
-
-
|
|
116
|
-
|
|
126
|
+
- 1
|
|
127
|
+
- 4
|
|
128
|
+
- 6
|
|
129
|
+
version: 1.4.6
|
|
117
130
|
type: :runtime
|
|
118
131
|
version_requirements: *id007
|
|
119
132
|
- !ruby/object:Gem::Dependency
|
|
120
|
-
name:
|
|
133
|
+
name: addressable
|
|
121
134
|
prerelease: false
|
|
122
135
|
requirement: &id008 !ruby/object:Gem::Requirement
|
|
123
136
|
none: false
|
|
124
137
|
requirements:
|
|
125
|
-
- - "
|
|
138
|
+
- - "="
|
|
126
139
|
- !ruby/object:Gem::Version
|
|
127
|
-
hash:
|
|
140
|
+
hash: 5
|
|
128
141
|
segments:
|
|
129
|
-
-
|
|
130
|
-
|
|
142
|
+
- 2
|
|
143
|
+
- 2
|
|
144
|
+
- 1
|
|
145
|
+
version: 2.2.1
|
|
131
146
|
type: :runtime
|
|
132
147
|
version_requirements: *id008
|
|
133
148
|
- !ruby/object:Gem::Dependency
|
|
134
|
-
name:
|
|
149
|
+
name: nokogiri
|
|
135
150
|
prerelease: false
|
|
136
151
|
requirement: &id009 !ruby/object:Gem::Requirement
|
|
137
152
|
none: false
|
|
138
153
|
requirements:
|
|
139
|
-
- - "
|
|
154
|
+
- - "="
|
|
140
155
|
- !ruby/object:Gem::Version
|
|
141
|
-
hash:
|
|
156
|
+
hash: 113
|
|
142
157
|
segments:
|
|
143
|
-
-
|
|
144
|
-
|
|
158
|
+
- 1
|
|
159
|
+
- 4
|
|
160
|
+
- 3
|
|
161
|
+
- 1
|
|
162
|
+
version: 1.4.3.1
|
|
145
163
|
type: :runtime
|
|
146
164
|
version_requirements: *id009
|
|
147
165
|
- !ruby/object:Gem::Dependency
|
|
148
|
-
name:
|
|
166
|
+
name: rack
|
|
149
167
|
prerelease: false
|
|
150
168
|
requirement: &id010 !ruby/object:Gem::Requirement
|
|
151
169
|
none: false
|
|
152
170
|
requirements:
|
|
153
|
-
- - "
|
|
171
|
+
- - "="
|
|
154
172
|
- !ruby/object:Gem::Version
|
|
155
|
-
hash:
|
|
173
|
+
hash: 29
|
|
156
174
|
segments:
|
|
157
|
-
-
|
|
158
|
-
|
|
175
|
+
- 1
|
|
176
|
+
- 2
|
|
177
|
+
- 1
|
|
178
|
+
version: 1.2.1
|
|
159
179
|
type: :runtime
|
|
160
180
|
version_requirements: *id010
|
|
161
181
|
description:
|
|
@@ -192,6 +212,7 @@ files:
|
|
|
192
212
|
- lib/crystal/environment/files_helper.rb
|
|
193
213
|
- lib/crystal/environment/logger.rb
|
|
194
214
|
- lib/crystal/environment.rb
|
|
215
|
+
- lib/crystal/gems.rb
|
|
195
216
|
- lib/crystal/html/controller_helpers/controller_url_helper.rb
|
|
196
217
|
- lib/crystal/html/controller_helpers/flash_helper.rb
|
|
197
218
|
- lib/crystal/html/flash.rb
|
|
@@ -248,7 +269,6 @@ files:
|
|
|
248
269
|
- lib/crystal/support/exception.rb
|
|
249
270
|
- lib/crystal/support/filters.rb
|
|
250
271
|
- lib/crystal/support/format.rb
|
|
251
|
-
- lib/crystal/support/gems.rb
|
|
252
272
|
- lib/crystal/support/micon.rb
|
|
253
273
|
- lib/crystal/support/mime.rb
|
|
254
274
|
- lib/crystal/support/module.rb
|
|
@@ -301,10 +321,10 @@ files:
|
|
|
301
321
|
- spec/controller/error_handling_spec/views/diferrent_error_handling_spec/b.erb
|
|
302
322
|
- spec/controller/error_handling_spec/views/diferrent_error_handling_spec/c.erb
|
|
303
323
|
- spec/controller/error_handling_spec.rb
|
|
304
|
-
- spec/controller/helper.rb
|
|
305
324
|
- spec/controller/http_controller_spec.rb
|
|
325
|
+
- spec/controller/spec_helper.rb
|
|
306
326
|
- spec/conveyor/conveyor_spec.rb
|
|
307
|
-
- spec/conveyor/
|
|
327
|
+
- spec/conveyor/spec_helper.rb
|
|
308
328
|
- spec/environment/_dependency_resolver_spec.rb
|
|
309
329
|
- spec/environment/environment_spec/app/app_plugin/config/ec_layout
|
|
310
330
|
- spec/environment/environment_spec/app/app_plugin/ec_some_file
|
|
@@ -312,39 +332,39 @@ files:
|
|
|
312
332
|
- spec/environment/environment_spec/app/config/config.yml
|
|
313
333
|
- spec/environment/environment_spec/gem_plugin/config/ec_layout
|
|
314
334
|
- spec/environment/environment_spec.rb
|
|
315
|
-
- spec/environment/helper.rb
|
|
316
335
|
- spec/environment/logger_spec.rb
|
|
317
336
|
- spec/environment/minimal_app_spec/app.rb
|
|
318
337
|
- spec/environment/minimal_app_spec.rb
|
|
338
|
+
- spec/environment/spec_helper.rb
|
|
319
339
|
- spec/environment/standard_app_spec.rb
|
|
320
340
|
- spec/environment/standard_app_spec_data/config/init.rb
|
|
321
341
|
- spec/environment/standard_app_spec_data/plugin_a/plugin_a.rb
|
|
322
342
|
- spec/html/basic_html_helper_spec.rb
|
|
323
343
|
- spec/html/flash_spec.rb
|
|
324
344
|
- spec/html/form_helper_spec.rb
|
|
325
|
-
- spec/html/helper.rb
|
|
326
345
|
- spec/html/javascript_helper_spec.rb
|
|
327
346
|
- spec/html/model_helper_spec.rb
|
|
328
347
|
- spec/html/scoped_params_spec.rb
|
|
348
|
+
- spec/html/spec_helper.rb
|
|
329
349
|
- spec/html/url_helper_spec.rb
|
|
330
|
-
- spec/http/helper.rb
|
|
331
350
|
- spec/http/http_spec.rb
|
|
332
351
|
- spec/http/http_spec_data/config/init.rb
|
|
333
352
|
- spec/http/http_spec_data/plugin_b/plugin_b.rb
|
|
353
|
+
- spec/http/spec_helper.rb
|
|
334
354
|
- spec/integration/basic_spec/views/smoke_test_spec/action.erb
|
|
335
355
|
- spec/integration/basic_spec.rb
|
|
336
|
-
- spec/integration/
|
|
337
|
-
- spec/remote/helper.rb
|
|
356
|
+
- spec/integration/spec_helper.rb
|
|
338
357
|
- spec/remote/remote_spec.rb
|
|
358
|
+
- spec/remote/spec_helper.rb
|
|
339
359
|
- spec/router/basic_spec.rb
|
|
340
360
|
- spec/router/configurator_spec.rb
|
|
341
|
-
- spec/router/helper.rb
|
|
342
361
|
- spec/router/integration_spec.rb
|
|
362
|
+
- spec/router/spec_helper.rb
|
|
343
363
|
- spec/support/callbacks_spec.rb
|
|
344
364
|
- spec/support/filters_spec.rb
|
|
345
|
-
- spec/support/helper.rb
|
|
346
365
|
- spec/support/safe_hash_spec.rb
|
|
347
|
-
- spec/
|
|
366
|
+
- spec/support/spec_helper.rb
|
|
367
|
+
- spec/template/spec_helper.rb
|
|
348
368
|
- spec/template/template_spec/file.erb
|
|
349
369
|
- spec/template/template_spec/views/basic/custom_context.erb
|
|
350
370
|
- spec/template/template_spec/views/basic/extension.erb
|