forked from netzke/netzke-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netzke-core.gemspec
312 lines (303 loc) · 13.9 KB
/
netzke-core.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{netzke-core}
s.version = "0.6.7"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sergei Kozlov"]
s.date = %q{2011-03-11}
s.description = %q{Allows building ExtJS/Rails reusable code in a DRY way}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown",
"TODO"
]
s.files = [
".autotest",
"CHANGELOG.rdoc",
"LICENSE",
"Manifest",
"README.markdown",
"Rakefile",
"TODO",
"app/controllers/netzke_controller.rb",
"app/models/netzke_preference.rb",
"autotest/discover.rb",
"config/database.yml",
"features/actions.feature",
"features/basic.feature",
"features/client-server.feature",
"features/complex_component.feature",
"features/component.feature",
"features/component_loader.feature",
"features/composition.feature",
"features/custom_css.feature",
"features/ext.direct.feature",
"features/file_inclusion.feature",
"features/i18n.feature",
"features/inheritance.feature",
"features/js_include.feature",
"features/nested_views.feature",
"features/persistence.feature",
"features/scopes.feature",
"features/step_definitions/custom_css_steps.rb",
"features/step_definitions/generic_steps.rb",
"features/step_definitions/touch_steps.rb",
"features/step_definitions/web_steps.rb",
"features/support/env.rb",
"features/support/paths.rb",
"features/touch.feature",
"init.rb",
"install.rb",
"javascripts/base.js",
"javascripts/core_extensions.js",
"javascripts/ext.js",
"javascripts/touch.js",
"lib/netzke-core.rb",
"lib/netzke/actions.rb",
"lib/netzke/base.rb",
"lib/netzke/composition.rb",
"lib/netzke/configuration.rb",
"lib/netzke/core.rb",
"lib/netzke/core/dynamic_assets.rb",
"lib/netzke/core/masquerading.rb",
"lib/netzke/core/options_hash.rb",
"lib/netzke/core/session.rb",
"lib/netzke/core/version.rb",
"lib/netzke/core_ext.rb",
"lib/netzke/core_ext/array.rb",
"lib/netzke/core_ext/hash.rb",
"lib/netzke/core_ext/string.rb",
"lib/netzke/core_ext/symbol.rb",
"lib/netzke/core_ext/time_with_zone.rb",
"lib/netzke/embedding.rb",
"lib/netzke/ext_component.rb",
"lib/netzke/inheritance.rb",
"lib/netzke/javascript.rb",
"lib/netzke/javascript/scopes.rb",
"lib/netzke/railz.rb",
"lib/netzke/railz/action_view_ext.rb",
"lib/netzke/railz/action_view_ext/ext.rb",
"lib/netzke/railz/action_view_ext/touch.rb",
"lib/netzke/railz/controller_extensions.rb",
"lib/netzke/railz/engine.rb",
"lib/netzke/railz/routes.rb",
"lib/netzke/services.rb",
"lib/netzke/session.rb",
"lib/netzke/state.rb",
"lib/netzke/stylesheets.rb",
"lib/tasks/netzke_core_tasks.rake",
"netzke-core.gemspec",
"spec/component/actions_spec.rb",
"spec/component/base_spec.rb",
"spec/component/composition_spec.rb",
"spec/component/configuration_spec.rb",
"spec/component/javascript_spec.rb",
"spec/component/state_spec.rb",
"spec/core_ext_spec.rb",
"spec/spec.opt",
"spec/spec_helper.rb",
"stylesheets/core.css",
"test/fixtures/roles.yml",
"test/fixtures/users.yml",
"test/rails_app/.gitignore",
"test/rails_app/Gemfile",
"test/rails_app/Gemfile.lock",
"test/rails_app/README",
"test/rails_app/Rakefile",
"test/rails_app/app/components/border_layout_panel.rb",
"test/rails_app/app/components/component_loader.rb",
"test/rails_app/app/components/component_with_actions.rb",
"test/rails_app/app/components/component_with_custom_css.rb",
"test/rails_app/app/components/component_with_custom_css/stylesheets/custom.css",
"test/rails_app/app/components/component_with_included_js.rb",
"test/rails_app/app/components/component_with_js_mixin.rb",
"test/rails_app/app/components/component_with_js_mixin/javascripts/extra_one.js",
"test/rails_app/app/components/component_with_js_mixin/javascripts/extra_two.js",
"test/rails_app/app/components/component_with_js_mixin/javascripts/method_set_one.js",
"test/rails_app/app/components/component_with_js_mixin/javascripts/method_set_two.js",
"test/rails_app/app/components/component_with_session_persistence.rb",
"test/rails_app/app/components/deprecated/server_caller.rb",
"test/rails_app/app/components/ext_direct/composite.rb",
"test/rails_app/app/components/ext_direct/details.rb",
"test/rails_app/app/components/ext_direct/selector.rb",
"test/rails_app/app/components/ext_direct/statistics.rb",
"test/rails_app/app/components/extended_component_with_actions.rb",
"test/rails_app/app/components/extended_component_with_js_mixin.rb",
"test/rails_app/app/components/extended_component_with_js_mixin/javascripts/some_method_set.js",
"test/rails_app/app/components/extended_localized_panel.rb",
"test/rails_app/app/components/extended_server_caller.rb",
"test/rails_app/app/components/hello_world_component.rb",
"test/rails_app/app/components/included.js",
"test/rails_app/app/components/kinda_complex_component.rb",
"test/rails_app/app/components/kinda_complex_component/basic_stuff.rb",
"test/rails_app/app/components/kinda_complex_component/extra_stuff.rb",
"test/rails_app/app/components/loader_of_component_with_custom_css.rb",
"test/rails_app/app/components/localized_panel.rb",
"test/rails_app/app/components/scoped_components/deep_scoped_components/some_deep_scoped_component.rb",
"test/rails_app/app/components/scoped_components/extended_scoped_component.rb",
"test/rails_app/app/components/scoped_components/some_scoped_component.rb",
"test/rails_app/app/components/server_caller.rb",
"test/rails_app/app/components/server_counter.rb",
"test/rails_app/app/components/simple_component.rb",
"test/rails_app/app/components/simple_panel.rb",
"test/rails_app/app/components/simple_tab_panel.rb",
"test/rails_app/app/components/simple_window.rb",
"test/rails_app/app/components/some_composite.rb",
"test/rails_app/app/components/some_ext_component.rb",
"test/rails_app/app/components/touch/hello_world_component.rb",
"test/rails_app/app/components/touch/server_caller.rb",
"test/rails_app/app/components/touch/simple_carousel.rb",
"test/rails_app/app/controllers/application_controller.rb",
"test/rails_app/app/controllers/components_controller.rb",
"test/rails_app/app/controllers/multiple_components_controller.rb",
"test/rails_app/app/controllers/touch_controller.rb",
"test/rails_app/app/controllers/welcome_controller.rb",
"test/rails_app/app/helpers/application_helper.rb",
"test/rails_app/app/helpers/touch_helper.rb",
"test/rails_app/app/views/components/panel_with_autoload.html.erb",
"test/rails_app/app/views/components/some_tab_panel.html.erb",
"test/rails_app/app/views/layouts/application.html.erb",
"test/rails_app/app/views/layouts/nested.html.erb",
"test/rails_app/app/views/layouts/touch.html.erb",
"test/rails_app/app/views/multiple_components/set_one.html.erb",
"test/rails_app/config.ru",
"test/rails_app/config/application.rb",
"test/rails_app/config/boot.rb",
"test/rails_app/config/database.yml",
"test/rails_app/config/environment.rb",
"test/rails_app/config/environments/development.rb",
"test/rails_app/config/environments/production.rb",
"test/rails_app/config/environments/test.rb",
"test/rails_app/config/initializers/backtrace_silencers.rb",
"test/rails_app/config/initializers/inflections.rb",
"test/rails_app/config/initializers/mime_types.rb",
"test/rails_app/config/initializers/netzke.rb",
"test/rails_app/config/initializers/secret_token.rb",
"test/rails_app/config/initializers/session_store.rb",
"test/rails_app/config/locales/en.yml",
"test/rails_app/config/locales/es.yml",
"test/rails_app/config/routes.rb",
"test/rails_app/db/development_structure.sql",
"test/rails_app/db/migrate/20110110132720_create_netzke_component_states.rb",
"test/rails_app/db/schema.rb",
"test/rails_app/db/seeds.rb",
"test/rails_app/lib/tasks/.gitkeep",
"test/rails_app/public/404.html",
"test/rails_app/public/422.html",
"test/rails_app/public/500.html",
"test/rails_app/public/favicon.ico",
"test/rails_app/public/images/rails.png",
"test/rails_app/public/robots.txt",
"test/rails_app/script/rails",
"test/rails_app/spec/controllers/touch_controller_spec.rb",
"test/rails_app/spec/helpers/touch_helper_spec.rb",
"test/rails_app/vendor/plugins/.gitkeep",
"test/test_helper.rb",
"test/unit/core_ext_test.rb",
"test/unit/netzke_core_test.rb",
"test/unit/netzke_preference_test.rb",
"uninstall.rb"
]
s.homepage = %q{http://netzke.org}
s.post_install_message = %q{
========================================================================
Thanks for installing netzke-core!
Netzke home page: http://netzke.org
Netzke Google Groups: http://groups.google.com/group/netzke
Netzke tutorials: http://blog.writelesscode.com
========================================================================
}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.2}
s.summary = %q{Build ExtJS/Rails components with minimum effort}
s.test_files = [
"spec/component/actions_spec.rb",
"spec/component/base_spec.rb",
"spec/component/composition_spec.rb",
"spec/component/configuration_spec.rb",
"spec/component/javascript_spec.rb",
"spec/component/state_spec.rb",
"spec/core_ext_spec.rb",
"spec/spec_helper.rb",
"test/rails_app/app/components/border_layout_panel.rb",
"test/rails_app/app/components/component_loader.rb",
"test/rails_app/app/components/component_with_actions.rb",
"test/rails_app/app/components/component_with_custom_css.rb",
"test/rails_app/app/components/component_with_included_js.rb",
"test/rails_app/app/components/component_with_js_mixin.rb",
"test/rails_app/app/components/component_with_session_persistence.rb",
"test/rails_app/app/components/deprecated/server_caller.rb",
"test/rails_app/app/components/ext_direct/composite.rb",
"test/rails_app/app/components/ext_direct/details.rb",
"test/rails_app/app/components/ext_direct/selector.rb",
"test/rails_app/app/components/ext_direct/statistics.rb",
"test/rails_app/app/components/extended_component_with_actions.rb",
"test/rails_app/app/components/extended_component_with_js_mixin.rb",
"test/rails_app/app/components/extended_localized_panel.rb",
"test/rails_app/app/components/extended_server_caller.rb",
"test/rails_app/app/components/hello_world_component.rb",
"test/rails_app/app/components/kinda_complex_component.rb",
"test/rails_app/app/components/kinda_complex_component/basic_stuff.rb",
"test/rails_app/app/components/kinda_complex_component/extra_stuff.rb",
"test/rails_app/app/components/loader_of_component_with_custom_css.rb",
"test/rails_app/app/components/localized_panel.rb",
"test/rails_app/app/components/nested_component.rb",
"test/rails_app/app/components/scoped_components/deep_scoped_components/some_deep_scoped_component.rb",
"test/rails_app/app/components/scoped_components/extended_scoped_component.rb",
"test/rails_app/app/components/scoped_components/some_scoped_component.rb",
"test/rails_app/app/components/server_caller.rb",
"test/rails_app/app/components/server_counter.rb",
"test/rails_app/app/components/simple_component.rb",
"test/rails_app/app/components/simple_panel.rb",
"test/rails_app/app/components/simple_tab_panel.rb",
"test/rails_app/app/components/simple_window.rb",
"test/rails_app/app/components/some_composite.rb",
"test/rails_app/app/components/some_ext_component.rb",
"test/rails_app/app/components/touch/hello_world_component.rb",
"test/rails_app/app/components/touch/server_caller.rb",
"test/rails_app/app/components/touch/simple_carousel.rb",
"test/rails_app/app/controllers/application_controller.rb",
"test/rails_app/app/controllers/components_controller.rb",
"test/rails_app/app/controllers/multiple_components_controller.rb",
"test/rails_app/app/controllers/touch_controller.rb",
"test/rails_app/app/controllers/welcome_controller.rb",
"test/rails_app/app/helpers/application_helper.rb",
"test/rails_app/app/helpers/touch_helper.rb",
"test/rails_app/config/application.rb",
"test/rails_app/config/boot.rb",
"test/rails_app/config/environment.rb",
"test/rails_app/config/environments/development.rb",
"test/rails_app/config/environments/production.rb",
"test/rails_app/config/environments/test.rb",
"test/rails_app/config/initializers/backtrace_silencers.rb",
"test/rails_app/config/initializers/inflections.rb",
"test/rails_app/config/initializers/mime_types.rb",
"test/rails_app/config/initializers/netzke.rb",
"test/rails_app/config/initializers/secret_token.rb",
"test/rails_app/config/initializers/session_store.rb",
"test/rails_app/config/routes.rb",
"test/rails_app/db/migrate/20110110132720_create_netzke_component_states.rb",
"test/rails_app/db/schema.rb",
"test/rails_app/db/seeds.rb",
"test/rails_app/spec/controllers/touch_controller_spec.rb",
"test/rails_app/spec/helpers/touch_helper_spec.rb",
"test/test_helper.rb",
"test/unit/core_ext_test.rb",
"test/unit/netzke_core_test.rb",
"test/unit/netzke_preference_test.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.1"])
else
s.add_dependency(%q<activesupport>, [">= 3.0.1"])
end
else
s.add_dependency(%q<activesupport>, [">= 3.0.1"])
end
end