netzke-basepack 0.7.0 → 0.7.1

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.
Files changed (169) hide show
  1. data/CHANGELOG.rdoc +9 -1
  2. data/README.md +5 -8
  3. data/Rakefile +0 -1
  4. data/lib/netzke/active_record/attributes.rb +13 -5
  5. data/lib/netzke/basepack.rb +0 -1
  6. data/lib/netzke/basepack/data_accessor.rb +76 -17
  7. data/lib/netzke/basepack/form_panel.rb +23 -34
  8. data/lib/netzke/basepack/form_panel/fields.rb +7 -0
  9. data/lib/netzke/basepack/form_panel/services.rb +6 -3
  10. data/lib/netzke/basepack/grid_panel/services.rb +2 -49
  11. data/lib/netzke/basepack/version.rb +1 -1
  12. data/netzke-basepack.gemspec +158 -154
  13. data/test/{rails_app → basepack_test_app}/.gitignore +2 -1
  14. data/test/basepack_test_app/.rvmrc +1 -0
  15. data/test/{rails_app → basepack_test_app}/Gemfile +2 -3
  16. data/test/{rails_app → basepack_test_app}/Gemfile.lock +80 -70
  17. data/test/{rails_app → basepack_test_app}/README +0 -0
  18. data/test/{rails_app → basepack_test_app}/Rakefile +0 -0
  19. data/test/{rails_app → basepack_test_app}/app/components/author_form.rb +0 -0
  20. data/test/{rails_app → basepack_test_app}/app/components/author_grid.rb +0 -0
  21. data/test/{rails_app → basepack_test_app}/app/components/book_form.rb +3 -2
  22. data/test/{rails_app → basepack_test_app}/app/components/book_form_with_custom_fields.rb +0 -0
  23. data/test/basepack_test_app/app/components/book_form_with_defaults.rb +8 -0
  24. data/test/{rails_app → basepack_test_app}/app/components/book_form_with_nested_attributes.rb +0 -0
  25. data/test/{rails_app → basepack_test_app}/app/components/book_grid.rb +0 -0
  26. data/test/{rails_app → basepack_test_app}/app/components/book_grid_loader.rb +0 -0
  27. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_custom_columns.rb +0 -0
  28. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_default_values.rb +0 -0
  29. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_extra_feedback.rb +0 -0
  30. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_extra_filters.rb +0 -0
  31. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_nested_attributes.rb +0 -0
  32. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_paging.rb +0 -0
  33. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_persistence.rb +0 -0
  34. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_scoped_authors.rb +0 -0
  35. data/test/{rails_app → basepack_test_app}/app/components/book_grid_with_virtual_attributes.rb +1 -1
  36. data/test/{rails_app → basepack_test_app}/app/components/book_paging_form_panel.rb +0 -0
  37. data/test/{rails_app → basepack_test_app}/app/components/book_query_builder.rb +0 -0
  38. data/test/{rails_app → basepack_test_app}/app/components/book_search_panel.rb +0 -0
  39. data/test/{rails_app → basepack_test_app}/app/components/book_search_panel/javascripts/i18n_de.js +0 -0
  40. data/test/{rails_app → basepack_test_app}/app/components/book_with_custom_primary_key_grid.rb +0 -0
  41. data/test/{rails_app → basepack_test_app}/app/components/books_bound_to_author.rb +0 -0
  42. data/test/{rails_app → basepack_test_app}/app/components/double_book_grid.rb +0 -0
  43. data/test/basepack_test_app/app/components/extras/book_presentation.rb +20 -0
  44. data/test/{rails_app → basepack_test_app}/app/components/form_without_model.rb +0 -0
  45. data/test/{rails_app → basepack_test_app}/app/components/generic_user_form.rb +0 -0
  46. data/test/{rails_app → basepack_test_app}/app/components/lockable_book_form.rb +0 -0
  47. data/test/{rails_app → basepack_test_app}/app/components/lockable_user_form.rb +0 -0
  48. data/test/{rails_app → basepack_test_app}/app/components/paging_form_with_search.rb +0 -0
  49. data/test/{rails_app → basepack_test_app}/app/components/simple_accordion.rb +0 -0
  50. data/test/{rails_app → basepack_test_app}/app/components/simple_panel.rb +0 -0
  51. data/test/{rails_app → basepack_test_app}/app/components/simple_tab_panel.rb +0 -0
  52. data/test/{rails_app → basepack_test_app}/app/components/simple_window.rb +0 -0
  53. data/test/{rails_app → basepack_test_app}/app/components/simple_wrapper.rb +0 -0
  54. data/test/{rails_app → basepack_test_app}/app/components/some_accordion_panel.rb +0 -0
  55. data/test/{rails_app → basepack_test_app}/app/components/some_auth_app.rb +0 -0
  56. data/test/{rails_app → basepack_test_app}/app/components/some_border_layout.rb +0 -0
  57. data/test/{rails_app → basepack_test_app}/app/components/some_simple_app.rb +0 -0
  58. data/test/{rails_app → basepack_test_app}/app/components/some_tab_panel.rb +0 -0
  59. data/test/{rails_app → basepack_test_app}/app/components/user_form.rb +1 -1
  60. data/test/{rails_app → basepack_test_app}/app/components/user_form_with_default_fields.rb +0 -0
  61. data/test/{rails_app → basepack_test_app}/app/components/user_grid.rb +0 -0
  62. data/test/{rails_app → basepack_test_app}/app/components/user_grid_with_customized_form_fields.rb +0 -0
  63. data/test/{rails_app → basepack_test_app}/app/components/window_component_loader.rb +0 -0
  64. data/test/{rails_app → basepack_test_app}/app/controllers/application_controller.rb +0 -0
  65. data/test/basepack_test_app/app/controllers/components_controller.rb +10 -0
  66. data/test/basepack_test_app/app/controllers/welcome_controller.rb +9 -0
  67. data/test/basepack_test_app/app/helpers/application_helper.rb +8 -0
  68. data/test/{rails_app → basepack_test_app}/app/helpers/embedded_components_helper.rb +0 -0
  69. data/test/{rails_app → basepack_test_app}/app/models/address.rb +0 -0
  70. data/test/{rails_app → basepack_test_app}/app/models/author.rb +0 -0
  71. data/test/{rails_app → basepack_test_app}/app/models/book.rb +0 -0
  72. data/test/{rails_app → basepack_test_app}/app/models/book_with_custom_primary_key.rb +0 -0
  73. data/test/{rails_app → basepack_test_app}/app/models/role.rb +0 -0
  74. data/test/{rails_app → basepack_test_app}/app/models/user.rb +0 -0
  75. data/test/{rails_app → basepack_test_app}/app/presenters/forms/generic_user.rb +0 -0
  76. data/test/{rails_app → basepack_test_app}/app/views/components/loadable_window.html.erb +0 -0
  77. data/test/{rails_app → basepack_test_app}/app/views/components/simple_panel.html.erb +0 -0
  78. data/test/basepack_test_app/app/views/layouts/application.html.erb +12 -0
  79. data/test/{rails_app/app/views/layouts/application.html.erb → basepack_test_app/app/views/layouts/components.html.erb} +0 -0
  80. data/test/{rails_app → basepack_test_app}/app/views/layouts/nested.html.erb +0 -0
  81. data/test/basepack_test_app/app/views/welcome/index.html.erb +10 -0
  82. data/test/{rails_app → basepack_test_app}/config.ru +0 -0
  83. data/test/{rails_app → basepack_test_app}/config/application.rb +7 -0
  84. data/test/{rails_app → basepack_test_app}/config/boot.rb +0 -0
  85. data/test/{rails_app → basepack_test_app}/config/cucumber.yml +0 -0
  86. data/test/{rails_app → basepack_test_app}/config/database.yml.sample +0 -0
  87. data/test/{rails_app → basepack_test_app}/config/environment.rb +0 -0
  88. data/test/{rails_app → basepack_test_app}/config/environments/development.rb +1 -1
  89. data/test/{rails_app → basepack_test_app}/config/environments/production.rb +0 -0
  90. data/test/{rails_app → basepack_test_app}/config/environments/test.rb +0 -0
  91. data/test/{rails_app → basepack_test_app}/config/initializers/backtrace_silencers.rb +0 -1
  92. data/test/{rails_app → basepack_test_app}/config/initializers/inflections.rb +0 -0
  93. data/test/{rails_app → basepack_test_app}/config/initializers/mime_types.rb +0 -0
  94. data/test/{rails_app → basepack_test_app}/config/initializers/netzke.rb +1 -1
  95. data/test/{rails_app → basepack_test_app}/config/initializers/secret_token.rb +0 -0
  96. data/test/{rails_app → basepack_test_app}/config/initializers/session_store.rb +1 -1
  97. data/test/{rails_app → basepack_test_app}/config/locales/de.yml +0 -0
  98. data/test/{rails_app → basepack_test_app}/config/locales/es.yml +0 -0
  99. data/test/{rails_app → basepack_test_app}/config/routes.rb +0 -0
  100. data/test/basepack_test_app/db/development_structure.sql +88 -0
  101. data/test/{rails_app → basepack_test_app}/db/migrate/20100914104207_create_users.rb +0 -0
  102. data/test/{rails_app → basepack_test_app}/db/migrate/20100914104236_create_roles.rb +0 -0
  103. data/test/{rails_app → basepack_test_app}/db/migrate/20101026185816_create_authors.rb +0 -0
  104. data/test/{rails_app → basepack_test_app}/db/migrate/20101026190021_create_books.rb +0 -0
  105. data/test/{rails_app → basepack_test_app}/db/migrate/20110101143818_create_addresses.rb +0 -0
  106. data/test/{rails_app → basepack_test_app}/db/migrate/20110213213050_create_netzke_component_states.rb +0 -0
  107. data/test/{rails_app → basepack_test_app}/db/migrate/20110701070052_create_book_with_custom_primary_keys.rb +0 -0
  108. data/test/basepack_test_app/db/migrate/20110901114016_add_last_read_at_to_books.rb +9 -0
  109. data/test/{rails_app → basepack_test_app}/db/schema.rb +4 -2
  110. data/test/{rails_app → basepack_test_app}/db/seeds.rb +0 -0
  111. data/test/{rails_app → basepack_test_app}/features/accordion_panel.feature +0 -0
  112. data/test/{rails_app → basepack_test_app}/features/components_in_view.feature +0 -0
  113. data/test/{rails_app → basepack_test_app}/features/form_panel.feature +15 -0
  114. data/test/{rails_app → basepack_test_app}/features/grid_panel.feature +0 -0
  115. data/test/{rails_app → basepack_test_app}/features/grid_panel_with_custom_primary_key.feature +0 -0
  116. data/test/basepack_test_app/features/grid_sorting.feature +39 -0
  117. data/test/{rails_app → basepack_test_app}/features/i18n.feature +0 -0
  118. data/test/{rails_app → basepack_test_app}/features/nested_attributes.feature +0 -0
  119. data/test/{rails_app → basepack_test_app}/features/paging_form_panel.feature +0 -1
  120. data/test/{rails_app → basepack_test_app}/features/search_in_grid.feature +0 -0
  121. data/test/{rails_app → basepack_test_app}/features/simple_app.feature +0 -0
  122. data/test/{rails_app → basepack_test_app}/features/simple_panel.feature +0 -0
  123. data/test/{rails_app → basepack_test_app}/features/step_definitions/accordion_steps.rb +0 -0
  124. data/test/{rails_app → basepack_test_app}/features/step_definitions/ext_steps.rb +0 -0
  125. data/test/{rails_app → basepack_test_app}/features/step_definitions/form_panel_steps.rb +4 -7
  126. data/test/{rails_app → basepack_test_app}/features/step_definitions/generic_steps.rb +0 -0
  127. data/test/{rails_app → basepack_test_app}/features/step_definitions/grid_panel_steps.rb +28 -5
  128. data/test/{rails_app → basepack_test_app}/features/step_definitions/pickle_steps.rb +0 -0
  129. data/test/{rails_app → basepack_test_app}/features/step_definitions/web_steps.rb +0 -0
  130. data/test/{rails_app → basepack_test_app}/features/support/env.rb +2 -5
  131. data/test/{rails_app → basepack_test_app}/features/support/paths.rb +0 -0
  132. data/test/{rails_app → basepack_test_app}/features/support/pickle.rb +0 -0
  133. data/test/{rails_app → basepack_test_app}/features/support/selectors.rb +0 -0
  134. data/test/{rails_app → basepack_test_app}/features/tab_panel.feature +0 -0
  135. data/test/{rails_app → basepack_test_app}/features/validations_in_grid.feature +0 -0
  136. data/test/{rails_app → basepack_test_app}/features/virtual_attributes.feature +0 -0
  137. data/test/{rails_app → basepack_test_app}/features/window.feature +0 -0
  138. data/test/{rails_app → basepack_test_app}/lib/tasks/.gitkeep +0 -0
  139. data/test/{rails_app → basepack_test_app}/lib/tasks/cucumber.rake +0 -0
  140. data/test/{rails_app → basepack_test_app}/public/404.html +0 -0
  141. data/test/{rails_app → basepack_test_app}/public/422.html +0 -0
  142. data/test/{rails_app → basepack_test_app}/public/500.html +0 -0
  143. data/test/{rails_app → basepack_test_app}/public/favicon.ico +0 -0
  144. data/test/{rails_app → basepack_test_app}/public/images/header-deco.gif +0 -0
  145. data/test/{rails_app → basepack_test_app}/public/images/rails.png +0 -0
  146. data/test/{rails_app → basepack_test_app}/public/javascripts/application.js +0 -0
  147. data/test/{rails_app → basepack_test_app}/public/javascripts/controls.js +0 -0
  148. data/test/{rails_app → basepack_test_app}/public/javascripts/dragdrop.js +0 -0
  149. data/test/{rails_app → basepack_test_app}/public/javascripts/effects.js +0 -0
  150. data/test/{rails_app → basepack_test_app}/public/javascripts/prototype.js +0 -0
  151. data/test/{rails_app → basepack_test_app}/public/javascripts/rails.js +0 -0
  152. data/test/{rails_app → basepack_test_app}/public/robots.txt +0 -0
  153. data/test/{rails_app → basepack_test_app}/public/stylesheets/.gitkeep +0 -0
  154. data/test/{rails_app → basepack_test_app}/script/cucumber +0 -0
  155. data/test/{rails_app → basepack_test_app}/script/rails +0 -0
  156. data/test/{rails_app → basepack_test_app}/spec/active_record/attributes_spec.rb +0 -0
  157. data/test/{rails_app → basepack_test_app}/spec/active_record/relation_extensions_spec.rb +0 -0
  158. data/test/{rails_app → basepack_test_app}/spec/components/form_panel_spec.rb +0 -0
  159. data/test/{rails_app → basepack_test_app}/spec/components/grid_panel_spec.rb +0 -0
  160. data/test/{rails_app → basepack_test_app}/spec/factories.rb +0 -0
  161. data/test/{rails_app → basepack_test_app}/spec/spec_helper.rb +0 -0
  162. data/test/{rails_app → basepack_test_app}/test/performance/browsing_test.rb +0 -0
  163. data/test/{rails_app → basepack_test_app}/test/test_helper.rb +0 -0
  164. data/test/{rails_app → basepack_test_app}/vendor/plugins/.gitkeep +0 -0
  165. metadata +198 -207
  166. data/test/rails_app/app/components/book_presentation.rb +0 -18
  167. data/test/rails_app/app/controllers/components_controller.rb +0 -6
  168. data/test/rails_app/app/controllers/welcome_controller.rb +0 -5
  169. data/test/rails_app/app/helpers/application_helper.rb +0 -2
@@ -0,0 +1,9 @@
1
+ class AddLastReadAtToBooks < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :books, :last_read_at, :datetime
4
+ end
5
+
6
+ def self.down
7
+ remove_column :books, :last_read_at
8
+ end
9
+ end
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  # This file is auto-generated from the current state of the database. Instead
2
3
  # of editing this file, please use the migrations feature of Active Record to
3
4
  # incrementally modify your database, and then regenerate this schema definition.
@@ -10,7 +11,7 @@
10
11
  #
11
12
  # It's strongly recommended to check this file into your version control system.
12
13
 
13
- ActiveRecord::Schema.define(:version => 20110701070052) do
14
+ ActiveRecord::Schema.define(:version => 20110901114016) do
14
15
 
15
16
  create_table "addresses", :force => true do |t|
16
17
  t.integer "user_id"
@@ -40,12 +41,13 @@ ActiveRecord::Schema.define(:version => 20110701070052) do
40
41
  t.integer "author_id"
41
42
  t.string "title"
42
43
  t.integer "exemplars"
43
- t.boolean "digitized", :default => false
44
+ t.boolean "digitized", :default => false
44
45
  t.text "notes"
45
46
  t.string "tags"
46
47
  t.integer "rating"
47
48
  t.datetime "created_at"
48
49
  t.datetime "updated_at"
50
+ t.datetime "last_read_at"
49
51
  end
50
52
 
51
53
  create_table "netzke_component_states", :force => true do |t|
File without changes
@@ -11,6 +11,12 @@ Scenario: UserForm should be rendered properly along with the data for the first
11
11
  And I should see "Castaneda"
12
12
  And I should see "writer"
13
13
 
14
+ @javascript
15
+ Scenario: A form should be rendered properly along with the data for the specified record
16
+ Given a book exists with title: "Great Book", last_read_at: "2005-01-23"
17
+ When I go to the BookFormWithDefaults test page
18
+ Then the form should show title: "Great Book", last_read_at: "2005-01-23"
19
+
14
20
  @javascript
15
21
  Scenario: Editing the record
16
22
  Given a role exists with name: "musician"
@@ -93,3 +99,12 @@ Scenario: Checkbox field should work properly
93
99
  And I wait for the response from the server
94
100
  Then I should not see "Title can't be blank"
95
101
  But I should see "Success!"
102
+
103
+ @javascript
104
+ Scenario: Setting date
105
+ Given a book exists with title: "Some Title"
106
+ When I go to the BookFormWithDefaults test page
107
+ Then I fill in "Last read at:" with "2005-01-23"
108
+ And I press "Apply"
109
+ And I wait for the response from the server
110
+ Then a book should exist with last_read_at: "2005-01-23"
@@ -0,0 +1,39 @@
1
+ Feature: Grid sorting
2
+ In order to value
3
+ As a role
4
+ I want feature
5
+
6
+ @javascript
7
+ Scenario: Sorting on regular column
8
+ Given the following books exist:
9
+ | title |
10
+ | Belief |
11
+ | Cosmos |
12
+ | Avatar |
13
+
14
+ When I go to the BookGrid test page
15
+ And I click on column "Title"
16
+ And I sleep 1 second
17
+ Then the grid should have records sorted by "Title"
18
+
19
+ When I click on column "Title"
20
+ And I sleep 1 second
21
+ Then the grid should have records sorted by "Title" desc
22
+
23
+ @javascript
24
+ Scenario: Sorting on association column
25
+ Given an author exists with first_name: "Herman"
26
+ And a book exists with title: "Damian", author: that author
27
+ And an author exists with first_name: "Carlos"
28
+ And a book exists with title: "Journey", author: that author
29
+ And an author exists with first_name: "John"
30
+ And a book exists with title: "Magus", author: that author
31
+
32
+ When I go to the BookGridWithCustomColumns test page
33
+ And I click on column "Author first name"
34
+ And I sleep 1 second
35
+ Then the grid should have records sorted by "Author first name"
36
+
37
+ And I click on column "Author first name"
38
+ And I sleep 1 second
39
+ Then the grid should have records sorted by "Author first name" desc
@@ -64,4 +64,3 @@ Scenario: I must see total records value
64
64
 
65
65
  When I go to the BookPagingFormPanel test page
66
66
  Then I should see "of 3" within paging toolbar
67
-
@@ -13,21 +13,18 @@ When /^I select "([^"]*)" from combobox "([^"]*)"$/ do |value, combo_label|
13
13
  var combo = Ext.ComponentQuery.query("combobox[fieldLabel='#{combo_label}']")[0];
14
14
  combo = combo || Ext.ComponentQuery.query("combobox[name='#{combo_label}']")[0];
15
15
  var rec = combo.findRecordByDisplay('#{value}');
16
- combo.select( rec );
16
+ combo.select(rec);
17
17
  combo.fireEvent('select', combo, rec );
18
18
  JS
19
19
  end
20
20
 
21
21
  Then /the form should show #{capture_fields}$/ do |fields|
22
- fields = ActiveSupport::JSON.decode("{#{fields}}")
23
22
  page.driver.browser.execute_script(<<-JS).should == true
24
23
  var form = Ext.ComponentQuery.query('form')[0].getForm();
25
- var result = true;
26
- var values = #{fields.to_json};
24
+ var values = {#{fields}};
27
25
  for (var fieldName in values) {
28
- result = (form.findField(fieldName).getValue() === values[fieldName]) || (form.findField(fieldName).getRawValue() === values[fieldName]);
29
- return result;
26
+ if ((form.findField(fieldName).getValue() != values[fieldName]) && (form.findField(fieldName).getRawValue() != values[fieldName])) return false;
30
27
  }
31
- return result;
28
+ return true;
32
29
  JS
33
30
  end
@@ -23,7 +23,7 @@ Then /^the grid should show (\d+) records$/ do |arg1|
23
23
  end
24
24
 
25
25
  When /^I edit row (\d+) of the grid with #{capture_fields}$/ do |rowIndex, fields|
26
- fields = ActiveSupport::JSON.decode("{#{fields}}")
26
+ fields = parse_fields(fields)
27
27
  js_set_fields = fields.each_pair.map do |k,v|
28
28
  "r.set('#{k}', '#{v}');"
29
29
  end.join
@@ -46,10 +46,8 @@ When /^I enable filter on column "([^"]*)" with value "([^"]*)"$/ do |column, va
46
46
  page.driver.browser.execute_script <<-JS
47
47
  var grid = Ext.ComponentQuery.query('gridpanel')[0],
48
48
  filter;
49
- while (!(filter = grid.filters.getFilter('#{column}'))) {
50
- // Need to show the menu once, as only then the filters get created
51
- grid.headerCt.getMenu().showBy(grid.headerCt.items.first());
52
- }
49
+ grid.features[0].createFilters();
50
+ filter = grid.filters.getFilter('#{column}');
53
51
  filter.setValue(#{value});
54
52
  filter.setActive(true);
55
53
  JS
@@ -125,3 +123,28 @@ Then /^I should see columns in order: "([^"]*)", "([^"]*)", "([^"]*)"$/ do |head
125
123
  JS
126
124
  end
127
125
 
126
+ When /^I click on column "([^"]*)"$/ do |column|
127
+ el_id = page.driver.browser.execute_script <<-JS
128
+ return Ext.ComponentQuery.query('gridcolumn[text="#{column}"]')[0].id;
129
+ JS
130
+
131
+ find("##{el_id}").click
132
+ end
133
+
134
+ Then /^the grid should have records sorted by "([^"]*)"\s?(asc|desc)?$/ do |column, dir|
135
+ dir ||= "asc"
136
+
137
+ page.driver.browser.execute_script(<<-JS).should be_true
138
+ var grid = Ext.ComponentQuery.query('gridpanel')[0],
139
+ column = Ext.ComponentQuery.query('gridcolumn[text="#{column}"]')[0],
140
+ fieldName = column.name,
141
+ columnValues = [];
142
+
143
+ grid.getStore().each(function(r){
144
+ var value = column.assoc ? r.get('_meta').associationValues[fieldName] : r.get(fieldName);
145
+ if (value) columnValues.#{dir == "asc" ? "push" : "unshift"}(value);
146
+ });
147
+
148
+ return (columnValues.length > 0) && (columnValues.toString() === Ext.Array.sort(columnValues).toString());
149
+ JS
150
+ end
@@ -5,14 +5,11 @@
5
5
  # files.
6
6
 
7
7
  ENV["RAILS_ENV"] ||= "test"
8
- # require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
9
- # require File.expand_path(File.dirname(__FILE__) + '/../../test/rails_app/config/environment')
10
- # require File.expand_path(File.dirname(__FILE__) + '/../../lib/netzke-core')
11
8
 
12
9
  # Each time recreate test database with migrations
13
- # db_file = File.dirname(__FILE__) + "/../../test/rails_app/db/test.sqlite3"
10
+ # db_file = File.dirname(__FILE__) + "/../../test/basepack_test_app/db/test.sqlite3"
14
11
  # File.delete(db_file) if File.exists?(db_file)
15
- # ActiveRecord::Migrator.migrate(File.dirname(__FILE__) + "/../test/rails_app/db/migrate")
12
+ # ActiveRecord::Migrator.migrate(File.dirname(__FILE__) + "/../test/basepack_test_app/db/migrate")
16
13
 
17
14
  # require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
18
15
  # require 'cucumber/rails/rspec'
File without changes
metadata CHANGED
@@ -1,72 +1,59 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: netzke-basepack
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.1
4
5
  prerelease:
5
- version: 0.7.0
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Sergei Kozlov
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-08-09 00:00:00 +02:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
12
+ date: 2011-09-04 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
17
15
  name: netzke-core
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70122130214940 !ruby/object:Gem::Requirement
20
17
  none: false
21
- requirements:
18
+ requirements:
22
19
  - - ~>
23
- - !ruby/object:Gem::Version
20
+ - !ruby/object:Gem::Version
24
21
  version: 0.7.0
25
22
  type: :runtime
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
28
- name: meta_where
29
23
  prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
31
- none: false
32
- requirements:
33
- - - ~>
34
- - !ruby/object:Gem::Version
35
- version: 1.0.0
36
- type: :runtime
37
- version_requirements: *id002
38
- - !ruby/object:Gem::Dependency
24
+ version_requirements: *70122130214940
25
+ - !ruby/object:Gem::Dependency
39
26
  name: will_paginate
40
- prerelease: false
41
- requirement: &id003 !ruby/object:Gem::Requirement
27
+ requirement: &70122130214460 !ruby/object:Gem::Requirement
42
28
  none: false
43
- requirements:
29
+ requirements:
44
30
  - - ~>
45
- - !ruby/object:Gem::Version
31
+ - !ruby/object:Gem::Version
46
32
  version: 3.0.0
47
33
  type: :runtime
48
- version_requirements: *id003
49
- - !ruby/object:Gem::Dependency
50
- name: acts_as_list
51
34
  prerelease: false
52
- requirement: &id004 !ruby/object:Gem::Requirement
35
+ version_requirements: *70122130214460
36
+ - !ruby/object:Gem::Dependency
37
+ name: acts_as_list
38
+ requirement: &70122130213980 !ruby/object:Gem::Requirement
53
39
  none: false
54
- requirements:
40
+ requirements:
55
41
  - - ~>
56
- - !ruby/object:Gem::Version
42
+ - !ruby/object:Gem::Version
57
43
  version: 0.1.4
58
44
  type: :runtime
59
- version_requirements: *id004
60
- description: A set of full-featured extendible Netzke components (such as FormPanel, GridPanel, Window, BorderLayoutPanel, etc) which can be used as building block for your RIA
45
+ prerelease: false
46
+ version_requirements: *70122130213980
47
+ description: A set of full-featured extendible Netzke components (such as FormPanel,
48
+ GridPanel, Window, BorderLayoutPanel, etc) which can be used as building block for
49
+ your RIA
61
50
  email: sergei@playcode.nl
62
51
  executables: []
63
-
64
52
  extensions: []
65
-
66
- extra_rdoc_files:
53
+ extra_rdoc_files:
67
54
  - LICENSE
68
55
  - README.md
69
- files:
56
+ files:
70
57
  - .autotest
71
58
  - CHANGELOG.rdoc
72
59
  - LICENSE
@@ -141,6 +128,159 @@ files:
141
128
  - netzke-basepack.gemspec
142
129
  - stylesheets/basepack.css
143
130
  - stylesheets/datetimefield.css
131
+ - test/basepack_test_app/.gitignore
132
+ - test/basepack_test_app/.rvmrc
133
+ - test/basepack_test_app/Gemfile
134
+ - test/basepack_test_app/Gemfile.lock
135
+ - test/basepack_test_app/README
136
+ - test/basepack_test_app/Rakefile
137
+ - test/basepack_test_app/app/components/author_form.rb
138
+ - test/basepack_test_app/app/components/author_grid.rb
139
+ - test/basepack_test_app/app/components/book_form.rb
140
+ - test/basepack_test_app/app/components/book_form_with_custom_fields.rb
141
+ - test/basepack_test_app/app/components/book_form_with_defaults.rb
142
+ - test/basepack_test_app/app/components/book_form_with_nested_attributes.rb
143
+ - test/basepack_test_app/app/components/book_grid.rb
144
+ - test/basepack_test_app/app/components/book_grid_loader.rb
145
+ - test/basepack_test_app/app/components/book_grid_with_custom_columns.rb
146
+ - test/basepack_test_app/app/components/book_grid_with_default_values.rb
147
+ - test/basepack_test_app/app/components/book_grid_with_extra_feedback.rb
148
+ - test/basepack_test_app/app/components/book_grid_with_extra_filters.rb
149
+ - test/basepack_test_app/app/components/book_grid_with_nested_attributes.rb
150
+ - test/basepack_test_app/app/components/book_grid_with_paging.rb
151
+ - test/basepack_test_app/app/components/book_grid_with_persistence.rb
152
+ - test/basepack_test_app/app/components/book_grid_with_scoped_authors.rb
153
+ - test/basepack_test_app/app/components/book_grid_with_virtual_attributes.rb
154
+ - test/basepack_test_app/app/components/book_paging_form_panel.rb
155
+ - test/basepack_test_app/app/components/book_query_builder.rb
156
+ - test/basepack_test_app/app/components/book_search_panel.rb
157
+ - test/basepack_test_app/app/components/book_search_panel/javascripts/i18n_de.js
158
+ - test/basepack_test_app/app/components/book_with_custom_primary_key_grid.rb
159
+ - test/basepack_test_app/app/components/books_bound_to_author.rb
160
+ - test/basepack_test_app/app/components/double_book_grid.rb
161
+ - test/basepack_test_app/app/components/extras/book_presentation.rb
162
+ - test/basepack_test_app/app/components/form_without_model.rb
163
+ - test/basepack_test_app/app/components/generic_user_form.rb
164
+ - test/basepack_test_app/app/components/lockable_book_form.rb
165
+ - test/basepack_test_app/app/components/lockable_user_form.rb
166
+ - test/basepack_test_app/app/components/paging_form_with_search.rb
167
+ - test/basepack_test_app/app/components/simple_accordion.rb
168
+ - test/basepack_test_app/app/components/simple_panel.rb
169
+ - test/basepack_test_app/app/components/simple_tab_panel.rb
170
+ - test/basepack_test_app/app/components/simple_window.rb
171
+ - test/basepack_test_app/app/components/simple_wrapper.rb
172
+ - test/basepack_test_app/app/components/some_accordion_panel.rb
173
+ - test/basepack_test_app/app/components/some_auth_app.rb
174
+ - test/basepack_test_app/app/components/some_border_layout.rb
175
+ - test/basepack_test_app/app/components/some_simple_app.rb
176
+ - test/basepack_test_app/app/components/some_tab_panel.rb
177
+ - test/basepack_test_app/app/components/user_form.rb
178
+ - test/basepack_test_app/app/components/user_form_with_default_fields.rb
179
+ - test/basepack_test_app/app/components/user_grid.rb
180
+ - test/basepack_test_app/app/components/user_grid_with_customized_form_fields.rb
181
+ - test/basepack_test_app/app/components/window_component_loader.rb
182
+ - test/basepack_test_app/app/controllers/application_controller.rb
183
+ - test/basepack_test_app/app/controllers/components_controller.rb
184
+ - test/basepack_test_app/app/controllers/welcome_controller.rb
185
+ - test/basepack_test_app/app/helpers/application_helper.rb
186
+ - test/basepack_test_app/app/helpers/embedded_components_helper.rb
187
+ - test/basepack_test_app/app/models/address.rb
188
+ - test/basepack_test_app/app/models/author.rb
189
+ - test/basepack_test_app/app/models/book.rb
190
+ - test/basepack_test_app/app/models/book_with_custom_primary_key.rb
191
+ - test/basepack_test_app/app/models/role.rb
192
+ - test/basepack_test_app/app/models/user.rb
193
+ - test/basepack_test_app/app/presenters/forms/generic_user.rb
194
+ - test/basepack_test_app/app/views/components/loadable_window.html.erb
195
+ - test/basepack_test_app/app/views/components/simple_panel.html.erb
196
+ - test/basepack_test_app/app/views/layouts/application.html.erb
197
+ - test/basepack_test_app/app/views/layouts/components.html.erb
198
+ - test/basepack_test_app/app/views/layouts/nested.html.erb
199
+ - test/basepack_test_app/app/views/welcome/index.html.erb
200
+ - test/basepack_test_app/config.ru
201
+ - test/basepack_test_app/config/application.rb
202
+ - test/basepack_test_app/config/boot.rb
203
+ - test/basepack_test_app/config/cucumber.yml
204
+ - test/basepack_test_app/config/database.yml.sample
205
+ - test/basepack_test_app/config/environment.rb
206
+ - test/basepack_test_app/config/environments/development.rb
207
+ - test/basepack_test_app/config/environments/production.rb
208
+ - test/basepack_test_app/config/environments/test.rb
209
+ - test/basepack_test_app/config/initializers/backtrace_silencers.rb
210
+ - test/basepack_test_app/config/initializers/inflections.rb
211
+ - test/basepack_test_app/config/initializers/mime_types.rb
212
+ - test/basepack_test_app/config/initializers/netzke.rb
213
+ - test/basepack_test_app/config/initializers/secret_token.rb
214
+ - test/basepack_test_app/config/initializers/session_store.rb
215
+ - test/basepack_test_app/config/locales/de.yml
216
+ - test/basepack_test_app/config/locales/es.yml
217
+ - test/basepack_test_app/config/routes.rb
218
+ - test/basepack_test_app/db/development_structure.sql
219
+ - test/basepack_test_app/db/migrate/20100914104207_create_users.rb
220
+ - test/basepack_test_app/db/migrate/20100914104236_create_roles.rb
221
+ - test/basepack_test_app/db/migrate/20101026185816_create_authors.rb
222
+ - test/basepack_test_app/db/migrate/20101026190021_create_books.rb
223
+ - test/basepack_test_app/db/migrate/20110101143818_create_addresses.rb
224
+ - test/basepack_test_app/db/migrate/20110213213050_create_netzke_component_states.rb
225
+ - test/basepack_test_app/db/migrate/20110701070052_create_book_with_custom_primary_keys.rb
226
+ - test/basepack_test_app/db/migrate/20110901114016_add_last_read_at_to_books.rb
227
+ - test/basepack_test_app/db/schema.rb
228
+ - test/basepack_test_app/db/seeds.rb
229
+ - test/basepack_test_app/features/accordion_panel.feature
230
+ - test/basepack_test_app/features/components_in_view.feature
231
+ - test/basepack_test_app/features/form_panel.feature
232
+ - test/basepack_test_app/features/grid_panel.feature
233
+ - test/basepack_test_app/features/grid_panel_with_custom_primary_key.feature
234
+ - test/basepack_test_app/features/grid_sorting.feature
235
+ - test/basepack_test_app/features/i18n.feature
236
+ - test/basepack_test_app/features/nested_attributes.feature
237
+ - test/basepack_test_app/features/paging_form_panel.feature
238
+ - test/basepack_test_app/features/search_in_grid.feature
239
+ - test/basepack_test_app/features/simple_app.feature
240
+ - test/basepack_test_app/features/simple_panel.feature
241
+ - test/basepack_test_app/features/step_definitions/accordion_steps.rb
242
+ - test/basepack_test_app/features/step_definitions/ext_steps.rb
243
+ - test/basepack_test_app/features/step_definitions/form_panel_steps.rb
244
+ - test/basepack_test_app/features/step_definitions/generic_steps.rb
245
+ - test/basepack_test_app/features/step_definitions/grid_panel_steps.rb
246
+ - test/basepack_test_app/features/step_definitions/pickle_steps.rb
247
+ - test/basepack_test_app/features/step_definitions/web_steps.rb
248
+ - test/basepack_test_app/features/support/env.rb
249
+ - test/basepack_test_app/features/support/paths.rb
250
+ - test/basepack_test_app/features/support/pickle.rb
251
+ - test/basepack_test_app/features/support/selectors.rb
252
+ - test/basepack_test_app/features/tab_panel.feature
253
+ - test/basepack_test_app/features/validations_in_grid.feature
254
+ - test/basepack_test_app/features/virtual_attributes.feature
255
+ - test/basepack_test_app/features/window.feature
256
+ - test/basepack_test_app/lib/tasks/.gitkeep
257
+ - test/basepack_test_app/lib/tasks/cucumber.rake
258
+ - test/basepack_test_app/public/404.html
259
+ - test/basepack_test_app/public/422.html
260
+ - test/basepack_test_app/public/500.html
261
+ - test/basepack_test_app/public/favicon.ico
262
+ - test/basepack_test_app/public/images/header-deco.gif
263
+ - test/basepack_test_app/public/images/rails.png
264
+ - test/basepack_test_app/public/javascripts/application.js
265
+ - test/basepack_test_app/public/javascripts/controls.js
266
+ - test/basepack_test_app/public/javascripts/dragdrop.js
267
+ - test/basepack_test_app/public/javascripts/effects.js
268
+ - test/basepack_test_app/public/javascripts/prototype.js
269
+ - test/basepack_test_app/public/javascripts/rails.js
270
+ - test/basepack_test_app/public/robots.txt
271
+ - test/basepack_test_app/public/stylesheets/.gitkeep
272
+ - test/basepack_test_app/script/cucumber
273
+ - test/basepack_test_app/script/rails
274
+ - test/basepack_test_app/spec/active_record/attributes_spec.rb
275
+ - test/basepack_test_app/spec/active_record/relation_extensions_spec.rb
276
+ - test/basepack_test_app/spec/components/form_panel_spec.rb
277
+ - test/basepack_test_app/spec/components/grid_panel_spec.rb
278
+ - test/basepack_test_app/spec/factories.rb
279
+ - test/basepack_test_app/spec/spec_helper.rb
280
+ - test/basepack_test_app/test/performance/browsing_test.rb
281
+ - test/basepack_test_app/test/test_helper.rb
282
+ - test/basepack_test_app/tmp/restart.txt
283
+ - test/basepack_test_app/vendor/plugins/.gitkeep
144
284
  - test/console_with_fixtures.rb
145
285
  - test/fixtures/books.yml
146
286
  - test/fixtures/categories.yml
@@ -150,152 +290,6 @@ files:
150
290
  - test/fixtures/genres.yml
151
291
  - test/fixtures/roles.yml
152
292
  - test/fixtures/users.yml
153
- - test/rails_app/.gitignore
154
- - test/rails_app/Gemfile
155
- - test/rails_app/Gemfile.lock
156
- - test/rails_app/README
157
- - test/rails_app/Rakefile
158
- - test/rails_app/app/components/author_form.rb
159
- - test/rails_app/app/components/author_grid.rb
160
- - test/rails_app/app/components/book_form.rb
161
- - test/rails_app/app/components/book_form_with_custom_fields.rb
162
- - test/rails_app/app/components/book_form_with_nested_attributes.rb
163
- - test/rails_app/app/components/book_grid.rb
164
- - test/rails_app/app/components/book_grid_loader.rb
165
- - test/rails_app/app/components/book_grid_with_custom_columns.rb
166
- - test/rails_app/app/components/book_grid_with_default_values.rb
167
- - test/rails_app/app/components/book_grid_with_extra_feedback.rb
168
- - test/rails_app/app/components/book_grid_with_extra_filters.rb
169
- - test/rails_app/app/components/book_grid_with_nested_attributes.rb
170
- - test/rails_app/app/components/book_grid_with_paging.rb
171
- - test/rails_app/app/components/book_grid_with_persistence.rb
172
- - test/rails_app/app/components/book_grid_with_scoped_authors.rb
173
- - test/rails_app/app/components/book_grid_with_virtual_attributes.rb
174
- - test/rails_app/app/components/book_paging_form_panel.rb
175
- - test/rails_app/app/components/book_presentation.rb
176
- - test/rails_app/app/components/book_query_builder.rb
177
- - test/rails_app/app/components/book_search_panel.rb
178
- - test/rails_app/app/components/book_search_panel/javascripts/i18n_de.js
179
- - test/rails_app/app/components/book_with_custom_primary_key_grid.rb
180
- - test/rails_app/app/components/books_bound_to_author.rb
181
- - test/rails_app/app/components/double_book_grid.rb
182
- - test/rails_app/app/components/form_without_model.rb
183
- - test/rails_app/app/components/generic_user_form.rb
184
- - test/rails_app/app/components/lockable_book_form.rb
185
- - test/rails_app/app/components/lockable_user_form.rb
186
- - test/rails_app/app/components/paging_form_with_search.rb
187
- - test/rails_app/app/components/simple_accordion.rb
188
- - test/rails_app/app/components/simple_panel.rb
189
- - test/rails_app/app/components/simple_tab_panel.rb
190
- - test/rails_app/app/components/simple_window.rb
191
- - test/rails_app/app/components/simple_wrapper.rb
192
- - test/rails_app/app/components/some_accordion_panel.rb
193
- - test/rails_app/app/components/some_auth_app.rb
194
- - test/rails_app/app/components/some_border_layout.rb
195
- - test/rails_app/app/components/some_simple_app.rb
196
- - test/rails_app/app/components/some_tab_panel.rb
197
- - test/rails_app/app/components/user_form.rb
198
- - test/rails_app/app/components/user_form_with_default_fields.rb
199
- - test/rails_app/app/components/user_grid.rb
200
- - test/rails_app/app/components/user_grid_with_customized_form_fields.rb
201
- - test/rails_app/app/components/window_component_loader.rb
202
- - test/rails_app/app/controllers/application_controller.rb
203
- - test/rails_app/app/controllers/components_controller.rb
204
- - test/rails_app/app/controllers/welcome_controller.rb
205
- - test/rails_app/app/helpers/application_helper.rb
206
- - test/rails_app/app/helpers/embedded_components_helper.rb
207
- - test/rails_app/app/models/address.rb
208
- - test/rails_app/app/models/author.rb
209
- - test/rails_app/app/models/book.rb
210
- - test/rails_app/app/models/book_with_custom_primary_key.rb
211
- - test/rails_app/app/models/role.rb
212
- - test/rails_app/app/models/user.rb
213
- - test/rails_app/app/presenters/forms/generic_user.rb
214
- - test/rails_app/app/views/components/loadable_window.html.erb
215
- - test/rails_app/app/views/components/simple_panel.html.erb
216
- - test/rails_app/app/views/layouts/application.html.erb
217
- - test/rails_app/app/views/layouts/nested.html.erb
218
- - test/rails_app/config.ru
219
- - test/rails_app/config/application.rb
220
- - test/rails_app/config/boot.rb
221
- - test/rails_app/config/cucumber.yml
222
- - test/rails_app/config/database.yml.sample
223
- - test/rails_app/config/environment.rb
224
- - test/rails_app/config/environments/development.rb
225
- - test/rails_app/config/environments/production.rb
226
- - test/rails_app/config/environments/test.rb
227
- - test/rails_app/config/initializers/backtrace_silencers.rb
228
- - test/rails_app/config/initializers/inflections.rb
229
- - test/rails_app/config/initializers/mime_types.rb
230
- - test/rails_app/config/initializers/netzke.rb
231
- - test/rails_app/config/initializers/secret_token.rb
232
- - test/rails_app/config/initializers/session_store.rb
233
- - test/rails_app/config/locales/de.yml
234
- - test/rails_app/config/locales/es.yml
235
- - test/rails_app/config/routes.rb
236
- - test/rails_app/db/migrate/20100914104207_create_users.rb
237
- - test/rails_app/db/migrate/20100914104236_create_roles.rb
238
- - test/rails_app/db/migrate/20101026185816_create_authors.rb
239
- - test/rails_app/db/migrate/20101026190021_create_books.rb
240
- - test/rails_app/db/migrate/20110101143818_create_addresses.rb
241
- - test/rails_app/db/migrate/20110213213050_create_netzke_component_states.rb
242
- - test/rails_app/db/migrate/20110701070052_create_book_with_custom_primary_keys.rb
243
- - test/rails_app/db/schema.rb
244
- - test/rails_app/db/seeds.rb
245
- - test/rails_app/features/accordion_panel.feature
246
- - test/rails_app/features/components_in_view.feature
247
- - test/rails_app/features/form_panel.feature
248
- - test/rails_app/features/grid_panel.feature
249
- - test/rails_app/features/grid_panel_with_custom_primary_key.feature
250
- - test/rails_app/features/i18n.feature
251
- - test/rails_app/features/nested_attributes.feature
252
- - test/rails_app/features/paging_form_panel.feature
253
- - test/rails_app/features/search_in_grid.feature
254
- - test/rails_app/features/simple_app.feature
255
- - test/rails_app/features/simple_panel.feature
256
- - test/rails_app/features/step_definitions/accordion_steps.rb
257
- - test/rails_app/features/step_definitions/ext_steps.rb
258
- - test/rails_app/features/step_definitions/form_panel_steps.rb
259
- - test/rails_app/features/step_definitions/generic_steps.rb
260
- - test/rails_app/features/step_definitions/grid_panel_steps.rb
261
- - test/rails_app/features/step_definitions/pickle_steps.rb
262
- - test/rails_app/features/step_definitions/web_steps.rb
263
- - test/rails_app/features/support/env.rb
264
- - test/rails_app/features/support/paths.rb
265
- - test/rails_app/features/support/pickle.rb
266
- - test/rails_app/features/support/selectors.rb
267
- - test/rails_app/features/tab_panel.feature
268
- - test/rails_app/features/validations_in_grid.feature
269
- - test/rails_app/features/virtual_attributes.feature
270
- - test/rails_app/features/window.feature
271
- - test/rails_app/lib/tasks/.gitkeep
272
- - test/rails_app/lib/tasks/cucumber.rake
273
- - test/rails_app/public/404.html
274
- - test/rails_app/public/422.html
275
- - test/rails_app/public/500.html
276
- - test/rails_app/public/favicon.ico
277
- - test/rails_app/public/images/header-deco.gif
278
- - test/rails_app/public/images/rails.png
279
- - test/rails_app/public/javascripts/application.js
280
- - test/rails_app/public/javascripts/controls.js
281
- - test/rails_app/public/javascripts/dragdrop.js
282
- - test/rails_app/public/javascripts/effects.js
283
- - test/rails_app/public/javascripts/prototype.js
284
- - test/rails_app/public/javascripts/rails.js
285
- - test/rails_app/public/robots.txt
286
- - test/rails_app/public/stylesheets/.gitkeep
287
- - test/rails_app/script/cucumber
288
- - test/rails_app/script/rails
289
- - test/rails_app/spec/active_record/attributes_spec.rb
290
- - test/rails_app/spec/active_record/relation_extensions_spec.rb
291
- - test/rails_app/spec/components/form_panel_spec.rb
292
- - test/rails_app/spec/components/grid_panel_spec.rb
293
- - test/rails_app/spec/factories.rb
294
- - test/rails_app/spec/spec_helper.rb
295
- - test/rails_app/test/performance/browsing_test.rb
296
- - test/rails_app/test/test_helper.rb
297
- - test/rails_app/tmp/restart.txt
298
- - test/rails_app/vendor/plugins/.gitkeep
299
293
  - test/schema.rb
300
294
  - test/test_helper.rb
301
295
  - test/unit/accordion_panel_test.rb
@@ -305,35 +299,32 @@ files:
305
299
  - test/unit/netzke_basepack_test.rb
306
300
  - test/unit/tab_panel_test.rb
307
301
  - uninstall.rb
308
- has_rdoc: true
309
302
  homepage: http://netzke.org
310
303
  licenses: []
311
-
312
- post_install_message: "\n\
313
- ========================================================================\n\n Thanks for installing netzke-basepack!\n\n Don't forget to run \"rails generate netzke:baspack\" to copy necessary\n assets to your public folder!\n\n Netzke home page: http://netzke.org\n Netzke Google Groups: http://groups.google.com/group/netzke\n Netzke tutorials: http://blog.writelesscode.com\n\n\
314
- ========================================================================\n\n"
304
+ post_install_message: ! "\n========================================================================\n\n
305
+ \ Thanks for installing netzke-basepack!\n\n Don't forget to run \"rails
306
+ generate netzke:baspack\" to copy necessary\n assets to your public folder!\n\n
307
+ \ Netzke home page: http://netzke.org\n Netzke Google Groups: http://groups.google.com/group/netzke\n
308
+ \ Netzke tutorials: http://blog.writelesscode.com\n\n========================================================================\n\n"
315
309
  rdoc_options: []
316
-
317
- require_paths:
310
+ require_paths:
318
311
  - lib
319
- required_ruby_version: !ruby/object:Gem::Requirement
312
+ required_ruby_version: !ruby/object:Gem::Requirement
320
313
  none: false
321
- requirements:
322
- - - ">="
323
- - !ruby/object:Gem::Version
324
- version: "0"
325
- required_rubygems_version: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - ! '>='
316
+ - !ruby/object:Gem::Version
317
+ version: '0'
318
+ required_rubygems_version: !ruby/object:Gem::Requirement
326
319
  none: false
327
- requirements:
328
- - - ">="
329
- - !ruby/object:Gem::Version
330
- version: "0"
320
+ requirements:
321
+ - - ! '>='
322
+ - !ruby/object:Gem::Version
323
+ version: '0'
331
324
  requirements: []
332
-
333
325
  rubyforge_project:
334
- rubygems_version: 1.6.2
326
+ rubygems_version: 1.8.6
335
327
  signing_key:
336
328
  specification_version: 3
337
329
  summary: Pre-built Rails + ExtJS components for your RIA
338
330
  test_files: []
339
-