active_scaffold_vho 3.0.26 → 3.0.27

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 (31) hide show
  1. data/.gitignore +42 -0
  2. data/Gemfile +1 -10
  3. data/Gemfile.lock +78 -10
  4. data/Rakefile +19 -17
  5. data/active_scaffold_vho.gemspec +14 -324
  6. data/frontends/default/javascripts/jquery/active_scaffold.js +23 -13
  7. data/frontends/default/javascripts/prototype/active_scaffold.js +22 -14
  8. data/frontends/default/stylesheets/stylesheet.css +1 -1
  9. data/frontends/default/views/_list.html.erb +2 -1
  10. data/frontends/default/views/_list_messages.html.erb +2 -2
  11. data/frontends/default/views/_list_pagination.html.erb +3 -6
  12. data/frontends/default/views/_list_record_columns.html.erb +1 -1
  13. data/lib/active_scaffold/actions/list.rb +7 -6
  14. data/lib/active_scaffold/active_record_permissions.rb +25 -0
  15. data/lib/active_scaffold/attribute_params.rb +5 -2
  16. data/lib/active_scaffold/bridges/shared/date_bridge.rb +3 -3
  17. data/lib/active_scaffold/bridges/tiny_mce/public/javascripts/prototype/tiny_mce_bridge.js +1 -1
  18. data/lib/active_scaffold/config/core.rb +8 -1
  19. data/lib/active_scaffold/config/field_search.rb +22 -1
  20. data/lib/active_scaffold/data_structures/column.rb +19 -2
  21. data/lib/active_scaffold/finder.rb +19 -30
  22. data/lib/active_scaffold/helpers/human_condition_helpers.rb +4 -2
  23. data/lib/active_scaffold/helpers/list_column_helpers.rb +9 -2
  24. data/lib/active_scaffold/locale/de.yml +118 -0
  25. data/lib/active_scaffold/locale/en.yml +115 -0
  26. data/lib/active_scaffold/version.rb +1 -1
  27. data/lib/active_scaffold.rb +0 -1
  28. data/test/mock_app/public/stylesheets/active_scaffold/default/stylesheet.css +1 -1
  29. metadata +102 -62
  30. data/lib/active_scaffold/locale/de.rb +0 -120
  31. data/lib/active_scaffold/locale/en.rb +0 -119
data/.gitignore ADDED
@@ -0,0 +1,42 @@
1
+ # rcov generated
2
+ coverage
3
+
4
+ # rdoc generated
5
+ rdoc
6
+
7
+ # yard generated
8
+ doc
9
+ .yardoc
10
+
11
+ # bundler
12
+ .bundle
13
+
14
+ # jeweler generated
15
+ pkg
16
+
17
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
18
+ #
19
+ # * Create a file at ~/.gitignore
20
+ # * Include files you want ignored
21
+ # * Run: git config --global core.excludesfile ~/.gitignore
22
+ #
23
+ # After doing this, these files will be ignored in all your git projects,
24
+ # saving you from having to 'pollute' every project you touch with them
25
+ #
26
+ # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
27
+ #
28
+ # For MacOS:
29
+ #
30
+ #.DS_Store
31
+ #
32
+ # For TextMate
33
+ #*.tmproj
34
+ #tmtags
35
+ #
36
+ # For emacs:
37
+ #*~
38
+ #\#*
39
+ #.\#*
40
+ #
41
+ # For vim:
42
+ #*.swp
data/Gemfile CHANGED
@@ -2,13 +2,4 @@ source "http://rubygems.org"
2
2
  # Add dependencies required to use your gem here.
3
3
  # Example:
4
4
  # gem "activesupport", ">= 2.3.5"
5
-
6
- # Add dependencies to develop your gem here.
7
- # Include everything needed to run rake, tests, features, etc.
8
- group :development do
9
- gem "shoulda", ">= 0"
10
- gem "bundler", "~> 1.0.0"
11
- #gem "jeweler", "~> 1.5.2"
12
- gem "jeweler", :git => 'git://github.com/vhochstein/jeweler.git'
13
- gem "rcov", ">= 0"
14
- end
5
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,25 +1,93 @@
1
- GIT
2
- remote: git://github.com/vhochstein/jeweler.git
3
- revision: 5cdcbb9aff001309bf82e3df4060b8e2b485b8ea
1
+ PATH
2
+ remote: .
4
3
  specs:
5
- jeweler (1.6.4)
6
- bundler (~> 1.0)
7
- git (>= 1.2.5)
8
- rake
4
+ active_scaffold_vho (3.0.27)
5
+ kaminari
6
+ rails (~> 3.0.0)
9
7
 
10
8
  GEM
11
9
  remote: http://rubygems.org/
12
10
  specs:
13
- git (1.2.5)
14
- rake (0.9.2)
11
+ abstract (1.0.0)
12
+ actionmailer (3.0.17)
13
+ actionpack (= 3.0.17)
14
+ mail (~> 2.2.19)
15
+ actionpack (3.0.17)
16
+ activemodel (= 3.0.17)
17
+ activesupport (= 3.0.17)
18
+ builder (~> 2.1.2)
19
+ erubis (~> 2.6.6)
20
+ i18n (~> 0.5.0)
21
+ rack (~> 1.2.5)
22
+ rack-mount (~> 0.6.14)
23
+ rack-test (~> 0.5.7)
24
+ tzinfo (~> 0.3.23)
25
+ activemodel (3.0.17)
26
+ activesupport (= 3.0.17)
27
+ builder (~> 2.1.2)
28
+ i18n (~> 0.5.0)
29
+ activerecord (3.0.17)
30
+ activemodel (= 3.0.17)
31
+ activesupport (= 3.0.17)
32
+ arel (~> 2.0.10)
33
+ tzinfo (~> 0.3.23)
34
+ activeresource (3.0.17)
35
+ activemodel (= 3.0.17)
36
+ activesupport (= 3.0.17)
37
+ activesupport (3.0.17)
38
+ arel (2.0.10)
39
+ builder (2.1.2)
40
+ erubis (2.6.6)
41
+ abstract (>= 1.0.0)
42
+ i18n (0.5.0)
43
+ json (1.7.5)
44
+ kaminari (0.14.1)
45
+ actionpack (>= 3.0.0)
46
+ activesupport (>= 3.0.0)
47
+ mail (2.2.19)
48
+ activesupport (>= 2.3.6)
49
+ i18n (>= 0.4.0)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ mime-types (1.19)
53
+ polyglot (0.3.3)
54
+ rack (1.2.5)
55
+ rack-mount (0.6.14)
56
+ rack (>= 1.0.0)
57
+ rack-test (0.5.7)
58
+ rack (>= 1.0)
59
+ rails (3.0.17)
60
+ actionmailer (= 3.0.17)
61
+ actionpack (= 3.0.17)
62
+ activerecord (= 3.0.17)
63
+ activeresource (= 3.0.17)
64
+ activesupport (= 3.0.17)
65
+ bundler (~> 1.0)
66
+ railties (= 3.0.17)
67
+ railties (3.0.17)
68
+ actionpack (= 3.0.17)
69
+ activesupport (= 3.0.17)
70
+ rake (>= 0.8.7)
71
+ rdoc (~> 3.4)
72
+ thor (~> 0.14.4)
73
+ rake (0.9.2.2)
15
74
  rcov (0.9.9)
75
+ rdoc (3.12)
76
+ json (~> 1.4)
16
77
  shoulda (2.11.3)
78
+ thor (0.14.6)
79
+ treetop (1.4.12)
80
+ polyglot
81
+ polyglot (>= 0.3.1)
82
+ tzinfo (0.3.34)
17
83
 
18
84
  PLATFORMS
19
85
  ruby
20
86
 
21
87
  DEPENDENCIES
88
+ active_scaffold_vho!
22
89
  bundler (~> 1.0.0)
23
- jeweler!
90
+ kaminari
91
+ rails (~> 3.0.0)
24
92
  rcov
25
93
  shoulda
data/Rakefile CHANGED
@@ -7,34 +7,36 @@ rescue Bundler::BundlerError => e
7
7
  $stderr.puts "Run `bundle install` to install missing gems"
8
8
  exit e.status_code
9
9
  end
10
+ Bundler::GemHelper.install_tasks
10
11
  require 'rake'
11
12
  require 'rake/testtask'
12
- require 'rake/packagetask'
13
- require 'rake/rdoctask'
13
+ require 'rdoc/task'
14
14
  require 'find'
15
15
 
16
- require 'jeweler'
17
16
  require './lib/active_scaffold/version.rb'
18
17
 
19
- Jeweler::Tasks.new do |gem|
18
+
19
+ #Jeweler::Tasks.new do |gem|
20
20
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
21
- gem.name = "active_scaffold_vho"
22
- gem.version = ActiveScaffold::Version::STRING
23
- gem.homepage = "http://github.com/vhochstein/active_scaffold"
24
- gem.license = "MIT"
25
- gem.summary = %Q{Rails 3 Version of activescaffold supporting prototype and jquery}
26
- gem.description = %Q{Save time and headaches, and create a more easily maintainable set of pages, with ActiveScaffold. ActiveScaffold handles all your CRUD (create, read, update, delete) user interface needs, leaving you more time to focus on more challenging (and interesting!) problems.}
27
- gem.email = "activescaffold@googlegroups.com"
28
- gem.authors = ["Many, see README"]
29
- gem.add_runtime_dependency 'render_component_vho'
30
- gem.add_runtime_dependency 'verification'
31
- gem.add_runtime_dependency 'rails', '~> 3.0.0'
21
+ # gem.name = "active_scaffold_vho"
22
+ # gem.version = ActiveScaffold::Version::STRING
23
+ # gem.homepage = "http://github.com/vhochstein/active_scaffold"
24
+ # gem.license = "MIT"
25
+ # gem.summary = %Q{Rails 3 Version of activescaffold supporting prototype and jquery}
26
+ # gem.description = %Q{Save time and headaches, and create a more easily maintainable set of pages, with ActiveScaffold. ActiveScaffold handles all your CRUD (create, read, update, delete) user interface needs, leaving you more time to focus on more challenging (and interesting!) problems.}
27
+ # gem.email = "activescaffold@googlegroups.com"
28
+ # gem.authors = ["Many, see README"]
29
+ # gem.add_runtime_dependency 'render_component_vho'
30
+ # gem.add_runtime_dependency 'verification'
31
+ # gem.add_runtime_dependency 'rails', '~> 3.0.0'
32
32
  # Include your dependencies below. Runtime dependencies are required when using your gem,
33
33
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
34
34
  # gem.add_runtime_dependency 'jabber4r', '> 0.1'
35
35
  # gem.add_development_dependency 'rspec', '> 1.2.3'
36
- end
37
- Jeweler::RubygemsDotOrgTasks.new
36
+ #end
37
+ #Jeweler::RubygemsDotOrgTasks.new
38
+
39
+
38
40
 
39
41
  desc 'Test ActiveScaffold.'
40
42
  Rake::TestTask.new(:test) do |t|
@@ -1,342 +1,32 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
1
  # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
3
+ require 'active_scaffold/version'
5
4
 
6
5
  Gem::Specification.new do |s|
7
6
  s.name = %q{active_scaffold_vho}
8
- s.version = "3.0.26"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
7
+ s.version = ActiveScaffold::Version::STRING
8
+ s.platform = Gem::Platform::RUBY
11
9
  s.authors = ["Many, see README"]
12
- s.date = %q{2012-05-12}
13
10
  s.description = %q{Save time and headaches, and create a more easily maintainable set of pages, with ActiveScaffold. ActiveScaffold handles all your CRUD (create, read, update, delete) user interface needs, leaving you more time to focus on more challenging (and interesting!) problems.}
14
11
  s.email = %q{activescaffold@googlegroups.com}
15
12
  s.extra_rdoc_files = [
16
13
  "README"
17
14
  ]
18
- s.files = [
19
- ".autotest",
20
- ".document",
21
- "CHANGELOG",
22
- "Gemfile",
23
- "Gemfile.lock",
24
- "MIT-LICENSE",
25
- "README",
26
- "Rakefile",
27
- "active_scaffold_vho.gemspec",
28
- "frontends/default/images/add.gif",
29
- "frontends/default/images/arrow_down.gif",
30
- "frontends/default/images/arrow_up.gif",
31
- "frontends/default/images/close.gif",
32
- "frontends/default/images/close_touch.png",
33
- "frontends/default/images/config.png",
34
- "frontends/default/images/cross.png",
35
- "frontends/default/images/gears.png",
36
- "frontends/default/images/indicator-small.gif",
37
- "frontends/default/images/indicator.gif",
38
- "frontends/default/images/magnifier.png",
39
- "frontends/default/javascripts/jquery/active_scaffold.js",
40
- "frontends/default/javascripts/jquery/jquery.editinplace.js",
41
- "frontends/default/javascripts/prototype/active_scaffold.js",
42
- "frontends/default/javascripts/prototype/dhtml_history.js",
43
- "frontends/default/javascripts/prototype/form_enhancements.js",
44
- "frontends/default/javascripts/prototype/rico_corner.js",
45
- "frontends/default/stylesheets/stylesheet-ie.css",
46
- "frontends/default/stylesheets/stylesheet.css",
47
- "frontends/default/views/_action_group.html.erb",
48
- "frontends/default/views/_add_existing_form.html.erb",
49
- "frontends/default/views/_base_form.html.erb",
50
- "frontends/default/views/_create_form.html.erb",
51
- "frontends/default/views/_create_form_on_list.html.erb",
52
- "frontends/default/views/_field_search.html.erb",
53
- "frontends/default/views/_form.html.erb",
54
- "frontends/default/views/_form_association.html.erb",
55
- "frontends/default/views/_form_association_footer.html.erb",
56
- "frontends/default/views/_form_attribute.html.erb",
57
- "frontends/default/views/_form_hidden_attribute.html.erb",
58
- "frontends/default/views/_form_messages.html.erb",
59
- "frontends/default/views/_horizontal_subform.html.erb",
60
- "frontends/default/views/_horizontal_subform_header.html.erb",
61
- "frontends/default/views/_horizontal_subform_record.html.erb",
62
- "frontends/default/views/_human_conditions.html.erb",
63
- "frontends/default/views/_list.html.erb",
64
- "frontends/default/views/_list_actions.html.erb",
65
- "frontends/default/views/_list_calculations.html.erb",
66
- "frontends/default/views/_list_column_headings.html.erb",
67
- "frontends/default/views/_list_header.html.erb",
68
- "frontends/default/views/_list_messages.html.erb",
69
- "frontends/default/views/_list_pagination.html.erb",
70
- "frontends/default/views/_list_pagination_links.html.erb",
71
- "frontends/default/views/_list_record.html.erb",
72
- "frontends/default/views/_list_record_columns.html.erb",
73
- "frontends/default/views/_list_with_header.html.erb",
74
- "frontends/default/views/_messages.html.erb",
75
- "frontends/default/views/_render_field.js.rjs",
76
- "frontends/default/views/_row.html.erb",
77
- "frontends/default/views/_search.html.erb",
78
- "frontends/default/views/_search_attribute.html.erb",
79
- "frontends/default/views/_show.html.erb",
80
- "frontends/default/views/_show_columns.html.erb",
81
- "frontends/default/views/_update_actions.html.erb",
82
- "frontends/default/views/_update_form.html.erb",
83
- "frontends/default/views/_vertical_subform.html.erb",
84
- "frontends/default/views/_vertical_subform_record.html.erb",
85
- "frontends/default/views/action_confirmation.html.erb",
86
- "frontends/default/views/add_existing.js.rjs",
87
- "frontends/default/views/add_existing_form.html.erb",
88
- "frontends/default/views/create.html.erb",
89
- "frontends/default/views/delete.html.erb",
90
- "frontends/default/views/destroy.js.rjs",
91
- "frontends/default/views/edit_associated.js.rjs",
92
- "frontends/default/views/field_search.html.erb",
93
- "frontends/default/views/form_messages.js.rjs",
94
- "frontends/default/views/list.html.erb",
95
- "frontends/default/views/list.js.rjs",
96
- "frontends/default/views/on_action_update.js.rjs",
97
- "frontends/default/views/on_create.js.rjs",
98
- "frontends/default/views/on_mark_all.js.rjs",
99
- "frontends/default/views/on_update.js.rjs",
100
- "frontends/default/views/search.html.erb",
101
- "frontends/default/views/show.html.erb",
102
- "frontends/default/views/update.html.erb",
103
- "frontends/default/views/update_column.js.rjs",
104
- "frontends/default/views/update_row.js.rjs",
105
- "init.rb",
106
- "lib/active_scaffold.rb",
107
- "lib/active_scaffold/actions/common_search.rb",
108
- "lib/active_scaffold/actions/core.rb",
109
- "lib/active_scaffold/actions/create.rb",
110
- "lib/active_scaffold/actions/delete.rb",
111
- "lib/active_scaffold/actions/field_search.rb",
112
- "lib/active_scaffold/actions/list.rb",
113
- "lib/active_scaffold/actions/mark.rb",
114
- "lib/active_scaffold/actions/nested.rb",
115
- "lib/active_scaffold/actions/search.rb",
116
- "lib/active_scaffold/actions/show.rb",
117
- "lib/active_scaffold/actions/subform.rb",
118
- "lib/active_scaffold/actions/update.rb",
119
- "lib/active_scaffold/active_record_permissions.rb",
120
- "lib/active_scaffold/attribute_params.rb",
121
- "lib/active_scaffold/bridges/ancestry/bridge.rb",
122
- "lib/active_scaffold/bridges/ancestry/lib/ancestry_bridge.rb",
123
- "lib/active_scaffold/bridges/bridge.rb",
124
- "lib/active_scaffold/bridges/calendar_date_select/bridge.rb",
125
- "lib/active_scaffold/bridges/calendar_date_select/lib/as_cds_bridge.rb",
126
- "lib/active_scaffold/bridges/cancan/bridge.rb",
127
- "lib/active_scaffold/bridges/cancan/lib/cancan_bridge.rb",
128
- "lib/active_scaffold/bridges/carrierwave/bridge.rb",
129
- "lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge.rb",
130
- "lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge_helpers.rb",
131
- "lib/active_scaffold/bridges/carrierwave/lib/form_ui.rb",
132
- "lib/active_scaffold/bridges/carrierwave/lib/list_ui.rb",
133
- "lib/active_scaffold/bridges/country_helper/bridge.rb",
134
- "lib/active_scaffold/bridges/country_helper/lib/country_helper_bridge.rb",
135
- "lib/active_scaffold/bridges/date_picker/bridge.rb",
136
- "lib/active_scaffold/bridges/date_picker/lib/datepicker_bridge.rb",
137
- "lib/active_scaffold/bridges/date_picker/public/javascripts/date_picker_bridge.js",
138
- "lib/active_scaffold/bridges/file_column/bridge.rb",
139
- "lib/active_scaffold/bridges/file_column/lib/as_file_column_bridge.rb",
140
- "lib/active_scaffold/bridges/file_column/lib/file_column_helpers.rb",
141
- "lib/active_scaffold/bridges/file_column/lib/form_ui.rb",
142
- "lib/active_scaffold/bridges/file_column/lib/list_ui.rb",
143
- "lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb",
144
- "lib/active_scaffold/bridges/file_column/test/mock_model.rb",
145
- "lib/active_scaffold/bridges/file_column/test/test_helper.rb",
146
- "lib/active_scaffold/bridges/paperclip/bridge.rb",
147
- "lib/active_scaffold/bridges/paperclip/lib/form_ui.rb",
148
- "lib/active_scaffold/bridges/paperclip/lib/list_ui.rb",
149
- "lib/active_scaffold/bridges/paperclip/lib/paperclip_bridge.rb",
150
- "lib/active_scaffold/bridges/paperclip/lib/paperclip_bridge_helpers.rb",
151
- "lib/active_scaffold/bridges/semantic_attributes/bridge.rb",
152
- "lib/active_scaffold/bridges/semantic_attributes/lib/semantic_attributes_bridge.rb",
153
- "lib/active_scaffold/bridges/shared/date_bridge.rb",
154
- "lib/active_scaffold/bridges/tiny_mce/bridge.rb",
155
- "lib/active_scaffold/bridges/tiny_mce/lib/tiny_mce_bridge.rb",
156
- "lib/active_scaffold/bridges/tiny_mce/public/javascripts/jquery/tiny_mce_bridge.js",
157
- "lib/active_scaffold/bridges/tiny_mce/public/javascripts/prototype/tiny_mce_bridge.js",
158
- "lib/active_scaffold/bridges/validation_reflection/bridge.rb",
159
- "lib/active_scaffold/bridges/validation_reflection/lib/validation_reflection_bridge.rb",
160
- "lib/active_scaffold/config/base.rb",
161
- "lib/active_scaffold/config/core.rb",
162
- "lib/active_scaffold/config/create.rb",
163
- "lib/active_scaffold/config/delete.rb",
164
- "lib/active_scaffold/config/field_search.rb",
165
- "lib/active_scaffold/config/form.rb",
166
- "lib/active_scaffold/config/list.rb",
167
- "lib/active_scaffold/config/mark.rb",
168
- "lib/active_scaffold/config/nested.rb",
169
- "lib/active_scaffold/config/search.rb",
170
- "lib/active_scaffold/config/show.rb",
171
- "lib/active_scaffold/config/subform.rb",
172
- "lib/active_scaffold/config/update.rb",
173
- "lib/active_scaffold/configurable.rb",
174
- "lib/active_scaffold/constraints.rb",
175
- "lib/active_scaffold/data_structures/action_columns.rb",
176
- "lib/active_scaffold/data_structures/action_link.rb",
177
- "lib/active_scaffold/data_structures/action_links.rb",
178
- "lib/active_scaffold/data_structures/actions.rb",
179
- "lib/active_scaffold/data_structures/column.rb",
180
- "lib/active_scaffold/data_structures/columns.rb",
181
- "lib/active_scaffold/data_structures/error_message.rb",
182
- "lib/active_scaffold/data_structures/nested_info.rb",
183
- "lib/active_scaffold/data_structures/set.rb",
184
- "lib/active_scaffold/data_structures/sorting.rb",
185
- "lib/active_scaffold/extensions/action_view_rendering.rb",
186
- "lib/active_scaffold/extensions/action_view_resolver.rb",
187
- "lib/active_scaffold/extensions/active_association_reflection.rb",
188
- "lib/active_scaffold/extensions/active_record_offset.rb",
189
- "lib/active_scaffold/extensions/array.rb",
190
- "lib/active_scaffold/extensions/localize.rb",
191
- "lib/active_scaffold/extensions/name_option_for_datetime.rb",
192
- "lib/active_scaffold/extensions/nil_id_in_url_params.rb",
193
- "lib/active_scaffold/extensions/paginator_extensions.rb",
194
- "lib/active_scaffold/extensions/reverse_associations.rb",
195
- "lib/active_scaffold/extensions/routing_mapper.rb",
196
- "lib/active_scaffold/extensions/to_label.rb",
197
- "lib/active_scaffold/extensions/unsaved_associated.rb",
198
- "lib/active_scaffold/extensions/unsaved_record.rb",
199
- "lib/active_scaffold/extensions/usa_state.rb",
200
- "lib/active_scaffold/finder.rb",
201
- "lib/active_scaffold/helpers/association_helpers.rb",
202
- "lib/active_scaffold/helpers/controller_helpers.rb",
203
- "lib/active_scaffold/helpers/form_column_helpers.rb",
204
- "lib/active_scaffold/helpers/human_condition_helpers.rb",
205
- "lib/active_scaffold/helpers/id_helpers.rb",
206
- "lib/active_scaffold/helpers/list_column_helpers.rb",
207
- "lib/active_scaffold/helpers/pagination_helpers.rb",
208
- "lib/active_scaffold/helpers/search_column_helpers.rb",
209
- "lib/active_scaffold/helpers/show_column_helpers.rb",
210
- "lib/active_scaffold/helpers/view_helpers.rb",
211
- "lib/active_scaffold/locale/de.rb",
212
- "lib/active_scaffold/locale/en.rb",
213
- "lib/active_scaffold/locale/es.yml",
214
- "lib/active_scaffold/locale/fr.rb",
215
- "lib/active_scaffold/locale/hu.yml",
216
- "lib/active_scaffold/locale/ja.yml",
217
- "lib/active_scaffold/locale/ru.yml",
218
- "lib/active_scaffold/marked_model.rb",
219
- "lib/active_scaffold/paginator.rb",
220
- "lib/active_scaffold/responds_to_parent.rb",
221
- "lib/active_scaffold/version.rb",
222
- "lib/active_scaffold_assets.rb",
223
- "lib/active_scaffold_env.rb",
224
- "lib/active_scaffold_vho.rb",
225
- "lib/generators/active_scaffold/USAGE",
226
- "lib/generators/active_scaffold/active_scaffold_generator.rb",
227
- "lib/generators/active_scaffold_controller/USAGE",
228
- "lib/generators/active_scaffold_controller/active_scaffold_controller_generator.rb",
229
- "lib/generators/active_scaffold_controller/templates/controller.rb",
230
- "lib/generators/active_scaffold_controller/templates/helper.rb",
231
- "lib/generators/active_scaffold_setup/USAGE",
232
- "lib/generators/active_scaffold_setup/active_scaffold_setup_generator.rb",
233
- "public/blank.html",
234
- "shoulda_macros/macros.rb",
235
- "test/bridges/bridge_test.rb",
236
- "test/config/base_test.rb",
237
- "test/config/create_test.rb",
238
- "test/config/list_test.rb",
239
- "test/config/show_test.rb",
240
- "test/config/update_test.rb",
241
- "test/const_mocker.rb",
242
- "test/data_structures/action_columns_test.rb",
243
- "test/data_structures/action_link_test.rb",
244
- "test/data_structures/action_links_test.rb",
245
- "test/data_structures/actions_test.rb",
246
- "test/data_structures/association_column_test.rb",
247
- "test/data_structures/column_test.rb",
248
- "test/data_structures/columns_test.rb",
249
- "test/data_structures/error_message_test.rb",
250
- "test/data_structures/set_test.rb",
251
- "test/data_structures/sorting_test.rb",
252
- "test/data_structures/standard_column_test.rb",
253
- "test/data_structures/virtual_column_test.rb",
254
- "test/extensions/active_record_test.rb",
255
- "test/extensions/array_test.rb",
256
- "test/helpers/form_column_helpers_test.rb",
257
- "test/helpers/list_column_helpers_test.rb",
258
- "test/helpers/pagination_helpers_test.rb",
259
- "test/misc/active_record_permissions_test.rb",
260
- "test/misc/attribute_params_test.rb",
261
- "test/misc/configurable_test.rb",
262
- "test/misc/constraints_test.rb",
263
- "test/misc/finder_test.rb",
264
- "test/misc/lang_test.rb",
265
- "test/mock_app/.gitignore",
266
- "test/mock_app/app/controllers/application_controller.rb",
267
- "test/mock_app/app/helpers/application_helper.rb",
268
- "test/mock_app/config/boot.rb",
269
- "test/mock_app/config/database.yml",
270
- "test/mock_app/config/environment.rb",
271
- "test/mock_app/config/environments/development.rb",
272
- "test/mock_app/config/environments/production.rb",
273
- "test/mock_app/config/environments/test.rb",
274
- "test/mock_app/config/initializers/backtrace_silencers.rb",
275
- "test/mock_app/config/initializers/inflections.rb",
276
- "test/mock_app/config/initializers/mime_types.rb",
277
- "test/mock_app/config/initializers/new_rails_defaults.rb",
278
- "test/mock_app/config/initializers/session_store.rb",
279
- "test/mock_app/config/locales/en.yml",
280
- "test/mock_app/config/routes.rb",
281
- "test/mock_app/db/test.sqlite3",
282
- "test/mock_app/public/blank.html",
283
- "test/mock_app/public/images/active_scaffold/DO_NOT_EDIT",
284
- "test/mock_app/public/images/active_scaffold/default/add.gif",
285
- "test/mock_app/public/images/active_scaffold/default/arrow_down.gif",
286
- "test/mock_app/public/images/active_scaffold/default/arrow_up.gif",
287
- "test/mock_app/public/images/active_scaffold/default/close.gif",
288
- "test/mock_app/public/images/active_scaffold/default/cross.png",
289
- "test/mock_app/public/images/active_scaffold/default/indicator-small.gif",
290
- "test/mock_app/public/images/active_scaffold/default/indicator.gif",
291
- "test/mock_app/public/images/active_scaffold/default/magnifier.png",
292
- "test/mock_app/public/javascripts/active_scaffold/DO_NOT_EDIT",
293
- "test/mock_app/public/javascripts/active_scaffold/default/active_scaffold.js",
294
- "test/mock_app/public/javascripts/active_scaffold/default/dhtml_history.js",
295
- "test/mock_app/public/javascripts/active_scaffold/default/form_enhancements.js",
296
- "test/mock_app/public/javascripts/active_scaffold/default/rico_corner.js",
297
- "test/mock_app/public/stylesheets/active_scaffold/DO_NOT_EDIT",
298
- "test/mock_app/public/stylesheets/active_scaffold/default/stylesheet-ie.css",
299
- "test/mock_app/public/stylesheets/active_scaffold/default/stylesheet.css",
300
- "test/model_stub.rb",
301
- "test/run_all.rb",
302
- "test/test_helper.rb",
303
- "uninstall.rb"
304
- ]
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+
305
18
  s.homepage = %q{http://github.com/vhochstein/active_scaffold}
306
19
  s.licenses = ["MIT"]
307
20
  s.require_paths = ["lib"]
308
- s.rubygems_version = %q{1.3.7}
309
21
  s.summary = %q{Rails 3 Version of activescaffold supporting prototype and jquery}
310
22
 
311
- if s.respond_to? :specification_version then
312
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
313
- s.specification_version = 3
23
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
24
+
25
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
26
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
27
+ s.add_development_dependency(%q<rcov>, [">= 0"])
314
28
 
315
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
316
- s.add_development_dependency(%q<shoulda>, [">= 0"])
317
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
318
- s.add_development_dependency(%q<jeweler>, [">= 0"])
319
- s.add_development_dependency(%q<rcov>, [">= 0"])
320
- s.add_runtime_dependency(%q<render_component_vho>, [">= 0"])
321
- s.add_runtime_dependency(%q<verification>, [">= 0"])
322
- s.add_runtime_dependency(%q<rails>, ["~> 3.0.0"])
323
- else
324
- s.add_dependency(%q<shoulda>, [">= 0"])
325
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
326
- s.add_dependency(%q<jeweler>, [">= 0"])
327
- s.add_dependency(%q<rcov>, [">= 0"])
328
- s.add_dependency(%q<render_component_vho>, [">= 0"])
329
- s.add_dependency(%q<verification>, [">= 0"])
330
- s.add_dependency(%q<rails>, ["~> 3.0.0"])
331
- end
332
- else
333
- s.add_dependency(%q<shoulda>, [">= 0"])
334
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
335
- s.add_dependency(%q<jeweler>, [">= 0"])
336
- s.add_dependency(%q<rcov>, [">= 0"])
337
- s.add_dependency(%q<render_component_vho>, [">= 0"])
338
- s.add_dependency(%q<verification>, [">= 0"])
339
- s.add_dependency(%q<rails>, ["~> 3.0.0"])
340
- end
29
+ s.add_runtime_dependency(%q<rails>, ["~> 3.0.0"])
30
+ s.add_runtime_dependency(%q<kaminari>)
341
31
  end
342
32