active_scaffold_vho 3.1.4 → 3.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,44 @@
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
+ nbproject
18
+
19
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
20
+ #
21
+ # * Create a file at ~/.gitignore
22
+ # * Include files you want ignored
23
+ # * Run: git config --global core.excludesfile ~/.gitignore
24
+ #
25
+ # After doing this, these files will be ignored in all your git projects,
26
+ # saving you from having to 'pollute' every project you touch with them
27
+ #
28
+ # 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)
29
+ #
30
+ # For MacOS:
31
+ #
32
+ #.DS_Store
33
+ #
34
+ # For TextMate
35
+ #*.tmproj
36
+ #tmtags
37
+ #
38
+ # For emacs:
39
+ #*~
40
+ #\#*
41
+ #.\#*
42
+ #
43
+ # For vim:
44
+ #*.swp
data/Gemfile CHANGED
@@ -2,12 +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 "rcov", ">= 0"
13
- end
5
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,20 +1,100 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ active_scaffold_vho (3.1.5)
5
+ kaminari
6
+ rails (>= 3.1.0)
7
+
1
8
  GEM
2
9
  remote: http://rubygems.org/
3
10
  specs:
4
- git (1.2.5)
5
- jeweler (1.5.2)
6
- bundler (~> 1.0.0)
7
- git (>= 1.2.5)
8
- rake
9
- rake (0.8.7)
11
+ actionmailer (3.2.8)
12
+ actionpack (= 3.2.8)
13
+ mail (~> 2.4.4)
14
+ actionpack (3.2.8)
15
+ activemodel (= 3.2.8)
16
+ activesupport (= 3.2.8)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.0)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.1.3)
24
+ activemodel (3.2.8)
25
+ activesupport (= 3.2.8)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.8)
28
+ activemodel (= 3.2.8)
29
+ activesupport (= 3.2.8)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.8)
33
+ activemodel (= 3.2.8)
34
+ activesupport (= 3.2.8)
35
+ activesupport (3.2.8)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.2)
39
+ builder (3.0.4)
40
+ erubis (2.7.0)
41
+ hike (1.2.1)
42
+ i18n (0.6.1)
43
+ journey (1.0.4)
44
+ json (1.7.5)
45
+ kaminari (0.14.1)
46
+ actionpack (>= 3.0.0)
47
+ activesupport (>= 3.0.0)
48
+ mail (2.4.4)
49
+ i18n (>= 0.4.0)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ mime-types (1.19)
53
+ multi_json (1.3.7)
54
+ polyglot (0.3.3)
55
+ rack (1.4.1)
56
+ rack-cache (1.2)
57
+ rack (>= 0.4)
58
+ rack-ssl (1.3.2)
59
+ rack
60
+ rack-test (0.6.2)
61
+ rack (>= 1.0)
62
+ rails (3.2.8)
63
+ actionmailer (= 3.2.8)
64
+ actionpack (= 3.2.8)
65
+ activerecord (= 3.2.8)
66
+ activeresource (= 3.2.8)
67
+ activesupport (= 3.2.8)
68
+ bundler (~> 1.0)
69
+ railties (= 3.2.8)
70
+ railties (3.2.8)
71
+ actionpack (= 3.2.8)
72
+ activesupport (= 3.2.8)
73
+ rack-ssl (~> 1.3.2)
74
+ rake (>= 0.8.7)
75
+ rdoc (~> 3.4)
76
+ thor (>= 0.14.6, < 2.0)
77
+ rake (0.9.2.2)
10
78
  rcov (0.9.9)
79
+ rdoc (3.12)
80
+ json (~> 1.4)
11
81
  shoulda (2.11.3)
82
+ sprockets (2.1.3)
83
+ hike (~> 1.2)
84
+ rack (~> 1.0)
85
+ tilt (~> 1.1, != 1.3.0)
86
+ thor (0.16.0)
87
+ tilt (1.3.3)
88
+ treetop (1.4.12)
89
+ polyglot
90
+ polyglot (>= 0.3.1)
91
+ tzinfo (0.3.34)
12
92
 
13
93
  PLATFORMS
14
94
  ruby
15
95
 
16
96
  DEPENDENCIES
17
- bundler (~> 1.0.0)
18
- jeweler (~> 1.5.2)
97
+ active_scaffold_vho!
98
+ bundler (>= 1.0.0)
19
99
  rcov
20
100
  shoulda
data/Rakefile CHANGED
@@ -7,34 +7,13 @@ 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
+
11
+ Bundler::GemHelper.install_tasks
10
12
  require 'rake'
11
13
  require 'rake/testtask'
12
- require 'rake/packagetask'
13
- require 'rake/rdoctask'
14
+ require 'rdoc/task'
14
15
  require 'find'
15
16
 
16
- require 'jeweler'
17
- require './lib/active_scaffold/version.rb'
18
-
19
- Jeweler::Tasks.new do |gem|
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.1 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 'rails', '>= 3.1.0'
31
- # Include your dependencies below. Runtime dependencies are required when using your gem,
32
- # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
33
- # gem.add_runtime_dependency 'jabber4r', '> 0.1'
34
- # gem.add_development_dependency 'rspec', '> 1.2.3'
35
- end
36
- Jeweler::RubygemsDotOrgTasks.new
37
-
38
17
  desc 'Test ActiveScaffold.'
39
18
  Rake::TestTask.new(:test) do |t|
40
19
  t.libs << 'lib'
@@ -1,390 +1,31 @@
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.1.4"
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
- "README"
17
- ]
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
- "app/assets/images/add.gif",
29
- "app/assets/images/arrow_down.gif",
30
- "app/assets/images/arrow_up.gif",
31
- "app/assets/images/close.gif",
32
- "app/assets/images/close_touch.png",
33
- "app/assets/images/config.png",
34
- "app/assets/images/cross.png",
35
- "app/assets/images/gears.png",
36
- "app/assets/images/indicator-small.gif",
37
- "app/assets/images/indicator.gif",
38
- "app/assets/images/magnifier.png",
39
- "app/assets/javascripts/active_scaffold.js.erb",
40
- "app/assets/javascripts/jquery/active_scaffold.js",
41
- "app/assets/javascripts/jquery/date_picker_bridge.js.erb",
42
- "app/assets/javascripts/jquery/jquery-ui-timepicker-addon.js",
43
- "app/assets/javascripts/jquery/jquery.editinplace.js",
44
- "app/assets/javascripts/jquery/tiny_mce_bridge.js",
45
- "app/assets/javascripts/prototype/active_scaffold.js",
46
- "app/assets/javascripts/prototype/dhtml_history.js",
47
- "app/assets/javascripts/prototype/form_enhancements.js",
48
- "app/assets/javascripts/prototype/rico_corner.js",
49
- "app/assets/stylesheets/active_scaffold-ie.css",
50
- "app/assets/stylesheets/active_scaffold.css.erb",
51
- "app/assets/stylesheets/active_scaffold_core.css.erb",
52
- "app/assets/stylesheets/jquery-ui-timepicker-addon.css",
53
- "frontends/default/views/_action_group.html.erb",
54
- "frontends/default/views/_add_existing_form.html.erb",
55
- "frontends/default/views/_base_form.html.erb",
56
- "frontends/default/views/_create_form.html.erb",
57
- "frontends/default/views/_create_form_on_list.html.erb",
58
- "frontends/default/views/_embedded_controller.html.erb",
59
- "frontends/default/views/_field_search.html.erb",
60
- "frontends/default/views/_form.html.erb",
61
- "frontends/default/views/_form_association.html.erb",
62
- "frontends/default/views/_form_association_footer.html.erb",
63
- "frontends/default/views/_form_attribute.html.erb",
64
- "frontends/default/views/_form_hidden_attribute.html.erb",
65
- "frontends/default/views/_form_messages.html.erb",
66
- "frontends/default/views/_horizontal_subform.html.erb",
67
- "frontends/default/views/_horizontal_subform_header.html.erb",
68
- "frontends/default/views/_horizontal_subform_record.html.erb",
69
- "frontends/default/views/_human_conditions.html.erb",
70
- "frontends/default/views/_list.html.erb",
71
- "frontends/default/views/_list_actions.html.erb",
72
- "frontends/default/views/_list_calculations.html.erb",
73
- "frontends/default/views/_list_column_headings.html.erb",
74
- "frontends/default/views/_list_header.html.erb",
75
- "frontends/default/views/_list_messages.html.erb",
76
- "frontends/default/views/_list_pagination.html.erb",
77
- "frontends/default/views/_list_pagination_links.html.erb",
78
- "frontends/default/views/_list_record.html.erb",
79
- "frontends/default/views/_list_record_columns.html.erb",
80
- "frontends/default/views/_list_with_header.html.erb",
81
- "frontends/default/views/_messages.html.erb",
82
- "frontends/default/views/_render_field.js.erb",
83
- "frontends/default/views/_row.html.erb",
84
- "frontends/default/views/_search.html.erb",
85
- "frontends/default/views/_search_attribute.html.erb",
86
- "frontends/default/views/_show.html.erb",
87
- "frontends/default/views/_show_columns.html.erb",
88
- "frontends/default/views/_update_actions.html.erb",
89
- "frontends/default/views/_update_form.html.erb",
90
- "frontends/default/views/_vertical_subform.html.erb",
91
- "frontends/default/views/_vertical_subform_record.html.erb",
92
- "frontends/default/views/action_confirmation.html.erb",
93
- "frontends/default/views/add_existing.js.erb",
94
- "frontends/default/views/add_existing_form.html.erb",
95
- "frontends/default/views/create.html.erb",
96
- "frontends/default/views/delete.html.erb",
97
- "frontends/default/views/destroy.js.erb",
98
- "frontends/default/views/edit_associated.js.erb",
99
- "frontends/default/views/field_search.html.erb",
100
- "frontends/default/views/form_messages.js.erb",
101
- "frontends/default/views/list.html.erb",
102
- "frontends/default/views/list.js.erb",
103
- "frontends/default/views/on_action_update.js.erb",
104
- "frontends/default/views/on_create.js.erb",
105
- "frontends/default/views/on_mark_all.js.erb",
106
- "frontends/default/views/on_update.js.erb",
107
- "frontends/default/views/search.html.erb",
108
- "frontends/default/views/show.html.erb",
109
- "frontends/default/views/update.html.erb",
110
- "frontends/default/views/update_column.js.erb",
111
- "frontends/default/views/update_row.js.erb",
112
- "init.rb",
113
- "lib/active_scaffold.rb",
114
- "lib/active_scaffold/actions/common_search.rb",
115
- "lib/active_scaffold/actions/core.rb",
116
- "lib/active_scaffold/actions/create.rb",
117
- "lib/active_scaffold/actions/delete.rb",
118
- "lib/active_scaffold/actions/field_search.rb",
119
- "lib/active_scaffold/actions/list.rb",
120
- "lib/active_scaffold/actions/mark.rb",
121
- "lib/active_scaffold/actions/nested.rb",
122
- "lib/active_scaffold/actions/search.rb",
123
- "lib/active_scaffold/actions/show.rb",
124
- "lib/active_scaffold/actions/subform.rb",
125
- "lib/active_scaffold/actions/update.rb",
126
- "lib/active_scaffold/active_record_permissions.rb",
127
- "lib/active_scaffold/attribute_params.rb",
128
- "lib/active_scaffold/bridges/ancestry/bridge.rb",
129
- "lib/active_scaffold/bridges/ancestry/lib/ancestry_bridge.rb",
130
- "lib/active_scaffold/bridges/bridge.rb",
131
- "lib/active_scaffold/bridges/calendar_date_select/bridge.rb",
132
- "lib/active_scaffold/bridges/calendar_date_select/lib/as_cds_bridge.rb",
133
- "lib/active_scaffold/bridges/cancan/bridge.rb",
134
- "lib/active_scaffold/bridges/cancan/lib/cancan_bridge.rb",
135
- "lib/active_scaffold/bridges/carrierwave/bridge.rb",
136
- "lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge.rb",
137
- "lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge_helpers.rb",
138
- "lib/active_scaffold/bridges/carrierwave/lib/form_ui.rb",
139
- "lib/active_scaffold/bridges/carrierwave/lib/list_ui.rb",
140
- "lib/active_scaffold/bridges/country_helper/bridge.rb",
141
- "lib/active_scaffold/bridges/country_helper/lib/country_helper_bridge.rb",
142
- "lib/active_scaffold/bridges/date_picker/bridge.rb",
143
- "lib/active_scaffold/bridges/date_picker/lib/datepicker_bridge.rb",
144
- "lib/active_scaffold/bridges/file_column/bridge.rb",
145
- "lib/active_scaffold/bridges/file_column/lib/as_file_column_bridge.rb",
146
- "lib/active_scaffold/bridges/file_column/lib/file_column_helpers.rb",
147
- "lib/active_scaffold/bridges/file_column/lib/form_ui.rb",
148
- "lib/active_scaffold/bridges/file_column/lib/list_ui.rb",
149
- "lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb",
150
- "lib/active_scaffold/bridges/file_column/test/mock_model.rb",
151
- "lib/active_scaffold/bridges/file_column/test/test_helper.rb",
152
- "lib/active_scaffold/bridges/paperclip/bridge.rb",
153
- "lib/active_scaffold/bridges/paperclip/lib/form_ui.rb",
154
- "lib/active_scaffold/bridges/paperclip/lib/list_ui.rb",
155
- "lib/active_scaffold/bridges/paperclip/lib/paperclip_bridge.rb",
156
- "lib/active_scaffold/bridges/paperclip/lib/paperclip_bridge_helpers.rb",
157
- "lib/active_scaffold/bridges/semantic_attributes/bridge.rb",
158
- "lib/active_scaffold/bridges/semantic_attributes/lib/semantic_attributes_bridge.rb",
159
- "lib/active_scaffold/bridges/shared/date_bridge.rb",
160
- "lib/active_scaffold/bridges/tiny_mce/bridge.rb",
161
- "lib/active_scaffold/bridges/tiny_mce/lib/tiny_mce_bridge.rb",
162
- "lib/active_scaffold/bridges/validation_reflection/bridge.rb",
163
- "lib/active_scaffold/bridges/validation_reflection/lib/validation_reflection_bridge.rb",
164
- "lib/active_scaffold/config/base.rb",
165
- "lib/active_scaffold/config/core.rb",
166
- "lib/active_scaffold/config/create.rb",
167
- "lib/active_scaffold/config/delete.rb",
168
- "lib/active_scaffold/config/field_search.rb",
169
- "lib/active_scaffold/config/form.rb",
170
- "lib/active_scaffold/config/list.rb",
171
- "lib/active_scaffold/config/mark.rb",
172
- "lib/active_scaffold/config/nested.rb",
173
- "lib/active_scaffold/config/search.rb",
174
- "lib/active_scaffold/config/show.rb",
175
- "lib/active_scaffold/config/subform.rb",
176
- "lib/active_scaffold/config/update.rb",
177
- "lib/active_scaffold/configurable.rb",
178
- "lib/active_scaffold/constraints.rb",
179
- "lib/active_scaffold/data_structures/action_columns.rb",
180
- "lib/active_scaffold/data_structures/action_link.rb",
181
- "lib/active_scaffold/data_structures/action_links.rb",
182
- "lib/active_scaffold/data_structures/actions.rb",
183
- "lib/active_scaffold/data_structures/column.rb",
184
- "lib/active_scaffold/data_structures/columns.rb",
185
- "lib/active_scaffold/data_structures/error_message.rb",
186
- "lib/active_scaffold/data_structures/nested_info.rb",
187
- "lib/active_scaffold/data_structures/set.rb",
188
- "lib/active_scaffold/data_structures/sorting.rb",
189
- "lib/active_scaffold/engine.rb",
190
- "lib/active_scaffold/extensions/action_view_rendering.rb",
191
- "lib/active_scaffold/extensions/action_view_resolver.rb",
192
- "lib/active_scaffold/extensions/active_association_reflection.rb",
193
- "lib/active_scaffold/extensions/array.rb",
194
- "lib/active_scaffold/extensions/localize.rb",
195
- "lib/active_scaffold/extensions/name_option_for_datetime.rb",
196
- "lib/active_scaffold/extensions/nil_id_in_url_params.rb",
197
- "lib/active_scaffold/extensions/paginator_extensions.rb",
198
- "lib/active_scaffold/extensions/reverse_associations.rb",
199
- "lib/active_scaffold/extensions/routing_mapper.rb",
200
- "lib/active_scaffold/extensions/to_label.rb",
201
- "lib/active_scaffold/extensions/unsaved_associated.rb",
202
- "lib/active_scaffold/extensions/unsaved_record.rb",
203
- "lib/active_scaffold/extensions/usa_state.rb",
204
- "lib/active_scaffold/finder.rb",
205
- "lib/active_scaffold/helpers/association_helpers.rb",
206
- "lib/active_scaffold/helpers/controller_helpers.rb",
207
- "lib/active_scaffold/helpers/form_column_helpers.rb",
208
- "lib/active_scaffold/helpers/human_condition_helpers.rb",
209
- "lib/active_scaffold/helpers/id_helpers.rb",
210
- "lib/active_scaffold/helpers/list_column_helpers.rb",
211
- "lib/active_scaffold/helpers/pagination_helpers.rb",
212
- "lib/active_scaffold/helpers/search_column_helpers.rb",
213
- "lib/active_scaffold/helpers/show_column_helpers.rb",
214
- "lib/active_scaffold/helpers/view_helpers.rb",
215
- "lib/active_scaffold/locale/de.rb",
216
- "lib/active_scaffold/locale/en.rb",
217
- "lib/active_scaffold/locale/es.yml",
218
- "lib/active_scaffold/locale/fr.rb",
219
- "lib/active_scaffold/locale/hu.yml",
220
- "lib/active_scaffold/locale/ja.yml",
221
- "lib/active_scaffold/locale/ru.yml",
222
- "lib/active_scaffold/marked_model.rb",
223
- "lib/active_scaffold/paginator.rb",
224
- "lib/active_scaffold/responds_to_parent.rb",
225
- "lib/active_scaffold/version.rb",
226
- "lib/active_scaffold_env.rb",
227
- "lib/active_scaffold_vho.rb",
228
- "lib/generators/active_scaffold/USAGE",
229
- "lib/generators/active_scaffold/active_scaffold_generator.rb",
230
- "lib/generators/active_scaffold_controller/USAGE",
231
- "lib/generators/active_scaffold_controller/active_scaffold_controller_generator.rb",
232
- "lib/generators/active_scaffold_controller/templates/controller.rb",
233
- "lib/generators/active_scaffold_controller/templates/helper.rb",
234
- "lib/generators/active_scaffold_setup/USAGE",
235
- "lib/generators/active_scaffold_setup/active_scaffold_setup_generator.rb",
236
- "public/blank.html",
237
- "shoulda_macros/macros.rb",
238
- "test/bridges/bridge_test.rb",
239
- "test/config/base_test.rb",
240
- "test/config/create_test.rb",
241
- "test/config/list_test.rb",
242
- "test/config/show_test.rb",
243
- "test/config/update_test.rb",
244
- "test/const_mocker.rb",
245
- "test/data_structures/action_columns_test.rb",
246
- "test/data_structures/action_link_test.rb",
247
- "test/data_structures/action_links_test.rb",
248
- "test/data_structures/actions_test.rb",
249
- "test/data_structures/association_column_test.rb",
250
- "test/data_structures/column_test.rb",
251
- "test/data_structures/columns_test.rb",
252
- "test/data_structures/error_message_test.rb",
253
- "test/data_structures/set_test.rb",
254
- "test/data_structures/sorting_test.rb",
255
- "test/data_structures/standard_column_test.rb",
256
- "test/data_structures/virtual_column_test.rb",
257
- "test/extensions/active_record_test.rb",
258
- "test/extensions/array_test.rb",
259
- "test/helpers/form_column_helpers_test.rb",
260
- "test/helpers/list_column_helpers_test.rb",
261
- "test/helpers/pagination_helpers_test.rb",
262
- "test/misc/active_record_permissions_test.rb",
263
- "test/misc/attribute_params_test.rb",
264
- "test/misc/configurable_test.rb",
265
- "test/misc/constraints_test.rb",
266
- "test/misc/finder_test.rb",
267
- "test/misc/lang_test.rb",
268
- "test/mock_app/.gitignore",
269
- "test/mock_app/app/controllers/application_controller.rb",
270
- "test/mock_app/app/helpers/application_helper.rb",
271
- "test/mock_app/config/boot.rb",
272
- "test/mock_app/config/database.yml",
273
- "test/mock_app/config/environment.rb",
274
- "test/mock_app/config/environments/development.rb",
275
- "test/mock_app/config/environments/production.rb",
276
- "test/mock_app/config/environments/test.rb",
277
- "test/mock_app/config/initializers/backtrace_silencers.rb",
278
- "test/mock_app/config/initializers/inflections.rb",
279
- "test/mock_app/config/initializers/mime_types.rb",
280
- "test/mock_app/config/initializers/new_rails_defaults.rb",
281
- "test/mock_app/config/initializers/session_store.rb",
282
- "test/mock_app/config/locales/en.yml",
283
- "test/mock_app/config/routes.rb",
284
- "test/mock_app/db/test.sqlite3",
285
- "test/mock_app/public/blank.html",
286
- "test/mock_app/public/images/active_scaffold/DO_NOT_EDIT",
287
- "test/mock_app/public/images/active_scaffold/default/add.gif",
288
- "test/mock_app/public/images/active_scaffold/default/arrow_down.gif",
289
- "test/mock_app/public/images/active_scaffold/default/arrow_up.gif",
290
- "test/mock_app/public/images/active_scaffold/default/close.gif",
291
- "test/mock_app/public/images/active_scaffold/default/cross.png",
292
- "test/mock_app/public/images/active_scaffold/default/indicator-small.gif",
293
- "test/mock_app/public/images/active_scaffold/default/indicator.gif",
294
- "test/mock_app/public/images/active_scaffold/default/magnifier.png",
295
- "test/mock_app/public/javascripts/active_scaffold/DO_NOT_EDIT",
296
- "test/mock_app/public/javascripts/active_scaffold/default/active_scaffold.js",
297
- "test/mock_app/public/javascripts/active_scaffold/default/dhtml_history.js",
298
- "test/mock_app/public/javascripts/active_scaffold/default/form_enhancements.js",
299
- "test/mock_app/public/javascripts/active_scaffold/default/rico_corner.js",
300
- "test/mock_app/public/stylesheets/active_scaffold/DO_NOT_EDIT",
301
- "test/mock_app/public/stylesheets/active_scaffold/default/stylesheet-ie.css",
302
- "test/mock_app/public/stylesheets/active_scaffold/default/stylesheet.css",
303
- "test/model_stub.rb",
304
- "test/run_all.rb",
305
- "test/test_helper.rb",
306
- "uninstall.rb"
13
+ "README"
307
14
  ]
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+
308
18
  s.homepage = %q{http://github.com/vhochstein/active_scaffold}
309
19
  s.licenses = ["MIT"]
310
20
  s.require_paths = ["lib"]
311
- s.rubygems_version = %q{1.3.7}
312
- s.summary = %q{Rails 3.1 Version of activescaffold supporting prototype and jquery}
313
- s.test_files = [
314
- "test/bridges/bridge_test.rb",
315
- "test/config/base_test.rb",
316
- "test/config/create_test.rb",
317
- "test/config/list_test.rb",
318
- "test/config/show_test.rb",
319
- "test/config/update_test.rb",
320
- "test/const_mocker.rb",
321
- "test/data_structures/action_columns_test.rb",
322
- "test/data_structures/action_link_test.rb",
323
- "test/data_structures/action_links_test.rb",
324
- "test/data_structures/actions_test.rb",
325
- "test/data_structures/association_column_test.rb",
326
- "test/data_structures/column_test.rb",
327
- "test/data_structures/columns_test.rb",
328
- "test/data_structures/error_message_test.rb",
329
- "test/data_structures/set_test.rb",
330
- "test/data_structures/sorting_test.rb",
331
- "test/data_structures/standard_column_test.rb",
332
- "test/data_structures/virtual_column_test.rb",
333
- "test/extensions/active_record_test.rb",
334
- "test/extensions/array_test.rb",
335
- "test/helpers/form_column_helpers_test.rb",
336
- "test/helpers/list_column_helpers_test.rb",
337
- "test/helpers/pagination_helpers_test.rb",
338
- "test/misc/active_record_permissions_test.rb",
339
- "test/misc/attribute_params_test.rb",
340
- "test/misc/configurable_test.rb",
341
- "test/misc/constraints_test.rb",
342
- "test/misc/finder_test.rb",
343
- "test/misc/lang_test.rb",
344
- "test/mock_app/app/controllers/application_controller.rb",
345
- "test/mock_app/app/helpers/application_helper.rb",
346
- "test/mock_app/config/boot.rb",
347
- "test/mock_app/config/environment.rb",
348
- "test/mock_app/config/environments/development.rb",
349
- "test/mock_app/config/environments/production.rb",
350
- "test/mock_app/config/environments/test.rb",
351
- "test/mock_app/config/initializers/backtrace_silencers.rb",
352
- "test/mock_app/config/initializers/inflections.rb",
353
- "test/mock_app/config/initializers/mime_types.rb",
354
- "test/mock_app/config/initializers/new_rails_defaults.rb",
355
- "test/mock_app/config/initializers/session_store.rb",
356
- "test/mock_app/config/routes.rb",
357
- "test/model_stub.rb",
358
- "test/run_all.rb",
359
- "test/test_helper.rb"
360
- ]
21
+ s.summary = %q{Rails 3 Version of activescaffold supporting prototype and jquery}
361
22
 
362
- if s.respond_to? :specification_version then
363
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
364
- s.specification_version = 3
23
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
365
24
 
366
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
367
- s.add_development_dependency(%q<shoulda>, [">= 0"])
368
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
369
- s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
370
- s.add_development_dependency(%q<rcov>, [">= 0"])
371
- s.add_runtime_dependency(%q<render_component_vho>, [">= 0"])
372
- s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
373
- else
374
- s.add_dependency(%q<shoulda>, [">= 0"])
375
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
376
- s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
377
- s.add_dependency(%q<rcov>, [">= 0"])
378
- s.add_dependency(%q<render_component_vho>, [">= 0"])
379
- s.add_dependency(%q<rails>, [">= 3.1.0"])
380
- end
381
- else
382
- s.add_dependency(%q<shoulda>, [">= 0"])
383
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
384
- s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
385
- s.add_dependency(%q<rcov>, [">= 0"])
386
- s.add_dependency(%q<render_component_vho>, [">= 0"])
387
- s.add_dependency(%q<rails>, [">= 3.1.0"])
388
- end
389
- end
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"])
390
28
 
29
+ s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
30
+ s.add_runtime_dependency(%q<kaminari>)
31
+ end