netzke-basepack 0.6.0 → 0.6.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 (93) hide show
  1. data/CHANGELOG.rdoc +14 -6
  2. data/README.rdoc +16 -31
  3. data/Rakefile +22 -16
  4. data/TODO.rdoc +1 -1
  5. data/app/models/netzke_field_list.rb +29 -29
  6. data/app/models/netzke_model_attr_list.rb +4 -4
  7. data/app/models/netzke_persistent_array_auto_model.rb +9 -9
  8. data/config/database.yml +2 -35
  9. data/features/accordion_panel.feature +1 -1
  10. data/features/form_panel.feature +2 -2
  11. data/features/grid_panel.feature +15 -3
  12. data/features/search_in_grid.feature +4 -4
  13. data/features/simple_panel.feature +4 -4
  14. data/features/step_definitions/pickle_steps.rb +2 -2
  15. data/features/step_definitions/web_steps.rb +5 -5
  16. data/features/support/env.rb +6 -6
  17. data/features/tab_panel.feature +1 -1
  18. data/javascripts/basepack.js +28 -28
  19. data/lib/netzke-basepack.rb +5 -5
  20. data/lib/netzke/active_record.rb +1 -1
  21. data/lib/netzke/active_record/association_attributes.rb +9 -9
  22. data/lib/netzke/active_record/attributes.rb +24 -23
  23. data/lib/netzke/active_record/combobox_options.rb +3 -3
  24. data/lib/netzke/active_record/relation_extensions.rb +4 -4
  25. data/lib/netzke/basepack.rb +4 -4
  26. data/{app/components → lib}/netzke/basepack/accordion_panel.rb +7 -7
  27. data/{app/components → lib}/netzke/basepack/basic_app.rb +18 -18
  28. data/{app/components → lib}/netzke/basepack/basic_app/statusbar_ext.js +0 -0
  29. data/lib/netzke/basepack/border_layout_panel.rb +101 -0
  30. data/{app/components → lib}/netzke/basepack/form_panel.rb +21 -21
  31. data/{app/components → lib}/netzke/basepack/form_panel/fields.rb +29 -36
  32. data/{app/components → lib}/netzke/basepack/form_panel/javascripts/netzkefileupload.js +0 -0
  33. data/{app/components → lib}/netzke/basepack/form_panel/javascripts/pre.js +9 -9
  34. data/{app/components → lib}/netzke/basepack/form_panel/javascripts/xcheckbox.js +1 -1
  35. data/{app/components → lib}/netzke/basepack/form_panel/services.rb +11 -11
  36. data/{app/components → lib}/netzke/basepack/grid_panel.rb +74 -92
  37. data/{app/components → lib}/netzke/basepack/grid_panel/columns.rb +34 -36
  38. data/{app/components → lib}/netzke/basepack/grid_panel/javascript.rb +7 -7
  39. data/{app/components → lib}/netzke/basepack/grid_panel/javascripts/advanced_search.js +10 -10
  40. data/{app/components → lib}/netzke/basepack/grid_panel/javascripts/edit_in_form.js +2 -2
  41. data/{app/components → lib}/netzke/basepack/grid_panel/javascripts/pre.js +31 -31
  42. data/{app/components → lib}/netzke/basepack/grid_panel/javascripts/rows-dd.js +1 -1
  43. data/{app/components → lib}/netzke/basepack/grid_panel/multi_edit_form.rb +2 -2
  44. data/{app/components → lib}/netzke/basepack/grid_panel/record_form_window.rb +3 -3
  45. data/{app/components → lib}/netzke/basepack/grid_panel/search_window.rb +11 -11
  46. data/{app/components → lib}/netzke/basepack/grid_panel/services.rb +28 -28
  47. data/{app/components → lib}/netzke/basepack/panel.rb +0 -0
  48. data/{app/components → lib}/netzke/basepack/search_panel.rb +11 -11
  49. data/{app/components → lib}/netzke/basepack/tab_panel.rb +7 -7
  50. data/lib/netzke/basepack/version.rb +1 -1
  51. data/{app/components → lib}/netzke/basepack/window.rb +14 -14
  52. data/{app/components → lib}/netzke/basepack/wrapper.rb +6 -6
  53. data/lib/netzke/data_accessor.rb +18 -18
  54. data/lib/netzke/fields_configurator.rb +30 -30
  55. data/lib/netzke/json_array_editor.rb +9 -9
  56. data/lib/netzke/masquerade_selector.rb +5 -5
  57. data/locale/en.yml +1 -1
  58. data/netzke-basepack.gemspec +252 -240
  59. data/spec/active_record/attributes_spec.rb +6 -1
  60. data/spec/active_record/relation_extensions_spec.rb +11 -11
  61. data/spec/components/form_panel_spec.rb +13 -19
  62. data/spec/components/grid_panel_spec.rb +1 -1
  63. data/test/rails_app/Gemfile +4 -3
  64. data/test/rails_app/Gemfile.lock +42 -50
  65. data/test/rails_app/app/components/book_grid.rb +4 -0
  66. data/test/rails_app/app/components/generic_user_form.rb +2 -2
  67. data/test/rails_app/app/components/simple_basic_app.rb +3 -3
  68. data/test/rails_app/app/components/simple_panel.rb +1 -1
  69. data/test/rails_app/app/components/some_border_layout.rb +12 -11
  70. data/test/rails_app/app/components/some_search_panel.rb +5 -5
  71. data/test/rails_app/app/components/user_form.rb +1 -1
  72. data/test/rails_app/app/components/window_component_loader.rb +2 -2
  73. data/test/rails_app/app/models/author.rb +7 -0
  74. data/test/rails_app/app/models/book.rb +3 -0
  75. data/test/rails_app/app/models/user.rb +1 -1
  76. data/test/rails_app/config/locales/es.yml +0 -1
  77. data/test/rails_app/config/routes.rb +2 -2
  78. data/test/rails_app/db/development_structure.sql +28 -3
  79. data/test/rails_app/db/migrate/20101026185816_create_authors.rb +14 -0
  80. data/test/rails_app/db/migrate/20101026190021_create_books.rb +17 -0
  81. data/test/rails_app/db/schema.rb +18 -1
  82. data/test/rails_app/public/javascripts/effects.js +1 -1
  83. data/test/rails_app/spec/models/author_spec.rb +5 -0
  84. data/test/rails_app/spec/models/book_spec.rb +5 -0
  85. data/test/test_helper.rb +1 -1
  86. data/test/unit/accordion_panel_test.rb +2 -2
  87. data/test/unit/active_record_basepack_test.rb +9 -9
  88. data/test/unit/fields_configuration_test.rb +4 -4
  89. data/test/unit/grid_panel_test.rb +8 -8
  90. data/test/unit/tab_panel_test.rb +2 -2
  91. metadata +49 -36
  92. data/.gitignore +0 -10
  93. data/app/components/netzke/basepack/border_layout_panel.rb +0 -39
@@ -1,16 +1,16 @@
1
1
  module Netzke
2
2
  module Basepack
3
3
  # = Wrapper
4
- #
4
+ #
5
5
  # Simple Ext.Panel with layout 'fit' that wraps up another Netzke component. Can be useful in HTML pages where
6
- # a component should be dynamically configured, to not reload the entire page after configuration (Wrapper
6
+ # a component should be dynamically configured, to not reload the entire page after configuration (Wrapper
7
7
  # will reload the component automatically).
8
- #
8
+ #
9
9
  # == Configuration
10
10
  # * <tt>:item</tt> - configuration hash for wrapped component
11
- #
11
+ #
12
12
  # Example:
13
- #
13
+ #
14
14
  # netzke :wrapper, :item => {
15
15
  # :class_name => "FormPanel",
16
16
  # :model => "User"
@@ -18,7 +18,7 @@ module Netzke
18
18
  class Wrapper < Netzke::Base
19
19
  js_properties(
20
20
  :layout => 'fit',
21
-
21
+
22
22
  # invisible
23
23
  :header => false,
24
24
  :border => false
@@ -3,25 +3,25 @@ require 'netzke/active_record'
3
3
  module Netzke
4
4
  # This module is included into such data-driven components as GridPanel, FormPanel, etc.
5
5
  module DataAccessor
6
-
6
+
7
7
  # Returns options for comboboxes in grids/forms
8
8
  def combobox_options_for_column(column, method_options = {})
9
9
  query = method_options[:query]
10
-
10
+
11
11
  # First, check if we have options for this column defined in persistent storage
12
12
  options = column[:combobox_options] && column[:combobox_options].split("\n")
13
13
  if options
14
14
  query ? options.select{ |o| o.index(/^#{query}/) }.map{ |el| [el] } : options
15
- else
15
+ else
16
16
  assoc, assoc_method = assoc_and_assoc_method_for_column(column)
17
-
17
+
18
18
  if assoc
19
19
  # Options for an asssociation attribute
20
-
20
+
21
21
  relation = assoc.klass.where({})
22
-
22
+
23
23
  relation = relation.extend_with(method_options[:scope]) if method_options[:scope]
24
-
24
+
25
25
  if assoc.klass.column_names.include?(assoc_method)
26
26
  # apply query
27
27
  relation = relation.where(:"#{assoc_method}".like => "#{query}%") if query.present?
@@ -29,48 +29,48 @@ module Netzke
29
29
  else
30
30
  relation.all.map{ |r| r.send(assoc_method) }.select{ |value| value =~ /^#{query}/ }.map{ |v| [v] }
31
31
  end
32
-
32
+
33
33
  else
34
34
  # Options for a non-association attribute
35
35
  res=data_class.netzke_combo_options_for(column[:name], method_options)
36
-
36
+
37
37
  # ensure it is an array-in-array, as Ext will fail otherwise
38
38
  raise RuntimeError, "netzke_combo_options_for should return an Array" unless res.kind_of? Array
39
39
  return [[]] if res.empty?
40
-
40
+
41
41
  unless res.first.kind_of? Array
42
42
  res=res.map do |v|
43
43
  [v]
44
44
  end
45
45
  end
46
46
  return res
47
-
48
-
47
+
48
+
49
49
  end
50
50
  end
51
51
  end
52
-
52
+
53
53
  # Normalize array of attributes
54
54
  # [:col1, "col2", {:name => :col3}] =>
55
55
  # [{:name => "col1"}, {:name => "col2"}, {:name => "col3"}]
56
56
  def normalize_attrs(attrs)
57
57
  attrs.map{ |a| normalize_attr(a) }
58
58
  end
59
-
59
+
60
60
  # Normalize an attribute, e.g.:
61
- # :first_name =>
61
+ # :first_name =>
62
62
  # {:name => "first_name"}
63
63
  def normalize_attr(a)
64
64
  a.is_a?(Symbol) || a.is_a?(String) ? {:name => a.to_s} : a.merge(:name => a[:name].to_s)
65
65
  end
66
-
66
+
67
67
  # Returns association and association method for a column
68
68
  def assoc_and_assoc_method_for_column(c)
69
69
  assoc_name, assoc_method = c[:name].split('__')
70
70
  assoc = data_class.reflect_on_association(assoc_name.to_sym) if assoc_method
71
71
  [assoc, assoc_method]
72
72
  end
73
-
73
+
74
74
  def association_attr?(name)
75
75
  !!name.to_s.index("__")
76
76
  end
@@ -83,7 +83,7 @@ module Netzke
83
83
  klass || original_data_class
84
84
  end
85
85
  end
86
-
86
+
87
87
  # Model class before model extensions are taken into account
88
88
  def original_data_class
89
89
  @original_data_class ||= begin
@@ -19,34 +19,34 @@ module Netzke
19
19
  }
20
20
  })
21
21
  end
22
-
23
- action :defaults, {:text => 'Restore defaults', :icon => :wand}
24
-
22
+
23
+ action :defaults, {:text => 'Restore defaults', :icon => :wand}
24
+
25
25
  def default_bbar
26
26
  %w{ add edit apply del }.map(&:action) + "-" + [:defaults.action]
27
27
  end
28
-
28
+
29
29
  # Default columns for the configurator
30
30
  def default_columns
31
31
  [
32
- {:name => "id", :attr_type => :integer, :meta => true},
32
+ {:name => "id", :attr_type => :integer, :meta => true},
33
33
  {:name => "position", :attr_type => :integer, :meta => true},
34
34
  {:name => "attr_type", :attr_type => :string, :meta => true},
35
35
  *config[:owner].class.meta_columns.map { |c| c[:name] == "name" ? inject_combo_for_name_column(c) : c }
36
36
  ]
37
37
  end
38
-
38
+
39
39
  def self.js_properties
40
40
  {
41
41
  :init_component => <<-END_OF_JAVASCRIPT.l,
42
42
  function(){
43
43
  #{js_full_class_name}.superclass.initComponent.call(this);
44
-
44
+
45
45
  // Automatically set the correct editor for the default_value column
46
46
  this.on('beforeedit', function(e){
47
47
  var column = this.getColumnModel().getColumnById(this.getColumnModel().getColumnId(e.column));
48
48
  var record = this.getStore().getAt(e.row);
49
-
49
+
50
50
  if (column.dataIndex === "default_value") {
51
51
  if (record.get("name") === this.pri) {
52
52
  // Don't allow setting default value for the primary key
@@ -57,12 +57,12 @@ module Netzke
57
57
  column.setEditor(Ext.create({xtype: this.attrTypeEditorMap[attrType] || "textfield"}));
58
58
  }
59
59
  }
60
-
60
+
61
61
  }, this);
62
-
62
+
63
63
  }
64
64
  END_OF_JAVASCRIPT
65
-
65
+
66
66
  :attr_type_editor_map => {
67
67
  :integer => "numberfield",
68
68
  :boolean => "checkbox",
@@ -71,21 +71,21 @@ module Netzke
71
71
  :date => "datefield",
72
72
  :string => "textfield"
73
73
  },
74
-
74
+
75
75
  # Disable the 'gear' tool for now
76
76
  :on_gear => <<-END_OF_JAVASCRIPT.l,
77
77
  function(){
78
78
  this.feedback("You can't configure configurator (yet)");
79
79
  }
80
80
  END_OF_JAVASCRIPT
81
-
81
+
82
82
  # we need to provide this function so that the server-side commit would happen
83
83
  :get_commit_data => <<-END_OF_JAVASCRIPT.l,
84
84
  function(){
85
85
  return null; // because our commit data is already at the server
86
86
  }
87
87
  END_OF_JAVASCRIPT
88
-
88
+
89
89
  :on_defaults => <<-END_OF_JAVASCRIPT.l,
90
90
  function(){
91
91
  Ext.Msg.confirm('Confirm', 'Are you sure?', function(btn){
@@ -97,25 +97,25 @@ module Netzke
97
97
  END_OF_JAVASCRIPT
98
98
  }
99
99
  end
100
-
100
+
101
101
  def load_defaults(params)
102
102
  # Reload the temp table with default values
103
103
  data_class.replace_data(default_owner_fields)
104
104
 
105
105
  # ... and reflect it in the persistent storage
106
106
  on_data_changed
107
-
107
+
108
108
  # Update the grid
109
109
  {:load_store_data => get_data}
110
110
  end
111
-
111
+
112
112
  # Never show the config tool
113
113
  def config_tool_needed?
114
114
  false
115
115
  end
116
-
116
+
117
117
  private
118
-
118
+
119
119
  # An override
120
120
  def process_data(data, operation)
121
121
  if operation == :update
@@ -124,22 +124,22 @@ module Netzke
124
124
  data_class.find(el["id"]).name => el.reject{ |k,v| k == "id" }
125
125
  })
126
126
  end
127
-
127
+
128
128
  res = super
129
-
129
+
130
130
  NetzkeFieldList.update_fields(config[:owner].global_id, meta_attrs_to_update)
131
-
131
+
132
132
  res
133
133
  else
134
134
  super
135
135
  end
136
136
  end
137
-
137
+
138
138
  # An override
139
139
  def store_data(data)
140
140
  NetzkeFieldList.update_list_for_current_authority(config[:owner].global_id, data, config[:owner].data_class.name)
141
141
  end
142
-
142
+
143
143
  # An override
144
144
  def initial_data
145
145
  NetzkeFieldList.read_list(config[:owner].global_id) || default_owner_fields
@@ -150,21 +150,21 @@ module Netzke
150
150
  netzke_attrs = config[:owner].data_class.netzke_attributes.map{ |a| a[:name] }
151
151
  c.merge(:editor => {:xtype => :combo, :store => netzke_attrs, :force_selection => true})
152
152
  end
153
-
153
+
154
154
  def default_owner_fields
155
155
  config[:owner].initial_columns(false).map(&:deebeefy_values)
156
156
  end
157
-
157
+
158
158
  # This is an override of GridPanel#on_data_changed
159
159
  def on_data_changed
160
- # Default column settings taken from
160
+ # Default column settings taken from
161
161
  defaults_hash = config[:owner].class.meta_columns.inject({}){ |r, c| r.merge!(c[:name] => c[:default_value]) }
162
- stripped_columns = data_class.all_columns.map do |c|
162
+ stripped_columns = data_class.all_columns.map do |c|
163
163
  # reject all keys that are 1) same as defaults
164
- c.reject{ |k,v| defaults_hash[k.to_sym].to_s == v.to_s }
164
+ c.reject{ |k,v| defaults_hash[k.to_sym].to_s == v.to_s }
165
165
  end
166
166
  store_data(stripped_columns)
167
167
  end
168
-
168
+
169
169
  end
170
170
  end
@@ -9,19 +9,19 @@ module Netzke
9
9
  super
10
10
  data_class.configure(:owner => global_id, :columns => dynamic_fields, :initial_data => initial_data)
11
11
  end
12
-
12
+
13
13
  def data_class
14
14
  NetzkePersistentArrayAutoModel
15
15
  end
16
16
 
17
17
  # Fields for NetzkePersistentArrayAutoModel (override it)
18
18
  def dynamic_fields
19
- default_columns.collect do |c|
19
+ default_columns.collect do |c|
20
20
  {
21
- :name => c[:name],
21
+ :name => c[:name],
22
22
  :type => c[:attr_type] == :json ? :text : c[:attr_type], # store :json columns as :text
23
23
  :default => c[:default_value]
24
- }
24
+ }
25
25
  end
26
26
  end
27
27
 
@@ -38,26 +38,26 @@ module Netzke
38
38
  :attr_type => :integer
39
39
  }]
40
40
  end
41
-
41
+
42
42
  # Don't show the config tool
43
43
  # def config_tool_needed?
44
44
  # false
45
45
  # end
46
-
46
+
47
47
  def before_load
48
48
  data_class.rebuild_table
49
49
  super
50
50
  end
51
-
51
+
52
52
  private
53
53
  # Override this
54
54
  def store_data(data); end
55
-
55
+
56
56
  # Override this
57
57
  def initial_data
58
58
  []
59
59
  end
60
-
60
+
61
61
  # This is an override of GridPanel#on_data_changed
62
62
  def on_data_changed
63
63
  store_data(data_class.all_columns)
@@ -1,6 +1,6 @@
1
1
  module Netzke
2
2
  class MasqueradeSelector < TabPanel
3
-
3
+
4
4
  def items
5
5
  @items ||= [{
6
6
  :name => "roles",
@@ -15,8 +15,8 @@ module Netzke
15
15
  },{
16
16
  :name => "users",
17
17
  :preloaded => true,
18
- :class_name => "GridPanel",
19
- :model => 'User',
18
+ :class_name => "GridPanel",
19
+ :model => 'User',
20
20
  :ext_config => {
21
21
  :header => false,
22
22
  :rows_per_page => 10,
@@ -37,7 +37,7 @@ module Netzke
37
37
  }, this);
38
38
  }
39
39
  END_OF_JAVASCRIPT
40
-
40
+
41
41
  :rowclick_handler => <<-END_OF_JAVASCRIPT.l
42
42
  function(grid, rowIndex, e){
43
43
  var mode = grid.id.split("__").pop();
@@ -48,6 +48,6 @@ module Netzke
48
48
  END_OF_JAVASCRIPT
49
49
  }
50
50
  end
51
-
51
+
52
52
  end
53
53
  end
data/locale/en.yml CHANGED
@@ -9,7 +9,7 @@ en:
9
9
  add_in_form: Add in form
10
10
  edit_in_form: Edit in form
11
11
  search: Search
12
-
12
+
13
13
  formats:
14
14
  date: Y-m-d
15
15
  datetime: Y-m-d H:i:s
@@ -5,200 +5,206 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{netzke-basepack}
8
- s.version = "0.6.0"
8
+ s.version = "0.6.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sergei Kozlov"]
12
- s.date = %q{2010-10-24}
12
+ s.date = %q{2010-11-04}
13
13
  s.description = %q{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}
14
14
  s.email = %q{sergei@playcode.nl}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
20
  ".autotest",
21
- ".gitignore",
22
- "CHANGELOG.rdoc",
23
- "LICENSE",
24
- "README.rdoc",
25
- "Rakefile",
26
- "TODO.rdoc",
27
- "app/components/netzke/basepack/accordion_panel.rb",
28
- "app/components/netzke/basepack/basic_app.rb",
29
- "app/components/netzke/basepack/basic_app/statusbar_ext.js",
30
- "app/components/netzke/basepack/border_layout_panel.rb",
31
- "app/components/netzke/basepack/form_panel.rb",
32
- "app/components/netzke/basepack/form_panel/fields.rb",
33
- "app/components/netzke/basepack/form_panel/javascripts/netzkefileupload.js",
34
- "app/components/netzke/basepack/form_panel/javascripts/pre.js",
35
- "app/components/netzke/basepack/form_panel/javascripts/xcheckbox.js",
36
- "app/components/netzke/basepack/form_panel/services.rb",
37
- "app/components/netzke/basepack/grid_panel.rb",
38
- "app/components/netzke/basepack/grid_panel/columns.rb",
39
- "app/components/netzke/basepack/grid_panel/javascript.rb",
40
- "app/components/netzke/basepack/grid_panel/javascripts/advanced_search.js",
41
- "app/components/netzke/basepack/grid_panel/javascripts/edit_in_form.js",
42
- "app/components/netzke/basepack/grid_panel/javascripts/pre.js",
43
- "app/components/netzke/basepack/grid_panel/javascripts/rows-dd.js",
44
- "app/components/netzke/basepack/grid_panel/multi_edit_form.rb",
45
- "app/components/netzke/basepack/grid_panel/record_form_window.rb",
46
- "app/components/netzke/basepack/grid_panel/search_window.rb",
47
- "app/components/netzke/basepack/grid_panel/services.rb",
48
- "app/components/netzke/basepack/panel.rb",
49
- "app/components/netzke/basepack/search_panel.rb",
50
- "app/components/netzke/basepack/tab_panel.rb",
51
- "app/components/netzke/basepack/window.rb",
52
- "app/components/netzke/basepack/wrapper.rb",
53
- "app/models/netzke_field_list.rb",
54
- "app/models/netzke_model_attr_list.rb",
55
- "app/models/netzke_persistent_array_auto_model.rb",
56
- "autotest/discover.rb",
57
- "config/database.yml",
58
- "features/accordion_panel.feature",
59
- "features/basic_app.feature",
60
- "features/form_panel.feature",
61
- "features/grid_panel.feature",
62
- "features/search_in_grid.feature",
63
- "features/simple_panel.feature",
64
- "features/step_definitions/accordion_steps.rb",
65
- "features/step_definitions/generic_steps.rb",
66
- "features/step_definitions/grid_panel_steps.rb",
67
- "features/step_definitions/pickle_steps.rb",
68
- "features/step_definitions/web_steps.rb",
69
- "features/support/env.rb",
70
- "features/support/paths.rb",
71
- "features/support/pickle.rb",
72
- "features/tab_panel.feature",
73
- "features/window.feature",
74
- "from_05_to_06.rdoc",
75
- "generators/netzke_basepack/netzke_basepack_generator.rb",
76
- "generators/netzke_basepack/templates/create_netzke_field_lists.rb",
77
- "generators/netzke_basepack/templates/public_assets/ts-checkbox.gif",
78
- "init.rb",
79
- "install.rb",
80
- "javascripts/basepack.js",
81
- "lib/netzke-basepack.rb",
82
- "lib/netzke/active_record.rb",
83
- "lib/netzke/active_record/association_attributes.rb",
84
- "lib/netzke/active_record/attributes.rb",
85
- "lib/netzke/active_record/combobox_options.rb",
86
- "lib/netzke/active_record/relation_extensions.rb",
87
- "lib/netzke/basepack.rb",
88
- "lib/netzke/basepack/version.rb",
89
- "lib/netzke/basepack/wrap_lazy_loaded.rb",
90
- "lib/netzke/data_accessor.rb",
91
- "lib/netzke/ext.rb",
92
- "lib/netzke/fields_configurator.rb",
93
- "lib/netzke/json_array_editor.rb",
94
- "lib/netzke/masquerade_selector.rb",
95
- "lib/tasks/netzke_basepack_tasks.rake",
96
- "locale/en.yml",
97
- "netzke-basepack.gemspec",
98
- "spec/active_record/attributes_spec.rb",
99
- "spec/active_record/relation_extensions_spec.rb",
100
- "spec/components/form_panel_spec.rb",
101
- "spec/components/grid_panel_spec.rb",
102
- "spec/factories.rb",
103
- "spec/spec_helper.rb",
104
- "stylesheets/basepack.css",
105
- "test/console_with_fixtures.rb",
106
- "test/fixtures/books.yml",
107
- "test/fixtures/categories.yml",
108
- "test/fixtures/cities.yml",
109
- "test/fixtures/continents.yml",
110
- "test/fixtures/countries.yml",
111
- "test/fixtures/genres.yml",
112
- "test/fixtures/roles.yml",
113
- "test/fixtures/users.yml",
114
- "test/rails_app/.gitignore",
115
- "test/rails_app/Gemfile",
116
- "test/rails_app/Gemfile.lock",
117
- "test/rails_app/README",
118
- "test/rails_app/Rakefile",
119
- "test/rails_app/app/components/generic_user_form.rb",
120
- "test/rails_app/app/components/simple_accordion.rb",
121
- "test/rails_app/app/components/simple_basic_app.rb",
122
- "test/rails_app/app/components/simple_panel.rb",
123
- "test/rails_app/app/components/simple_tab_panel.rb",
124
- "test/rails_app/app/components/simple_wrapper.rb",
125
- "test/rails_app/app/components/some_border_layout.rb",
126
- "test/rails_app/app/components/some_search_panel.rb",
127
- "test/rails_app/app/components/some_tab_panel.rb",
128
- "test/rails_app/app/components/user_form.rb",
129
- "test/rails_app/app/components/user_form_with_default_fields.rb",
130
- "test/rails_app/app/components/user_grid.rb",
131
- "test/rails_app/app/components/window_component_loader.rb",
132
- "test/rails_app/app/controllers/application_controller.rb",
133
- "test/rails_app/app/controllers/components_controller.rb",
134
- "test/rails_app/app/controllers/welcome_controller.rb",
135
- "test/rails_app/app/helpers/application_helper.rb",
136
- "test/rails_app/app/models/role.rb",
137
- "test/rails_app/app/models/user.rb",
138
- "test/rails_app/app/presenters/forms/generic_user.rb",
139
- "test/rails_app/app/views/layouts/application.html.erb",
140
- "test/rails_app/config.ru",
141
- "test/rails_app/config/application.rb",
142
- "test/rails_app/config/boot.rb",
143
- "test/rails_app/config/database.yml",
144
- "test/rails_app/config/environment.rb",
145
- "test/rails_app/config/environments/development.rb",
146
- "test/rails_app/config/environments/production.rb",
147
- "test/rails_app/config/environments/test.rb",
148
- "test/rails_app/config/initializers/backtrace_silencers.rb",
149
- "test/rails_app/config/initializers/inflections.rb",
150
- "test/rails_app/config/initializers/mime_types.rb",
151
- "test/rails_app/config/initializers/netzke.rb",
152
- "test/rails_app/config/initializers/secret_token.rb",
153
- "test/rails_app/config/initializers/session_store.rb",
154
- "test/rails_app/config/locales/es.yml",
155
- "test/rails_app/config/routes.rb",
156
- "test/rails_app/db/development_structure.sql",
157
- "test/rails_app/db/migrate/20100905214933_create_netzke_preferences.rb",
158
- "test/rails_app/db/migrate/20100914104207_create_users.rb",
159
- "test/rails_app/db/migrate/20100914104236_create_roles.rb",
160
- "test/rails_app/db/schema.rb",
161
- "test/rails_app/db/seeds.rb",
162
- "test/rails_app/features/support/paths.rb",
163
- "test/rails_app/lib/tasks/.gitkeep",
164
- "test/rails_app/public/404.html",
165
- "test/rails_app/public/422.html",
166
- "test/rails_app/public/500.html",
167
- "test/rails_app/public/favicon.ico",
168
- "test/rails_app/public/images/header-deco.gif",
169
- "test/rails_app/public/images/rails.png",
170
- "test/rails_app/public/javascripts/application.js",
171
- "test/rails_app/public/javascripts/controls.js",
172
- "test/rails_app/public/javascripts/dragdrop.js",
173
- "test/rails_app/public/javascripts/effects.js",
174
- "test/rails_app/public/javascripts/prototype.js",
175
- "test/rails_app/public/javascripts/rails.js",
176
- "test/rails_app/public/robots.txt",
177
- "test/rails_app/public/stylesheets/.gitkeep",
178
- "test/rails_app/script/rails",
179
- "test/rails_app/spec/models/role_spec.rb",
180
- "test/rails_app/spec/models/user_spec.rb",
181
- "test/rails_app/test/performance/browsing_test.rb",
182
- "test/rails_app/test/test_helper.rb",
183
- "test/rails_app/tmp/restart.txt",
184
- "test/rails_app/vendor/plugins/.gitkeep",
185
- "test/schema.rb",
186
- "test/test_helper.rb",
187
- "test/unit/accordion_panel_test.rb",
188
- "test/unit/active_record_basepack_test.rb",
189
- "test/unit/fields_configuration_test.rb",
190
- "test/unit/grid_panel_test.rb",
191
- "test/unit/netzke_basepack_test.rb",
192
- "test/unit/tab_panel_test.rb",
193
- "uninstall.rb"
21
+ "CHANGELOG.rdoc",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "TODO.rdoc",
26
+ "app/models/netzke_field_list.rb",
27
+ "app/models/netzke_model_attr_list.rb",
28
+ "app/models/netzke_persistent_array_auto_model.rb",
29
+ "autotest/discover.rb",
30
+ "config/database.yml",
31
+ "features/accordion_panel.feature",
32
+ "features/basic_app.feature",
33
+ "features/form_panel.feature",
34
+ "features/grid_panel.feature",
35
+ "features/search_in_grid.feature",
36
+ "features/simple_panel.feature",
37
+ "features/step_definitions/accordion_steps.rb",
38
+ "features/step_definitions/generic_steps.rb",
39
+ "features/step_definitions/grid_panel_steps.rb",
40
+ "features/step_definitions/pickle_steps.rb",
41
+ "features/step_definitions/web_steps.rb",
42
+ "features/support/env.rb",
43
+ "features/support/paths.rb",
44
+ "features/support/pickle.rb",
45
+ "features/tab_panel.feature",
46
+ "features/window.feature",
47
+ "from_05_to_06.rdoc",
48
+ "generators/netzke_basepack/netzke_basepack_generator.rb",
49
+ "generators/netzke_basepack/templates/create_netzke_field_lists.rb",
50
+ "generators/netzke_basepack/templates/public_assets/ts-checkbox.gif",
51
+ "init.rb",
52
+ "install.rb",
53
+ "javascripts/basepack.js",
54
+ "lib/netzke-basepack.rb",
55
+ "lib/netzke/active_record.rb",
56
+ "lib/netzke/active_record/association_attributes.rb",
57
+ "lib/netzke/active_record/attributes.rb",
58
+ "lib/netzke/active_record/combobox_options.rb",
59
+ "lib/netzke/active_record/relation_extensions.rb",
60
+ "lib/netzke/basepack.rb",
61
+ "lib/netzke/basepack/accordion_panel.rb",
62
+ "lib/netzke/basepack/basic_app.rb",
63
+ "lib/netzke/basepack/basic_app/statusbar_ext.js",
64
+ "lib/netzke/basepack/border_layout_panel.rb",
65
+ "lib/netzke/basepack/form_panel.rb",
66
+ "lib/netzke/basepack/form_panel/fields.rb",
67
+ "lib/netzke/basepack/form_panel/javascripts/netzkefileupload.js",
68
+ "lib/netzke/basepack/form_panel/javascripts/pre.js",
69
+ "lib/netzke/basepack/form_panel/javascripts/xcheckbox.js",
70
+ "lib/netzke/basepack/form_panel/services.rb",
71
+ "lib/netzke/basepack/grid_panel.rb",
72
+ "lib/netzke/basepack/grid_panel/columns.rb",
73
+ "lib/netzke/basepack/grid_panel/javascript.rb",
74
+ "lib/netzke/basepack/grid_panel/javascripts/advanced_search.js",
75
+ "lib/netzke/basepack/grid_panel/javascripts/edit_in_form.js",
76
+ "lib/netzke/basepack/grid_panel/javascripts/pre.js",
77
+ "lib/netzke/basepack/grid_panel/javascripts/rows-dd.js",
78
+ "lib/netzke/basepack/grid_panel/multi_edit_form.rb",
79
+ "lib/netzke/basepack/grid_panel/record_form_window.rb",
80
+ "lib/netzke/basepack/grid_panel/search_window.rb",
81
+ "lib/netzke/basepack/grid_panel/services.rb",
82
+ "lib/netzke/basepack/panel.rb",
83
+ "lib/netzke/basepack/search_panel.rb",
84
+ "lib/netzke/basepack/tab_panel.rb",
85
+ "lib/netzke/basepack/version.rb",
86
+ "lib/netzke/basepack/window.rb",
87
+ "lib/netzke/basepack/wrap_lazy_loaded.rb",
88
+ "lib/netzke/basepack/wrapper.rb",
89
+ "lib/netzke/data_accessor.rb",
90
+ "lib/netzke/ext.rb",
91
+ "lib/netzke/fields_configurator.rb",
92
+ "lib/netzke/json_array_editor.rb",
93
+ "lib/netzke/masquerade_selector.rb",
94
+ "lib/tasks/netzke_basepack_tasks.rake",
95
+ "locale/en.yml",
96
+ "netzke-basepack.gemspec",
97
+ "spec/active_record/attributes_spec.rb",
98
+ "spec/active_record/relation_extensions_spec.rb",
99
+ "spec/components/form_panel_spec.rb",
100
+ "spec/components/grid_panel_spec.rb",
101
+ "spec/factories.rb",
102
+ "spec/spec_helper.rb",
103
+ "stylesheets/basepack.css",
104
+ "test/console_with_fixtures.rb",
105
+ "test/fixtures/books.yml",
106
+ "test/fixtures/categories.yml",
107
+ "test/fixtures/cities.yml",
108
+ "test/fixtures/continents.yml",
109
+ "test/fixtures/countries.yml",
110
+ "test/fixtures/genres.yml",
111
+ "test/fixtures/roles.yml",
112
+ "test/fixtures/users.yml",
113
+ "test/rails_app/.gitignore",
114
+ "test/rails_app/Gemfile",
115
+ "test/rails_app/Gemfile.lock",
116
+ "test/rails_app/README",
117
+ "test/rails_app/Rakefile",
118
+ "test/rails_app/app/components/book_grid.rb",
119
+ "test/rails_app/app/components/generic_user_form.rb",
120
+ "test/rails_app/app/components/simple_accordion.rb",
121
+ "test/rails_app/app/components/simple_basic_app.rb",
122
+ "test/rails_app/app/components/simple_panel.rb",
123
+ "test/rails_app/app/components/simple_tab_panel.rb",
124
+ "test/rails_app/app/components/simple_wrapper.rb",
125
+ "test/rails_app/app/components/some_border_layout.rb",
126
+ "test/rails_app/app/components/some_search_panel.rb",
127
+ "test/rails_app/app/components/some_tab_panel.rb",
128
+ "test/rails_app/app/components/user_form.rb",
129
+ "test/rails_app/app/components/user_form_with_default_fields.rb",
130
+ "test/rails_app/app/components/user_grid.rb",
131
+ "test/rails_app/app/components/window_component_loader.rb",
132
+ "test/rails_app/app/controllers/application_controller.rb",
133
+ "test/rails_app/app/controllers/components_controller.rb",
134
+ "test/rails_app/app/controllers/welcome_controller.rb",
135
+ "test/rails_app/app/helpers/application_helper.rb",
136
+ "test/rails_app/app/models/author.rb",
137
+ "test/rails_app/app/models/book.rb",
138
+ "test/rails_app/app/models/role.rb",
139
+ "test/rails_app/app/models/user.rb",
140
+ "test/rails_app/app/presenters/forms/generic_user.rb",
141
+ "test/rails_app/app/views/layouts/application.html.erb",
142
+ "test/rails_app/config.ru",
143
+ "test/rails_app/config/application.rb",
144
+ "test/rails_app/config/boot.rb",
145
+ "test/rails_app/config/database.yml",
146
+ "test/rails_app/config/environment.rb",
147
+ "test/rails_app/config/environments/development.rb",
148
+ "test/rails_app/config/environments/production.rb",
149
+ "test/rails_app/config/environments/test.rb",
150
+ "test/rails_app/config/initializers/backtrace_silencers.rb",
151
+ "test/rails_app/config/initializers/inflections.rb",
152
+ "test/rails_app/config/initializers/mime_types.rb",
153
+ "test/rails_app/config/initializers/netzke.rb",
154
+ "test/rails_app/config/initializers/secret_token.rb",
155
+ "test/rails_app/config/initializers/session_store.rb",
156
+ "test/rails_app/config/locales/es.yml",
157
+ "test/rails_app/config/routes.rb",
158
+ "test/rails_app/db/development_structure.sql",
159
+ "test/rails_app/db/migrate/20100905214933_create_netzke_preferences.rb",
160
+ "test/rails_app/db/migrate/20100914104207_create_users.rb",
161
+ "test/rails_app/db/migrate/20100914104236_create_roles.rb",
162
+ "test/rails_app/db/migrate/20101026185816_create_authors.rb",
163
+ "test/rails_app/db/migrate/20101026190021_create_books.rb",
164
+ "test/rails_app/db/schema.rb",
165
+ "test/rails_app/db/seeds.rb",
166
+ "test/rails_app/features/support/paths.rb",
167
+ "test/rails_app/lib/tasks/.gitkeep",
168
+ "test/rails_app/public/404.html",
169
+ "test/rails_app/public/422.html",
170
+ "test/rails_app/public/500.html",
171
+ "test/rails_app/public/favicon.ico",
172
+ "test/rails_app/public/images/header-deco.gif",
173
+ "test/rails_app/public/images/rails.png",
174
+ "test/rails_app/public/javascripts/application.js",
175
+ "test/rails_app/public/javascripts/controls.js",
176
+ "test/rails_app/public/javascripts/dragdrop.js",
177
+ "test/rails_app/public/javascripts/effects.js",
178
+ "test/rails_app/public/javascripts/prototype.js",
179
+ "test/rails_app/public/javascripts/rails.js",
180
+ "test/rails_app/public/robots.txt",
181
+ "test/rails_app/public/stylesheets/.gitkeep",
182
+ "test/rails_app/script/rails",
183
+ "test/rails_app/spec/models/author_spec.rb",
184
+ "test/rails_app/spec/models/book_spec.rb",
185
+ "test/rails_app/spec/models/role_spec.rb",
186
+ "test/rails_app/spec/models/user_spec.rb",
187
+ "test/rails_app/test/performance/browsing_test.rb",
188
+ "test/rails_app/test/test_helper.rb",
189
+ "test/rails_app/tmp/restart.txt",
190
+ "test/rails_app/vendor/plugins/.gitkeep",
191
+ "test/schema.rb",
192
+ "test/test_helper.rb",
193
+ "test/unit/accordion_panel_test.rb",
194
+ "test/unit/active_record_basepack_test.rb",
195
+ "test/unit/fields_configuration_test.rb",
196
+ "test/unit/grid_panel_test.rb",
197
+ "test/unit/netzke_basepack_test.rb",
198
+ "test/unit/tab_panel_test.rb",
199
+ "uninstall.rb"
194
200
  ]
195
- s.homepage = %q{http://github.com/skozlov/netzke-basepack}
201
+ s.homepage = %q{http://netzke.org}
196
202
  s.post_install_message = %q{
197
203
  ========================================================================
198
204
 
199
205
  Thanks for installing Netzke Basepack!
200
-
201
- Don't forget to run "./script/generate netzke_basepack" for each
206
+
207
+ Don't forget to run "./script/generate netzke_basepack" for each
202
208
  Rails app that will be using this gem.
203
209
 
204
210
  Netzke home page: http://netzke.org
@@ -208,69 +214,75 @@ Gem::Specification.new do |s|
208
214
  ========================================================================
209
215
 
210
216
  }
211
- s.rdoc_options = ["--charset=UTF-8"]
212
217
  s.require_paths = ["lib"]
213
218
  s.rubygems_version = %q{1.3.7}
214
219
  s.summary = %q{Pre-built Rails + ExtJS components for your RIA}
215
220
  s.test_files = [
216
221
  "spec/active_record/attributes_spec.rb",
217
- "spec/active_record/relation_extensions_spec.rb",
218
- "spec/components/form_panel_spec.rb",
219
- "spec/components/grid_panel_spec.rb",
220
- "spec/factories.rb",
221
- "spec/spec_helper.rb",
222
- "test/console_with_fixtures.rb",
223
- "test/rails_app/app/components/generic_user_form.rb",
224
- "test/rails_app/app/components/simple_accordion.rb",
225
- "test/rails_app/app/components/simple_basic_app.rb",
226
- "test/rails_app/app/components/simple_panel.rb",
227
- "test/rails_app/app/components/simple_tab_panel.rb",
228
- "test/rails_app/app/components/simple_wrapper.rb",
229
- "test/rails_app/app/components/some_border_layout.rb",
230
- "test/rails_app/app/components/some_search_panel.rb",
231
- "test/rails_app/app/components/some_tab_panel.rb",
232
- "test/rails_app/app/components/user_form.rb",
233
- "test/rails_app/app/components/user_form_with_default_fields.rb",
234
- "test/rails_app/app/components/user_grid.rb",
235
- "test/rails_app/app/components/window_component_loader.rb",
236
- "test/rails_app/app/controllers/application_controller.rb",
237
- "test/rails_app/app/controllers/components_controller.rb",
238
- "test/rails_app/app/controllers/welcome_controller.rb",
239
- "test/rails_app/app/helpers/application_helper.rb",
240
- "test/rails_app/app/models/role.rb",
241
- "test/rails_app/app/models/user.rb",
242
- "test/rails_app/app/presenters/forms/generic_user.rb",
243
- "test/rails_app/config/application.rb",
244
- "test/rails_app/config/boot.rb",
245
- "test/rails_app/config/environment.rb",
246
- "test/rails_app/config/environments/development.rb",
247
- "test/rails_app/config/environments/production.rb",
248
- "test/rails_app/config/environments/test.rb",
249
- "test/rails_app/config/initializers/backtrace_silencers.rb",
250
- "test/rails_app/config/initializers/inflections.rb",
251
- "test/rails_app/config/initializers/mime_types.rb",
252
- "test/rails_app/config/initializers/netzke.rb",
253
- "test/rails_app/config/initializers/secret_token.rb",
254
- "test/rails_app/config/initializers/session_store.rb",
255
- "test/rails_app/config/routes.rb",
256
- "test/rails_app/db/migrate/20100905214933_create_netzke_preferences.rb",
257
- "test/rails_app/db/migrate/20100914104207_create_users.rb",
258
- "test/rails_app/db/migrate/20100914104236_create_roles.rb",
259
- "test/rails_app/db/schema.rb",
260
- "test/rails_app/db/seeds.rb",
261
- "test/rails_app/features/support/paths.rb",
262
- "test/rails_app/spec/models/role_spec.rb",
263
- "test/rails_app/spec/models/user_spec.rb",
264
- "test/rails_app/test/performance/browsing_test.rb",
265
- "test/rails_app/test/test_helper.rb",
266
- "test/schema.rb",
267
- "test/test_helper.rb",
268
- "test/unit/accordion_panel_test.rb",
269
- "test/unit/active_record_basepack_test.rb",
270
- "test/unit/fields_configuration_test.rb",
271
- "test/unit/grid_panel_test.rb",
272
- "test/unit/netzke_basepack_test.rb",
273
- "test/unit/tab_panel_test.rb"
222
+ "spec/active_record/relation_extensions_spec.rb",
223
+ "spec/components/form_panel_spec.rb",
224
+ "spec/components/grid_panel_spec.rb",
225
+ "spec/factories.rb",
226
+ "spec/spec_helper.rb",
227
+ "test/console_with_fixtures.rb",
228
+ "test/rails_app/app/components/book_grid.rb",
229
+ "test/rails_app/app/components/generic_user_form.rb",
230
+ "test/rails_app/app/components/simple_accordion.rb",
231
+ "test/rails_app/app/components/simple_basic_app.rb",
232
+ "test/rails_app/app/components/simple_panel.rb",
233
+ "test/rails_app/app/components/simple_tab_panel.rb",
234
+ "test/rails_app/app/components/simple_wrapper.rb",
235
+ "test/rails_app/app/components/some_border_layout.rb",
236
+ "test/rails_app/app/components/some_search_panel.rb",
237
+ "test/rails_app/app/components/some_tab_panel.rb",
238
+ "test/rails_app/app/components/user_form.rb",
239
+ "test/rails_app/app/components/user_form_with_default_fields.rb",
240
+ "test/rails_app/app/components/user_grid.rb",
241
+ "test/rails_app/app/components/window_component_loader.rb",
242
+ "test/rails_app/app/controllers/application_controller.rb",
243
+ "test/rails_app/app/controllers/components_controller.rb",
244
+ "test/rails_app/app/controllers/welcome_controller.rb",
245
+ "test/rails_app/app/helpers/application_helper.rb",
246
+ "test/rails_app/app/models/author.rb",
247
+ "test/rails_app/app/models/book.rb",
248
+ "test/rails_app/app/models/role.rb",
249
+ "test/rails_app/app/models/user.rb",
250
+ "test/rails_app/app/presenters/forms/generic_user.rb",
251
+ "test/rails_app/config/application.rb",
252
+ "test/rails_app/config/boot.rb",
253
+ "test/rails_app/config/environment.rb",
254
+ "test/rails_app/config/environments/development.rb",
255
+ "test/rails_app/config/environments/production.rb",
256
+ "test/rails_app/config/environments/test.rb",
257
+ "test/rails_app/config/initializers/backtrace_silencers.rb",
258
+ "test/rails_app/config/initializers/inflections.rb",
259
+ "test/rails_app/config/initializers/mime_types.rb",
260
+ "test/rails_app/config/initializers/netzke.rb",
261
+ "test/rails_app/config/initializers/secret_token.rb",
262
+ "test/rails_app/config/initializers/session_store.rb",
263
+ "test/rails_app/config/routes.rb",
264
+ "test/rails_app/db/migrate/20100905214933_create_netzke_preferences.rb",
265
+ "test/rails_app/db/migrate/20100914104207_create_users.rb",
266
+ "test/rails_app/db/migrate/20100914104236_create_roles.rb",
267
+ "test/rails_app/db/migrate/20101026185816_create_authors.rb",
268
+ "test/rails_app/db/migrate/20101026190021_create_books.rb",
269
+ "test/rails_app/db/schema.rb",
270
+ "test/rails_app/db/seeds.rb",
271
+ "test/rails_app/features/support/paths.rb",
272
+ "test/rails_app/spec/models/author_spec.rb",
273
+ "test/rails_app/spec/models/book_spec.rb",
274
+ "test/rails_app/spec/models/role_spec.rb",
275
+ "test/rails_app/spec/models/user_spec.rb",
276
+ "test/rails_app/test/performance/browsing_test.rb",
277
+ "test/rails_app/test/test_helper.rb",
278
+ "test/schema.rb",
279
+ "test/test_helper.rb",
280
+ "test/unit/accordion_panel_test.rb",
281
+ "test/unit/active_record_basepack_test.rb",
282
+ "test/unit/fields_configuration_test.rb",
283
+ "test/unit/grid_panel_test.rb",
284
+ "test/unit/netzke_basepack_test.rb",
285
+ "test/unit/tab_panel_test.rb"
274
286
  ]
275
287
 
276
288
  if s.respond_to? :specification_version then
@@ -278,18 +290,18 @@ Gem::Specification.new do |s|
278
290
  s.specification_version = 3
279
291
 
280
292
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
281
- s.add_runtime_dependency(%q<netzke-core>, ["~> 0.6.0"])
293
+ s.add_runtime_dependency(%q<netzke-core>, ["~> 0.6.2"])
282
294
  s.add_runtime_dependency(%q<meta_where>, [">= 0.9.3"])
283
295
  s.add_runtime_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
284
296
  s.add_runtime_dependency(%q<acts_as_list>, [">= 0"])
285
297
  else
286
- s.add_dependency(%q<netzke-core>, ["~> 0.6.0"])
298
+ s.add_dependency(%q<netzke-core>, ["~> 0.6.2"])
287
299
  s.add_dependency(%q<meta_where>, [">= 0.9.3"])
288
300
  s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
289
301
  s.add_dependency(%q<acts_as_list>, [">= 0"])
290
302
  end
291
303
  else
292
- s.add_dependency(%q<netzke-core>, ["~> 0.6.0"])
304
+ s.add_dependency(%q<netzke-core>, ["~> 0.6.2"])
293
305
  s.add_dependency(%q<meta_where>, [">= 0.9.3"])
294
306
  s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
295
307
  s.add_dependency(%q<acts_as_list>, [">= 0"])