netzke-core 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +16 -1
- data/Gemfile +12 -0
- data/README.md +22 -15
- data/Rakefile +19 -38
- data/app/controllers/netzke_controller.rb +1 -79
- data/javascripts/ext.js +17 -13
- data/lib/netzke/base.rb +6 -2
- data/lib/netzke/core/action_config.rb +7 -0
- data/lib/netzke/core/actions.rb +6 -32
- data/lib/netzke/core/client_class.rb +1 -1
- data/lib/netzke/core/component_config.rb +1 -1
- data/lib/netzke/core/composition.rb +17 -111
- data/lib/netzke/core/config_to_dsl_delegator.rb +0 -7
- data/lib/netzke/core/configuration.rb +48 -0
- data/lib/netzke/core/dsl_support.rb +71 -0
- data/lib/netzke/core/dynamic_assets.rb +10 -1
- data/lib/netzke/core/embedding.rb +2 -2
- data/lib/netzke/core/html.rb +29 -0
- data/lib/netzke/core/javascript.rb +32 -26
- data/lib/netzke/core/railz/action_view_ext/ext.rb +2 -2
- data/lib/netzke/core/railz/controller_extensions.rb +96 -3
- data/lib/netzke/core/railz/routes.rb +14 -3
- data/lib/netzke/core/ruby_ext/array.rb +4 -18
- data/lib/netzke/core/ruby_ext/hash.rb +19 -25
- data/lib/netzke/core/ruby_ext/time_with_zone.rb +1 -1
- data/lib/netzke/core/ruby_ext.rb +0 -2
- data/lib/netzke/core/session.rb +8 -1
- data/lib/netzke/core/state.rb +3 -3
- data/lib/netzke/core/version.rb +1 -1
- data/lib/netzke/core.rb +15 -7
- data/lib/netzke-core.rb +2 -9
- data/tasks/app_test_tasks.rake +94 -0
- data/tasks/rake_helper.rb +51 -0
- data/test/core_test_app/README +2 -2
- data/test/core_test_app/app/assets/javascripts/expect/expect.js +1253 -0
- data/test/core_test_app/app/assets/javascripts/mocha/mocha.js +5340 -0
- data/test/core_test_app/app/assets/stylesheets/mocha/mocha.css +231 -0
- data/test/core_test_app/app/components/{component_with_actions.rb → actions.rb} +7 -9
- data/test/core_test_app/app/components/{some_composite.rb → composition.rb} +16 -5
- data/test/core_test_app/app/components/{component_with_custom_css → css_inclusion}/stylesheets/custom.css +2 -2
- data/test/core_test_app/app/components/css_inclusion.rb +12 -0
- data/test/core_test_app/app/components/{component_loader/javascripts/component_loader.js → dynamic_loading/javascripts/dynamic_loading.js} +9 -1
- data/test/core_test_app/app/components/{component_loader.rb → dynamic_loading.rb} +12 -5
- data/test/core_test_app/app/components/{server_caller/javascripts/server_caller.js → endpoints/javascripts/endpoints.js} +10 -6
- data/test/core_test_app/app/components/{server_caller.rb → endpoints.rb} +12 -8
- data/test/core_test_app/app/components/{extended_server_caller.rb → endpoints_extended.rb} +6 -4
- data/test/core_test_app/app/components/ext_direct/composite.rb +5 -1
- data/test/core_test_app/app/components/feedback.rb +26 -0
- data/test/core_test_app/app/components/haml_panel/html/body.html.haml +10 -0
- data/test/core_test_app/app/components/haml_panel/html/server_response.html.haml +3 -0
- data/test/core_test_app/app/components/haml_panel.rb +32 -0
- data/test/core_test_app/app/components/hello_world.rb +1 -0
- data/test/core_test_app/app/components/js_inclusion/javascripts/extra_one.js +2 -0
- data/test/core_test_app/app/components/js_inclusion/javascripts/extra_two.js +2 -0
- data/test/core_test_app/app/components/js_inclusion/javascripts/js_inclusion.js +5 -0
- data/test/core_test_app/app/components/{component_with_js_mixin → js_inclusion}/javascripts/method_set_one.js +0 -0
- data/test/core_test_app/app/components/{component_with_js_mixin → js_inclusion}/javascripts/method_set_two.js +0 -0
- data/test/core_test_app/app/components/{component_with_js_mixin.rb → js_inclusion.rb} +3 -3
- data/test/core_test_app/app/components/js_inclusion_extended/javascripts/some_method_set.js +5 -0
- data/test/core_test_app/app/components/js_inclusion_extended.rb +6 -0
- data/test/core_test_app/app/components/loaded_css_inclusion.rb +22 -0
- data/test/core_test_app/app/components/{localized_panel.rb → localization.rb} +5 -5
- data/test/core_test_app/app/components/localization_extended.rb +2 -0
- data/test/core_test_app/app/components/persistence.rb +60 -0
- data/test/core_test_app/app/components/persistence_with_shared_state.rb +7 -0
- data/test/core_test_app/app/components/plugin_with_actions.rb +24 -0
- data/test/core_test_app/app/components/plugin_with_components.rb +3 -3
- data/test/core_test_app/app/components/plugin_with_endpoints.rb +29 -0
- data/test/core_test_app/app/components/plugins.rb +9 -0
- data/test/core_test_app/app/components/{kinda_complex_component → ruby_modules}/basic_stuff.rb +1 -1
- data/test/core_test_app/app/components/{kinda_complex_component → ruby_modules}/extra_stuff.rb +3 -3
- data/test/core_test_app/app/components/{kinda_complex_component.rb → ruby_modules.rb} +1 -1
- data/test/core_test_app/app/components/scoped/deeply_scoped/scoping.rb +10 -0
- data/test/core_test_app/app/components/scoped/scoping.rb +8 -0
- data/test/core_test_app/app/components/scoped/scoping_extended.rb +8 -0
- data/test/core_test_app/app/components/self_reloading.rb +25 -0
- data/test/core_test_app/app/components/server_counter/javascripts/server_counter.js +4 -4
- data/test/core_test_app/app/components/server_counter.rb +10 -10
- data/test/core_test_app/app/components/simple_authentication_component.rb +1 -0
- data/test/core_test_app/app/components/simple_component.rb +0 -4
- data/test/core_test_app/app/components/simple_composite.rb +1 -1
- data/test/core_test_app/app/components/simple_form_with_file_upload.rb +1 -2
- data/test/core_test_app/app/components/simple_tab_panel.rb +5 -3
- data/test/core_test_app/app/components/{panel_with_tools.rb → tools.rb} +3 -3
- data/test/core_test_app/app/components/window_with_simple_component.rb +1 -0
- data/test/core_test_app/app/controllers/alternative_controller.rb +10 -0
- data/test/core_test_app/app/controllers/specs_controller.rb +11 -0
- data/test/core_test_app/app/views/layouts/application.html.erb +19 -1
- data/test/core_test_app/app/views/simple_rails/multiple_nested.html.erb +2 -2
- data/test/core_test_app/config/boot.rb +3 -10
- data/test/core_test_app/config/environments/development.rb +1 -0
- data/test/core_test_app/config/initializers/netzke.rb +4 -1
- data/test/core_test_app/config/locales/en.yml +11 -4
- data/test/core_test_app/config/locales/es.yml +1 -4
- data/test/core_test_app/config/routes.rb +10 -1
- data/test/core_test_app/core_test_app.tmproj +254 -0
- data/test/core_test_app/db/development.sqlite3 +0 -0
- data/test/core_test_app/{lib/tasks/.gitkeep → db/test.sqlite3} +0 -0
- data/test/core_test_app/log/development.log +78046 -0
- data/test/core_test_app/log/production.log +18 -0
- data/test/core_test_app/log/test.log +120048 -0
- data/test/core_test_app/rails_app.tmproj +324 -0
- data/test/core_test_app/tmp/cache/assets/C8B/BF0/sprockets%2F54de2792b036d1dab855f88599503551 +0 -0
- data/test/core_test_app/tmp/cache/assets/C92/5A0/sprockets%2F39e75754782ee12179bf35c9a0971d80 +0 -0
- data/test/core_test_app/tmp/cache/assets/C99/720/sprockets%2F981d5a1b957a012e380b22011a6d176d +0 -0
- data/test/core_test_app/tmp/cache/assets/C9F/750/sprockets%2F20ce3d64040a5d3a0a8883bd60754356 +0 -0
- data/test/core_test_app/tmp/cache/assets/CC4/C00/sprockets%2Fc615df52887d8c2e67e8413576a419c5 +0 -0
- data/test/core_test_app/tmp/cache/assets/CF1/3F0/sprockets%2Fc69ee42924fab565a3533d56473ce878 +0 -0
- data/test/core_test_app/tmp/cache/assets/D0E/870/sprockets%2Fa593bf4fac106add88c9434141a49663 +0 -0
- data/test/core_test_app/tmp/cache/assets/D14/8E0/sprockets%2F20748e8d1d7d090d122904a9fe6f18fc +0 -0
- data/test/core_test_app/tmp/cache/assets/D3E/DA0/sprockets%2Fa175f1ac5996544b908ba3ba3f64c4f3 +0 -0
- data/test/core_test_app/tmp/cache/assets/D43/C00/sprockets%2F7bc60c758776356d615ab5edff201ee2 +0 -0
- data/test/core_test_app/tmp/cache/assets/D4B/C50/sprockets%2F8483b7e322da338e8f9eb3b30a957e9a +0 -0
- data/test/core_test_app/tmp/cache/assets/D64/090/sprockets%2F5a01ff309c3f2503eb5e4f5667cca4b3 +0 -0
- data/test/core_test_app/tmp/cache/assets/D8B/FB0/sprockets%2F7a86225caaa389f1be600b4f3a2d1ef0 +0 -0
- data/test/core_test_app/tmp/cache/assets/D98/9C0/sprockets%2F18b80e8fe200aebc522e561a867ea6fb +0 -0
- data/test/core_test_app/tmp/cache/assets/DB0/6E0/sprockets%2F03e33f5a4779eeb48bcfc86ee717fb55 +0 -0
- data/test/core_test_app/tmp/cache/assets/DED/7E0/sprockets%2Feaedd52ba538f19e4ab543a3e20ce2c4 +0 -0
- data/test/core_test_app/tmp/cache/assets/E07/FF0/sprockets%2Fb3c071e0a6de36f041adbbdaa8ab060b +0 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214105940.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214110642.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214110749.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214110750.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111025.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111027.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111213.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111214.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111332.html +40 -0
- data/test/core_test_app/tmp/capybara/capybara-20101214111333.html +40 -0
- data/test/core_test_app/{spec/component → tmp/pids/passenger.3000.pid.lock} +0 -0
- metadata +370 -133
- data/.autotest +0 -1
- data/.travis.yml +0 -18
- data/Manifest +0 -50
- data/config/ci/before-travis.sh +0 -10
- data/install.rb +0 -1
- data/lib/netzke/core/options_hash.rb +0 -27
- data/lib/netzke/core/ruby_ext/string.rb +0 -26
- data/lib/netzke/core/ruby_ext/symbol.rb +0 -13
- data/netzke-core.gemspec +0 -253
- data/test/core_test_app/.gitignore +0 -4
- data/test/core_test_app/.powrc +0 -4
- data/test/core_test_app/.rvmrc +0 -1
- data/test/core_test_app/Gemfile +0 -19
- data/test/core_test_app/Gemfile.lock +0 -147
- data/test/core_test_app/app/components/border_layout_panel.rb +0 -4
- data/test/core_test_app/app/components/card_component_loader.rb +0 -25
- data/test/core_test_app/app/components/component_with_custom_css.rb +0 -11
- data/test/core_test_app/app/components/component_with_js_mixin/javascripts/component_with_js_mixin.js +0 -5
- data/test/core_test_app/app/components/component_with_js_mixin/javascripts/extra_one.js +0 -2
- data/test/core_test_app/app/components/component_with_js_mixin/javascripts/extra_two.js +0 -2
- data/test/core_test_app/app/components/component_with_nested_through.rb +0 -28
- data/test/core_test_app/app/components/component_with_required_js.rb +0 -24
- data/test/core_test_app/app/components/dsl_delegated_properties.rb +0 -4
- data/test/core_test_app/app/components/dsl_delegated_properties_base.rb +0 -5
- data/test/core_test_app/app/components/extended_component_with_actions.rb +0 -9
- data/test/core_test_app/app/components/extended_component_with_js_mixin/javascripts/some_method_set.js +0 -5
- data/test/core_test_app/app/components/extended_component_with_js_mixin.rb +0 -10
- data/test/core_test_app/app/components/extended_localized_panel.rb +0 -2
- data/test/core_test_app/app/components/included.js +0 -5
- data/test/core_test_app/app/components/inline_composite.rb +0 -13
- data/test/core_test_app/app/components/loader_of_component_with_custom_css.rb +0 -23
- data/test/core_test_app/app/components/multipane_component_loader.rb +0 -41
- data/test/core_test_app/app/components/nested_component.rb +0 -17
- data/test/core_test_app/app/components/panel_with_plugin.rb +0 -9
- data/test/core_test_app/app/components/scoped_components/deep_scoped_components/some_deep_scoped_component.rb +0 -10
- data/test/core_test_app/app/components/scoped_components/extended_scoped_component.rb +0 -8
- data/test/core_test_app/app/components/scoped_components/some_scoped_component.rb +0 -8
- data/test/core_test_app/app/components/some_ext_component.rb +0 -8
- data/test/core_test_app/app/components/some_plugin.rb +0 -40
- data/test/core_test_app/app/components/stateful_component.rb +0 -46
- data/test/core_test_app/app/components/stateful_component_with_shared_state.rb +0 -11
- data/test/core_test_app/config/database.yml.travis +0 -11
- data/test/core_test_app/db/schema.rb +0 -29
- data/test/core_test_app/features/actions_and_tools.feature +0 -22
- data/test/core_test_app/features/basic.feature +0 -7
- data/test/core_test_app/features/client-server.feature +0 -19
- data/test/core_test_app/features/complex_component.feature +0 -18
- data/test/core_test_app/features/component.feature +0 -10
- data/test/core_test_app/features/component_loader.feature +0 -52
- data/test/core_test_app/features/composition.feature +0 -45
- data/test/core_test_app/features/config_to_dsl_delegation.feature +0 -10
- data/test/core_test_app/features/custom_css.feature +0 -17
- data/test/core_test_app/features/ext.direct.feature +0 -32
- data/test/core_test_app/features/file_inclusion.feature +0 -10
- data/test/core_test_app/features/i18n.feature +0 -35
- data/test/core_test_app/features/inheritance.feature +0 -18
- data/test/core_test_app/features/js_include.feature +0 -20
- data/test/core_test_app/features/nested_views.feature +0 -10
- data/test/core_test_app/features/persistence.feature +0 -34
- data/test/core_test_app/features/plugin.feature +0 -16
- data/test/core_test_app/features/rails_views.feature +0 -16
- data/test/core_test_app/features/scopes.feature +0 -14
- data/test/core_test_app/features/step_definitions/custom_css_steps.rb +0 -7
- data/test/core_test_app/features/step_definitions/generic_steps.rb +0 -64
- data/test/core_test_app/features/step_definitions/web_steps.rb +0 -219
- data/test/core_test_app/features/support/env.rb +0 -58
- data/test/core_test_app/features/support/paths.rb +0 -42
- data/test/core_test_app/spec/action_config_spec.rb +0 -15
- data/test/core_test_app/spec/actions_spec.rb +0 -96
- data/test/core_test_app/spec/base_spec.rb +0 -35
- data/test/core_test_app/spec/client_class_spec.rb +0 -17
- data/test/core_test_app/spec/composition_spec.rb +0 -118
- data/test/core_test_app/spec/core_ext_spec.rb +0 -27
- data/test/core_test_app/spec/endpoint_response_spec.rb +0 -17
- data/test/core_test_app/spec/javascript_spec.rb +0 -33
- data/test/core_test_app/spec/js_class_config_scope.rb +0 -37
- data/test/core_test_app/spec/panel_spec.rb +0 -11
- data/test/core_test_app/spec/services_spec.rb +0 -16
- data/test/core_test_app/spec/spec.opt +0 -2
- data/test/core_test_app/spec/spec_helper.rb +0 -27
- data/test/core_test_app/spec/state_spec.rb +0 -20
- data/test/core_test_app/vendor/plugins/.gitkeep +0 -0
- data/test/unit/core_ext_test.rb +0 -8
- data/test/unit/netzke_core_test.rb +0 -178
- data/uninstall.rb +0 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netzke-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,16 +9,16 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-03-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: uglifier
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,33 +26,130 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
30
|
-
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: execjs
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rails
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '3.2'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: sqlite3
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: redcarpet
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: yard
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: coffee-script
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: pry-rails
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
description: Build complex backend apps in a modular way
|
31
143
|
email: nmcoder@gmail.com
|
32
144
|
executables: []
|
33
145
|
extensions: []
|
34
|
-
extra_rdoc_files:
|
35
|
-
- LICENSE
|
36
|
-
- README.md
|
146
|
+
extra_rdoc_files: []
|
37
147
|
files:
|
38
|
-
- .autotest
|
39
|
-
- .travis.yml
|
40
|
-
- CHANGELOG.md
|
41
|
-
- LICENSE
|
42
|
-
- Manifest
|
43
|
-
- README.md
|
44
|
-
- Rakefile
|
45
|
-
- TODO.md
|
46
148
|
- app/controllers/netzke_controller.rb
|
47
|
-
- config/ci/before-travis.sh
|
48
|
-
- init.rb
|
49
|
-
- install.rb
|
50
149
|
- javascripts/base.js
|
51
150
|
- javascripts/ext.js
|
52
151
|
- javascripts/js_extensions.js
|
53
|
-
- lib/netzke-core.rb
|
54
152
|
- lib/netzke/base.rb
|
55
|
-
- lib/netzke/core.rb
|
56
153
|
- lib/netzke/core/action_config.rb
|
57
154
|
- lib/netzke/core/actions.rb
|
58
155
|
- lib/netzke/core/client_class.rb
|
@@ -61,92 +158,95 @@ files:
|
|
61
158
|
- lib/netzke/core/config_to_dsl_delegator.rb
|
62
159
|
- lib/netzke/core/configuration.rb
|
63
160
|
- lib/netzke/core/css_config.rb
|
161
|
+
- lib/netzke/core/dsl_support.rb
|
64
162
|
- lib/netzke/core/dynamic_assets.rb
|
65
163
|
- lib/netzke/core/embedding.rb
|
66
164
|
- lib/netzke/core/endpoint_response.rb
|
165
|
+
- lib/netzke/core/html.rb
|
67
166
|
- lib/netzke/core/javascript.rb
|
68
|
-
- lib/netzke/core/options_hash.rb
|
69
167
|
- lib/netzke/core/panel.rb
|
70
168
|
- lib/netzke/core/plugins.rb
|
71
|
-
- lib/netzke/core/railz.rb
|
72
|
-
- lib/netzke/core/railz/action_view_ext.rb
|
73
169
|
- lib/netzke/core/railz/action_view_ext/ext.rb
|
170
|
+
- lib/netzke/core/railz/action_view_ext.rb
|
74
171
|
- lib/netzke/core/railz/controller_extensions.rb
|
75
172
|
- lib/netzke/core/railz/engine.rb
|
76
173
|
- lib/netzke/core/railz/routes.rb
|
77
|
-
- lib/netzke/core/
|
174
|
+
- lib/netzke/core/railz.rb
|
78
175
|
- lib/netzke/core/ruby_ext/array.rb
|
79
176
|
- lib/netzke/core/ruby_ext/hash.rb
|
80
|
-
- lib/netzke/core/ruby_ext/string.rb
|
81
|
-
- lib/netzke/core/ruby_ext/symbol.rb
|
82
177
|
- lib/netzke/core/ruby_ext/time_with_zone.rb
|
178
|
+
- lib/netzke/core/ruby_ext.rb
|
83
179
|
- lib/netzke/core/services.rb
|
84
180
|
- lib/netzke/core/session.rb
|
85
181
|
- lib/netzke/core/state.rb
|
86
182
|
- lib/netzke/core/stylesheets.rb
|
87
183
|
- lib/netzke/core/version.rb
|
184
|
+
- lib/netzke/core.rb
|
88
185
|
- lib/netzke/plugin.rb
|
186
|
+
- lib/netzke-core.rb
|
89
187
|
- lib/tasks/netzke_core_tasks.rake
|
90
|
-
- netzke-core.gemspec
|
91
188
|
- stylesheets/core.css
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
- test/core_test_app/app/
|
102
|
-
- test/core_test_app/app/
|
103
|
-
- test/core_test_app/app/
|
104
|
-
- test/core_test_app/app/components/
|
105
|
-
- test/core_test_app/app/components/component_with_custom_css/stylesheets/custom.css
|
106
|
-
- test/core_test_app/app/components/component_with_js_mixin.rb
|
107
|
-
- test/core_test_app/app/components/component_with_js_mixin/javascripts/component_with_js_mixin.js
|
108
|
-
- test/core_test_app/app/components/component_with_js_mixin/javascripts/extra_one.js
|
109
|
-
- test/core_test_app/app/components/component_with_js_mixin/javascripts/extra_two.js
|
110
|
-
- test/core_test_app/app/components/component_with_js_mixin/javascripts/method_set_one.js
|
111
|
-
- test/core_test_app/app/components/component_with_js_mixin/javascripts/method_set_two.js
|
112
|
-
- test/core_test_app/app/components/component_with_nested_through.rb
|
113
|
-
- test/core_test_app/app/components/component_with_prebuilt_toolbar_control.rb
|
189
|
+
- tasks/app_test_tasks.rake
|
190
|
+
- tasks/rake_helper.rb
|
191
|
+
- CHANGELOG.md
|
192
|
+
- Gemfile
|
193
|
+
- LICENSE
|
194
|
+
- Rakefile
|
195
|
+
- README.md
|
196
|
+
- TODO.md
|
197
|
+
- init.rb
|
198
|
+
- test/core_test_app/app/assets/javascripts/expect/expect.js
|
199
|
+
- test/core_test_app/app/assets/javascripts/mocha/mocha.js
|
200
|
+
- test/core_test_app/app/assets/stylesheets/mocha/mocha.css
|
201
|
+
- test/core_test_app/app/components/actions.rb
|
114
202
|
- test/core_test_app/app/components/component_with_prebuilt_toolbar_control/javascripts/component_with_prebuilt_toolbar_control.js
|
115
|
-
- test/core_test_app/app/components/
|
203
|
+
- test/core_test_app/app/components/component_with_prebuilt_toolbar_control.rb
|
204
|
+
- test/core_test_app/app/components/composition.rb
|
116
205
|
- test/core_test_app/app/components/configurable_on_class_level.rb
|
117
|
-
- test/core_test_app/app/components/
|
118
|
-
- test/core_test_app/app/components/
|
206
|
+
- test/core_test_app/app/components/css_inclusion/stylesheets/custom.css
|
207
|
+
- test/core_test_app/app/components/css_inclusion.rb
|
208
|
+
- test/core_test_app/app/components/dynamic_loading/javascripts/dynamic_loading.js
|
209
|
+
- test/core_test_app/app/components/dynamic_loading.rb
|
119
210
|
- test/core_test_app/app/components/dynamic_tab_panel/javascripts/dynamic_tab_panel.js
|
211
|
+
- test/core_test_app/app/components/endpoints/javascripts/endpoints.js
|
212
|
+
- test/core_test_app/app/components/endpoints.rb
|
213
|
+
- test/core_test_app/app/components/endpoints_extended.rb
|
120
214
|
- test/core_test_app/app/components/ext_direct/composite.rb
|
121
215
|
- test/core_test_app/app/components/ext_direct/details.rb
|
122
216
|
- test/core_test_app/app/components/ext_direct/selector.rb
|
123
217
|
- test/core_test_app/app/components/ext_direct/statistics.rb
|
124
|
-
- test/core_test_app/app/components/
|
125
|
-
- test/core_test_app/app/components/
|
126
|
-
- test/core_test_app/app/components/
|
127
|
-
- test/core_test_app/app/components/
|
128
|
-
- test/core_test_app/app/components/extended_server_caller.rb
|
129
|
-
- test/core_test_app/app/components/hello_world.rb
|
218
|
+
- test/core_test_app/app/components/feedback.rb
|
219
|
+
- test/core_test_app/app/components/haml_panel/html/body.html.haml
|
220
|
+
- test/core_test_app/app/components/haml_panel/html/server_response.html.haml
|
221
|
+
- test/core_test_app/app/components/haml_panel.rb
|
130
222
|
- test/core_test_app/app/components/hello_world/javascripts/hello_world.js
|
131
|
-
- test/core_test_app/app/components/
|
132
|
-
- test/core_test_app/app/components/
|
133
|
-
- test/core_test_app/app/components/
|
134
|
-
- test/core_test_app/app/components/
|
135
|
-
- test/core_test_app/app/components/
|
136
|
-
- test/core_test_app/app/components/
|
137
|
-
- test/core_test_app/app/components/
|
138
|
-
- test/core_test_app/app/components/
|
139
|
-
- test/core_test_app/app/components/
|
140
|
-
- test/core_test_app/app/components/
|
141
|
-
- test/core_test_app/app/components/
|
223
|
+
- test/core_test_app/app/components/hello_world.rb
|
224
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/extra_one.js
|
225
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/extra_two.js
|
226
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/js_inclusion.js
|
227
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/method_set_one.js
|
228
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/method_set_two.js
|
229
|
+
- test/core_test_app/app/components/js_inclusion.rb
|
230
|
+
- test/core_test_app/app/components/js_inclusion_extended/javascripts/some_method_set.js
|
231
|
+
- test/core_test_app/app/components/js_inclusion_extended.rb
|
232
|
+
- test/core_test_app/app/components/loaded_css_inclusion.rb
|
233
|
+
- test/core_test_app/app/components/localization.rb
|
234
|
+
- test/core_test_app/app/components/localization_extended.rb
|
235
|
+
- test/core_test_app/app/components/persistence.rb
|
236
|
+
- test/core_test_app/app/components/persistence_with_shared_state.rb
|
237
|
+
- test/core_test_app/app/components/plugin_with_actions.rb
|
142
238
|
- test/core_test_app/app/components/plugin_with_components.rb
|
143
|
-
- test/core_test_app/app/components/
|
144
|
-
- test/core_test_app/app/components/
|
145
|
-
- test/core_test_app/app/components/
|
146
|
-
- test/core_test_app/app/components/
|
147
|
-
- test/core_test_app/app/components/
|
148
|
-
- test/core_test_app/app/components/
|
239
|
+
- test/core_test_app/app/components/plugin_with_endpoints.rb
|
240
|
+
- test/core_test_app/app/components/plugins.rb
|
241
|
+
- test/core_test_app/app/components/ruby_modules/basic_stuff.rb
|
242
|
+
- test/core_test_app/app/components/ruby_modules/extra_stuff.rb
|
243
|
+
- test/core_test_app/app/components/ruby_modules.rb
|
244
|
+
- test/core_test_app/app/components/scoped/deeply_scoped/scoping.rb
|
245
|
+
- test/core_test_app/app/components/scoped/scoping.rb
|
246
|
+
- test/core_test_app/app/components/scoped/scoping_extended.rb
|
247
|
+
- test/core_test_app/app/components/self_reloading.rb
|
149
248
|
- test/core_test_app/app/components/server_counter/javascripts/server_counter.js
|
249
|
+
- test/core_test_app/app/components/server_counter.rb
|
150
250
|
- test/core_test_app/app/components/simple_authentication_component.rb
|
151
251
|
- test/core_test_app/app/components/simple_component.rb
|
152
252
|
- test/core_test_app/app/components/simple_composite.rb
|
@@ -154,15 +254,13 @@ files:
|
|
154
254
|
- test/core_test_app/app/components/simple_panel.rb
|
155
255
|
- test/core_test_app/app/components/simple_tab_panel.rb
|
156
256
|
- test/core_test_app/app/components/simple_window.rb
|
157
|
-
- test/core_test_app/app/components/
|
158
|
-
- test/core_test_app/app/components/some_ext_component.rb
|
159
|
-
- test/core_test_app/app/components/some_plugin.rb
|
160
|
-
- test/core_test_app/app/components/stateful_component.rb
|
161
|
-
- test/core_test_app/app/components/stateful_component_with_shared_state.rb
|
257
|
+
- test/core_test_app/app/components/tools.rb
|
162
258
|
- test/core_test_app/app/components/window_with_simple_component.rb
|
259
|
+
- test/core_test_app/app/controllers/alternative_controller.rb
|
163
260
|
- test/core_test_app/app/controllers/application_controller.rb
|
164
261
|
- test/core_test_app/app/controllers/components_controller.rb
|
165
262
|
- test/core_test_app/app/controllers/simple_rails_controller.rb
|
263
|
+
- test/core_test_app/app/controllers/specs_controller.rb
|
166
264
|
- test/core_test_app/app/controllers/welcome_controller.rb
|
167
265
|
- test/core_test_app/app/helpers/application_helper.rb
|
168
266
|
- test/core_test_app/app/views/components/panel_with_autoload.html.erb
|
@@ -173,11 +271,9 @@ files:
|
|
173
271
|
- test/core_test_app/app/views/simple_rails/multiple_of_different_class.html.erb
|
174
272
|
- test/core_test_app/app/views/simple_rails/multiple_of_same_class.html.erb
|
175
273
|
- test/core_test_app/app/views/simple_rails/panel.html.erb
|
176
|
-
- test/core_test_app/config.ru
|
177
274
|
- test/core_test_app/config/application.rb
|
178
275
|
- test/core_test_app/config/boot.rb
|
179
276
|
- test/core_test_app/config/database.yml
|
180
|
-
- test/core_test_app/config/database.yml.travis
|
181
277
|
- test/core_test_app/config/environment.rb
|
182
278
|
- test/core_test_app/config/environments/development.rb
|
183
279
|
- test/core_test_app/config/environments/production.rb
|
@@ -191,34 +287,15 @@ files:
|
|
191
287
|
- test/core_test_app/config/locales/en.yml
|
192
288
|
- test/core_test_app/config/locales/es.yml
|
193
289
|
- test/core_test_app/config/routes.rb
|
290
|
+
- test/core_test_app/config.ru
|
291
|
+
- test/core_test_app/core_test_app.tmproj
|
292
|
+
- test/core_test_app/db/development.sqlite3
|
194
293
|
- test/core_test_app/db/development_structure.sql
|
195
|
-
- test/core_test_app/db/schema.rb
|
196
294
|
- test/core_test_app/db/seeds.rb
|
197
|
-
- test/core_test_app/
|
198
|
-
- test/core_test_app/
|
199
|
-
- test/core_test_app/
|
200
|
-
- test/core_test_app/
|
201
|
-
- test/core_test_app/features/component.feature
|
202
|
-
- test/core_test_app/features/component_loader.feature
|
203
|
-
- test/core_test_app/features/composition.feature
|
204
|
-
- test/core_test_app/features/config_to_dsl_delegation.feature
|
205
|
-
- test/core_test_app/features/custom_css.feature
|
206
|
-
- test/core_test_app/features/ext.direct.feature
|
207
|
-
- test/core_test_app/features/file_inclusion.feature
|
208
|
-
- test/core_test_app/features/i18n.feature
|
209
|
-
- test/core_test_app/features/inheritance.feature
|
210
|
-
- test/core_test_app/features/js_include.feature
|
211
|
-
- test/core_test_app/features/nested_views.feature
|
212
|
-
- test/core_test_app/features/persistence.feature
|
213
|
-
- test/core_test_app/features/plugin.feature
|
214
|
-
- test/core_test_app/features/rails_views.feature
|
215
|
-
- test/core_test_app/features/scopes.feature
|
216
|
-
- test/core_test_app/features/step_definitions/custom_css_steps.rb
|
217
|
-
- test/core_test_app/features/step_definitions/generic_steps.rb
|
218
|
-
- test/core_test_app/features/step_definitions/web_steps.rb
|
219
|
-
- test/core_test_app/features/support/env.rb
|
220
|
-
- test/core_test_app/features/support/paths.rb
|
221
|
-
- test/core_test_app/lib/tasks/.gitkeep
|
295
|
+
- test/core_test_app/db/test.sqlite3
|
296
|
+
- test/core_test_app/log/development.log
|
297
|
+
- test/core_test_app/log/production.log
|
298
|
+
- test/core_test_app/log/test.log
|
222
299
|
- test/core_test_app/public/404.html
|
223
300
|
- test/core_test_app/public/422.html
|
224
301
|
- test/core_test_app/public/500.html
|
@@ -228,28 +305,40 @@ files:
|
|
228
305
|
- test/core_test_app/public/images/icons/tick.png
|
229
306
|
- test/core_test_app/public/images/rails.png
|
230
307
|
- test/core_test_app/public/robots.txt
|
308
|
+
- test/core_test_app/rails_app.tmproj
|
309
|
+
- test/core_test_app/Rakefile
|
310
|
+
- test/core_test_app/README
|
231
311
|
- test/core_test_app/script/rails
|
232
|
-
- test/core_test_app/
|
233
|
-
- test/core_test_app/
|
234
|
-
- test/core_test_app/
|
235
|
-
- test/core_test_app/
|
236
|
-
- test/core_test_app/
|
237
|
-
- test/core_test_app/
|
238
|
-
- test/core_test_app/
|
239
|
-
- test/core_test_app/
|
240
|
-
- test/core_test_app/
|
241
|
-
- test/core_test_app/
|
242
|
-
- test/core_test_app/
|
243
|
-
- test/core_test_app/
|
244
|
-
- test/core_test_app/
|
245
|
-
- test/core_test_app/
|
246
|
-
- test/core_test_app/
|
312
|
+
- test/core_test_app/tmp/cache/assets/C8B/BF0/sprockets%2F54de2792b036d1dab855f88599503551
|
313
|
+
- test/core_test_app/tmp/cache/assets/C92/5A0/sprockets%2F39e75754782ee12179bf35c9a0971d80
|
314
|
+
- test/core_test_app/tmp/cache/assets/C99/720/sprockets%2F981d5a1b957a012e380b22011a6d176d
|
315
|
+
- test/core_test_app/tmp/cache/assets/C9F/750/sprockets%2F20ce3d64040a5d3a0a8883bd60754356
|
316
|
+
- test/core_test_app/tmp/cache/assets/CC4/C00/sprockets%2Fc615df52887d8c2e67e8413576a419c5
|
317
|
+
- test/core_test_app/tmp/cache/assets/CF1/3F0/sprockets%2Fc69ee42924fab565a3533d56473ce878
|
318
|
+
- test/core_test_app/tmp/cache/assets/D0E/870/sprockets%2Fa593bf4fac106add88c9434141a49663
|
319
|
+
- test/core_test_app/tmp/cache/assets/D14/8E0/sprockets%2F20748e8d1d7d090d122904a9fe6f18fc
|
320
|
+
- test/core_test_app/tmp/cache/assets/D3E/DA0/sprockets%2Fa175f1ac5996544b908ba3ba3f64c4f3
|
321
|
+
- test/core_test_app/tmp/cache/assets/D43/C00/sprockets%2F7bc60c758776356d615ab5edff201ee2
|
322
|
+
- test/core_test_app/tmp/cache/assets/D4B/C50/sprockets%2F8483b7e322da338e8f9eb3b30a957e9a
|
323
|
+
- test/core_test_app/tmp/cache/assets/D64/090/sprockets%2F5a01ff309c3f2503eb5e4f5667cca4b3
|
324
|
+
- test/core_test_app/tmp/cache/assets/D8B/FB0/sprockets%2F7a86225caaa389f1be600b4f3a2d1ef0
|
325
|
+
- test/core_test_app/tmp/cache/assets/D98/9C0/sprockets%2F18b80e8fe200aebc522e561a867ea6fb
|
326
|
+
- test/core_test_app/tmp/cache/assets/DB0/6E0/sprockets%2F03e33f5a4779eeb48bcfc86ee717fb55
|
327
|
+
- test/core_test_app/tmp/cache/assets/DED/7E0/sprockets%2Feaedd52ba538f19e4ab543a3e20ce2c4
|
328
|
+
- test/core_test_app/tmp/cache/assets/E07/FF0/sprockets%2Fb3c071e0a6de36f041adbbdaa8ab060b
|
329
|
+
- test/core_test_app/tmp/capybara/capybara-20101214105940.html
|
330
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110642.html
|
331
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110749.html
|
332
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110750.html
|
333
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111025.html
|
334
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111027.html
|
335
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111213.html
|
336
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111214.html
|
337
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111332.html
|
338
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111333.html
|
339
|
+
- test/core_test_app/tmp/pids/passenger.3000.pid.lock
|
247
340
|
- test/core_test_app/tmp/restart.txt
|
248
|
-
- test/core_test_app/vendor/plugins/.gitkeep
|
249
341
|
- test/test_helper.rb
|
250
|
-
- test/unit/core_ext_test.rb
|
251
|
-
- test/unit/netzke_core_test.rb
|
252
|
-
- uninstall.rb
|
253
342
|
homepage: http://netzke.org
|
254
343
|
licenses: []
|
255
344
|
post_install_message:
|
@@ -262,16 +351,164 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
262
351
|
- - ! '>='
|
263
352
|
- !ruby/object:Gem::Version
|
264
353
|
version: '0'
|
354
|
+
segments:
|
355
|
+
- 0
|
356
|
+
hash: 2194432303104142050
|
265
357
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
266
358
|
none: false
|
267
359
|
requirements:
|
268
360
|
- - ! '>='
|
269
361
|
- !ruby/object:Gem::Version
|
270
|
-
version:
|
362
|
+
version: 1.3.4
|
271
363
|
requirements: []
|
272
364
|
rubyforge_project:
|
273
|
-
rubygems_version: 1.8.
|
365
|
+
rubygems_version: 1.8.23
|
274
366
|
signing_key:
|
275
367
|
specification_version: 3
|
276
|
-
summary: Client-server GUI components with Sencha Ext JS and Ruby
|
277
|
-
test_files:
|
368
|
+
summary: Client-server GUI components with Sencha Ext JS and Ruby on Rails
|
369
|
+
test_files:
|
370
|
+
- test/core_test_app/app/assets/javascripts/expect/expect.js
|
371
|
+
- test/core_test_app/app/assets/javascripts/mocha/mocha.js
|
372
|
+
- test/core_test_app/app/assets/stylesheets/mocha/mocha.css
|
373
|
+
- test/core_test_app/app/components/actions.rb
|
374
|
+
- test/core_test_app/app/components/component_with_prebuilt_toolbar_control/javascripts/component_with_prebuilt_toolbar_control.js
|
375
|
+
- test/core_test_app/app/components/component_with_prebuilt_toolbar_control.rb
|
376
|
+
- test/core_test_app/app/components/composition.rb
|
377
|
+
- test/core_test_app/app/components/configurable_on_class_level.rb
|
378
|
+
- test/core_test_app/app/components/css_inclusion/stylesheets/custom.css
|
379
|
+
- test/core_test_app/app/components/css_inclusion.rb
|
380
|
+
- test/core_test_app/app/components/dynamic_loading/javascripts/dynamic_loading.js
|
381
|
+
- test/core_test_app/app/components/dynamic_loading.rb
|
382
|
+
- test/core_test_app/app/components/dynamic_tab_panel/javascripts/dynamic_tab_panel.js
|
383
|
+
- test/core_test_app/app/components/endpoints/javascripts/endpoints.js
|
384
|
+
- test/core_test_app/app/components/endpoints.rb
|
385
|
+
- test/core_test_app/app/components/endpoints_extended.rb
|
386
|
+
- test/core_test_app/app/components/ext_direct/composite.rb
|
387
|
+
- test/core_test_app/app/components/ext_direct/details.rb
|
388
|
+
- test/core_test_app/app/components/ext_direct/selector.rb
|
389
|
+
- test/core_test_app/app/components/ext_direct/statistics.rb
|
390
|
+
- test/core_test_app/app/components/feedback.rb
|
391
|
+
- test/core_test_app/app/components/haml_panel/html/body.html.haml
|
392
|
+
- test/core_test_app/app/components/haml_panel/html/server_response.html.haml
|
393
|
+
- test/core_test_app/app/components/haml_panel.rb
|
394
|
+
- test/core_test_app/app/components/hello_world/javascripts/hello_world.js
|
395
|
+
- test/core_test_app/app/components/hello_world.rb
|
396
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/extra_one.js
|
397
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/extra_two.js
|
398
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/js_inclusion.js
|
399
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/method_set_one.js
|
400
|
+
- test/core_test_app/app/components/js_inclusion/javascripts/method_set_two.js
|
401
|
+
- test/core_test_app/app/components/js_inclusion.rb
|
402
|
+
- test/core_test_app/app/components/js_inclusion_extended/javascripts/some_method_set.js
|
403
|
+
- test/core_test_app/app/components/js_inclusion_extended.rb
|
404
|
+
- test/core_test_app/app/components/loaded_css_inclusion.rb
|
405
|
+
- test/core_test_app/app/components/localization.rb
|
406
|
+
- test/core_test_app/app/components/localization_extended.rb
|
407
|
+
- test/core_test_app/app/components/persistence.rb
|
408
|
+
- test/core_test_app/app/components/persistence_with_shared_state.rb
|
409
|
+
- test/core_test_app/app/components/plugin_with_actions.rb
|
410
|
+
- test/core_test_app/app/components/plugin_with_components.rb
|
411
|
+
- test/core_test_app/app/components/plugin_with_endpoints.rb
|
412
|
+
- test/core_test_app/app/components/plugins.rb
|
413
|
+
- test/core_test_app/app/components/ruby_modules/basic_stuff.rb
|
414
|
+
- test/core_test_app/app/components/ruby_modules/extra_stuff.rb
|
415
|
+
- test/core_test_app/app/components/ruby_modules.rb
|
416
|
+
- test/core_test_app/app/components/scoped/deeply_scoped/scoping.rb
|
417
|
+
- test/core_test_app/app/components/scoped/scoping.rb
|
418
|
+
- test/core_test_app/app/components/scoped/scoping_extended.rb
|
419
|
+
- test/core_test_app/app/components/self_reloading.rb
|
420
|
+
- test/core_test_app/app/components/server_counter/javascripts/server_counter.js
|
421
|
+
- test/core_test_app/app/components/server_counter.rb
|
422
|
+
- test/core_test_app/app/components/simple_authentication_component.rb
|
423
|
+
- test/core_test_app/app/components/simple_component.rb
|
424
|
+
- test/core_test_app/app/components/simple_composite.rb
|
425
|
+
- test/core_test_app/app/components/simple_form_with_file_upload.rb
|
426
|
+
- test/core_test_app/app/components/simple_panel.rb
|
427
|
+
- test/core_test_app/app/components/simple_tab_panel.rb
|
428
|
+
- test/core_test_app/app/components/simple_window.rb
|
429
|
+
- test/core_test_app/app/components/tools.rb
|
430
|
+
- test/core_test_app/app/components/window_with_simple_component.rb
|
431
|
+
- test/core_test_app/app/controllers/alternative_controller.rb
|
432
|
+
- test/core_test_app/app/controllers/application_controller.rb
|
433
|
+
- test/core_test_app/app/controllers/components_controller.rb
|
434
|
+
- test/core_test_app/app/controllers/simple_rails_controller.rb
|
435
|
+
- test/core_test_app/app/controllers/specs_controller.rb
|
436
|
+
- test/core_test_app/app/controllers/welcome_controller.rb
|
437
|
+
- test/core_test_app/app/helpers/application_helper.rb
|
438
|
+
- test/core_test_app/app/views/components/panel_with_autoload.html.erb
|
439
|
+
- test/core_test_app/app/views/components/some_tab_panel.html.erb
|
440
|
+
- test/core_test_app/app/views/layouts/application.html.erb
|
441
|
+
- test/core_test_app/app/views/layouts/nested.html.erb
|
442
|
+
- test/core_test_app/app/views/simple_rails/multiple_nested.html.erb
|
443
|
+
- test/core_test_app/app/views/simple_rails/multiple_of_different_class.html.erb
|
444
|
+
- test/core_test_app/app/views/simple_rails/multiple_of_same_class.html.erb
|
445
|
+
- test/core_test_app/app/views/simple_rails/panel.html.erb
|
446
|
+
- test/core_test_app/config/application.rb
|
447
|
+
- test/core_test_app/config/boot.rb
|
448
|
+
- test/core_test_app/config/database.yml
|
449
|
+
- test/core_test_app/config/environment.rb
|
450
|
+
- test/core_test_app/config/environments/development.rb
|
451
|
+
- test/core_test_app/config/environments/production.rb
|
452
|
+
- test/core_test_app/config/environments/test.rb
|
453
|
+
- test/core_test_app/config/initializers/backtrace_silencers.rb
|
454
|
+
- test/core_test_app/config/initializers/inflections.rb
|
455
|
+
- test/core_test_app/config/initializers/mime_types.rb
|
456
|
+
- test/core_test_app/config/initializers/netzke.rb
|
457
|
+
- test/core_test_app/config/initializers/secret_token.rb
|
458
|
+
- test/core_test_app/config/initializers/session_store.rb
|
459
|
+
- test/core_test_app/config/locales/en.yml
|
460
|
+
- test/core_test_app/config/locales/es.yml
|
461
|
+
- test/core_test_app/config/routes.rb
|
462
|
+
- test/core_test_app/config.ru
|
463
|
+
- test/core_test_app/core_test_app.tmproj
|
464
|
+
- test/core_test_app/db/development.sqlite3
|
465
|
+
- test/core_test_app/db/development_structure.sql
|
466
|
+
- test/core_test_app/db/seeds.rb
|
467
|
+
- test/core_test_app/db/test.sqlite3
|
468
|
+
- test/core_test_app/log/development.log
|
469
|
+
- test/core_test_app/log/production.log
|
470
|
+
- test/core_test_app/log/test.log
|
471
|
+
- test/core_test_app/public/404.html
|
472
|
+
- test/core_test_app/public/422.html
|
473
|
+
- test/core_test_app/public/500.html
|
474
|
+
- test/core_test_app/public/favicon.ico
|
475
|
+
- test/core_test_app/public/images/icons/accept.png
|
476
|
+
- test/core_test_app/public/images/icons/anchor.png
|
477
|
+
- test/core_test_app/public/images/icons/tick.png
|
478
|
+
- test/core_test_app/public/images/rails.png
|
479
|
+
- test/core_test_app/public/robots.txt
|
480
|
+
- test/core_test_app/rails_app.tmproj
|
481
|
+
- test/core_test_app/Rakefile
|
482
|
+
- test/core_test_app/README
|
483
|
+
- test/core_test_app/script/rails
|
484
|
+
- test/core_test_app/tmp/cache/assets/C8B/BF0/sprockets%2F54de2792b036d1dab855f88599503551
|
485
|
+
- test/core_test_app/tmp/cache/assets/C92/5A0/sprockets%2F39e75754782ee12179bf35c9a0971d80
|
486
|
+
- test/core_test_app/tmp/cache/assets/C99/720/sprockets%2F981d5a1b957a012e380b22011a6d176d
|
487
|
+
- test/core_test_app/tmp/cache/assets/C9F/750/sprockets%2F20ce3d64040a5d3a0a8883bd60754356
|
488
|
+
- test/core_test_app/tmp/cache/assets/CC4/C00/sprockets%2Fc615df52887d8c2e67e8413576a419c5
|
489
|
+
- test/core_test_app/tmp/cache/assets/CF1/3F0/sprockets%2Fc69ee42924fab565a3533d56473ce878
|
490
|
+
- test/core_test_app/tmp/cache/assets/D0E/870/sprockets%2Fa593bf4fac106add88c9434141a49663
|
491
|
+
- test/core_test_app/tmp/cache/assets/D14/8E0/sprockets%2F20748e8d1d7d090d122904a9fe6f18fc
|
492
|
+
- test/core_test_app/tmp/cache/assets/D3E/DA0/sprockets%2Fa175f1ac5996544b908ba3ba3f64c4f3
|
493
|
+
- test/core_test_app/tmp/cache/assets/D43/C00/sprockets%2F7bc60c758776356d615ab5edff201ee2
|
494
|
+
- test/core_test_app/tmp/cache/assets/D4B/C50/sprockets%2F8483b7e322da338e8f9eb3b30a957e9a
|
495
|
+
- test/core_test_app/tmp/cache/assets/D64/090/sprockets%2F5a01ff309c3f2503eb5e4f5667cca4b3
|
496
|
+
- test/core_test_app/tmp/cache/assets/D8B/FB0/sprockets%2F7a86225caaa389f1be600b4f3a2d1ef0
|
497
|
+
- test/core_test_app/tmp/cache/assets/D98/9C0/sprockets%2F18b80e8fe200aebc522e561a867ea6fb
|
498
|
+
- test/core_test_app/tmp/cache/assets/DB0/6E0/sprockets%2F03e33f5a4779eeb48bcfc86ee717fb55
|
499
|
+
- test/core_test_app/tmp/cache/assets/DED/7E0/sprockets%2Feaedd52ba538f19e4ab543a3e20ce2c4
|
500
|
+
- test/core_test_app/tmp/cache/assets/E07/FF0/sprockets%2Fb3c071e0a6de36f041adbbdaa8ab060b
|
501
|
+
- test/core_test_app/tmp/capybara/capybara-20101214105940.html
|
502
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110642.html
|
503
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110749.html
|
504
|
+
- test/core_test_app/tmp/capybara/capybara-20101214110750.html
|
505
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111025.html
|
506
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111027.html
|
507
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111213.html
|
508
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111214.html
|
509
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111332.html
|
510
|
+
- test/core_test_app/tmp/capybara/capybara-20101214111333.html
|
511
|
+
- test/core_test_app/tmp/pids/passenger.3000.pid.lock
|
512
|
+
- test/core_test_app/tmp/restart.txt
|
513
|
+
- test/test_helper.rb
|
514
|
+
has_rdoc:
|
data/.autotest
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
# require 'autotest/redgreen'
|
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 1.9.2
|
4
|
-
- 1.9.3
|
5
|
-
gemfile:
|
6
|
-
- test/core_test_app/Gemfile
|
7
|
-
before_script:
|
8
|
-
- chmod 777 ./config/ci/before-travis.sh
|
9
|
-
- ./config/ci/before-travis.sh
|
10
|
-
script:
|
11
|
-
- export DISPLAY=:99.0
|
12
|
-
- cd test/core_test_app
|
13
|
-
- bundle exec rake db:create db:migrate RAILS_ENV=test
|
14
|
-
- bundle exec rspec spec
|
15
|
-
- bundle exec cucumber features
|
16
|
-
branches:
|
17
|
-
only:
|
18
|
-
- master
|