express_admin 1.4.0 → 1.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a190e90573d9c12ff7c11bcc7b76cefd69dba9a
4
- data.tar.gz: 35a76a7c344eed3eb01c36effc0cfc688c8f985e
3
+ metadata.gz: 47f9b0aa2f7ce09f7dfb3dea17d4139e2eede4c1
4
+ data.tar.gz: 37448704becbe0239be10babb79dceffa099b2a8
5
5
  SHA512:
6
- metadata.gz: f4148a027c4f50991fa88831e8d7dc236511482b80c3e9e625170a2a5e6cddb2503fb1f8acdd06923ac2775fdbbfa4bd03297af85028f52ea04b96e8d52584a0
7
- data.tar.gz: 8a065074bf4b8ade0a4436b1e506a46df9b238482afa1989d606299944f0182cdb011d04977db5e58ca17dc5737d7a794f36b107e2c6b7256d5a6725a98f6def
6
+ metadata.gz: deb2025bac503f80c9c481c4bad30a9f47502da6272ccf4b713a147e739cc92b6935ffbc09236d5360c2fa5b2a91544c6dda7f465600522698bf72fd45b53100
7
+ data.tar.gz: a580f0b123f0fb27cac5ea928e627ee2ae29b0c460ef1b2b6d760d9dc013891fb6421569246275c057a1b2e998a54f201fc9ed475460b4d5506869c727e0a0a9
@@ -1,3 +1,3 @@
1
1
  module ExpressAdmin
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.1"
3
3
  end
Binary file
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- express_templates (0.7.1)
4
+ express_templates (0.8.0)
5
5
  activesupport (~> 4.2)
6
6
  arbre
7
7
  parslet (~> 1.6)
@@ -2137,3 +2137,306 @@ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_sco
2137
2137
  -----------------------------------------------------------------------------
2138
2138
  ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
2139
2139
  -----------------------------------------------------------------------------
2140
+ ---------------------------------------------------------------
2141
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
2142
+ ---------------------------------------------------------------
2143
+ ---------------------------------------------------------
2144
+ ExpressFormTest: test_express_form_default_method_is_POST
2145
+ ---------------------------------------------------------
2146
+ -----------------------------------------------------
2147
+ ExpressFormTest: test_simplest_form_contains_form_tag
2148
+ -----------------------------------------------------
2149
+ ---------------------------------------------------------------
2150
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
2151
+ ---------------------------------------------------------------
2152
+ ---------------------------------------------------
2153
+ ExpressFormTest: test_simplest_form_contains_submit
2154
+ ---------------------------------------------------
2155
+ -------------------------------------------
2156
+ ExpressFormTest: test_simplest_form_renders
2157
+ -------------------------------------------
2158
+ -------------------------------------------------------------------
2159
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
2160
+ -------------------------------------------------------------------
2161
+ -----------------------------------------------------------
2162
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
2163
+ -----------------------------------------------------------
2164
+ --------------------------------------------------------------------------------------------------
2165
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
2166
+ --------------------------------------------------------------------------------------------------
2167
+ -----------------------------------------------------------------------------------------
2168
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
2169
+ -----------------------------------------------------------------------------------------
2170
+ ---------------------------------------------------------------------------------------------------
2171
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
2172
+ ---------------------------------------------------------------------------------------------------
2173
+ ------------------------------------------------------------------------------------------------
2174
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
2175
+ ------------------------------------------------------------------------------------------------
2176
+ -----------------------------------------------------------------------------
2177
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
2178
+ -----------------------------------------------------------------------------
2179
+ ----------------------------------------------------------------
2180
+ SelectTest: test_select_collection_works_using_collection_select
2181
+ ----------------------------------------------------------------
2182
+ ------------------------------------------
2183
+ SelectTest: test_select_comes_with_a_label
2184
+ ------------------------------------------
2185
+ --------------------------------------------------
2186
+ SelectTest: test_select_defaults_can_be_overridden
2187
+ --------------------------------------------------
2188
+ -------------------------------------------------------
2189
+ SelectTest: test_select_defaults_to_include_blank:_true
2190
+ -------------------------------------------------------
2191
+ ------------------------------------------------------------------------------------
2192
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
2193
+ ------------------------------------------------------------------------------------
2194
+ ------------------------------------------------------------------------
2195
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
2196
+ ------------------------------------------------------------------------
2197
+ --------------------------------------------------------------
2198
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
2199
+ --------------------------------------------------------------
2200
+ -----------------------------------------------------------------------------------------
2201
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
2202
+ -----------------------------------------------------------------------------------------
2203
+ ---------------------------------------------------
2204
+ SelectTest: test_select_requires_a_parent_component
2205
+ ---------------------------------------------------
2206
+ ---------------------------------------------------------------------------
2207
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
2208
+ ---------------------------------------------------------------------------
2209
+ -------------------------------------------------------------------------
2210
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
2211
+ -------------------------------------------------------------------------
2212
+ -----------------------------------------------------------------
2213
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
2214
+ -----------------------------------------------------------------
2215
+ ---------------------------------------------------------
2216
+ BaseTest: test_.has_attributes_creates_default_attributes
2217
+ ---------------------------------------------------------
2218
+ -----------------------------------------------------
2219
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
2220
+ -----------------------------------------------------
2221
+ --------------------------------------------------
2222
+ BaseTest: test_before_build_hook_runs_before_build
2223
+ --------------------------------------------------
2224
+ --------------------------------------------------------------
2225
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
2226
+ --------------------------------------------------------------
2227
+ -----------------------------------------------------------
2228
+ BaseTest: test_class_option_adds_a_class,_does_not_override
2229
+ -----------------------------------------------------------
2230
+ ----------------------------------------------------
2231
+ BaseTest: test_options_are_passed_to_html_attributes
2232
+ ----------------------------------------------------
2233
+ -------------------------------------------------------------
2234
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
2235
+ -------------------------------------------------------------
2236
+ -------------------------------------------------------
2237
+ CheckboxTest: test_checkbox_respects_label_after:_true_
2238
+ -------------------------------------------------------
2239
+ ----------------------------------------------
2240
+ SubmitTest: test_submit_accepts_a_class_option
2241
+ ----------------------------------------------
2242
+ --------------------------------------------------------
2243
+ SubmitTest: test_submit_accepts_a_value_and_class_option
2244
+ --------------------------------------------------------
2245
+ ----------------------------------------------------
2246
+ SubmitTest: test_submit_takes_string_param_for_value
2247
+ ----------------------------------------------------
2248
+ -----------------------------------------
2249
+ HelloControllerTest: test_should_get_show
2250
+ -----------------------------------------
2251
+ Processing by HelloController#show as HTML
2252
+ Rendered hello/show.html.et within layouts/application (0.7ms)
2253
+ Completed 200 OK in 117ms (Views: 116.9ms)
2254
+ ------------------------------------------------------------------------------------
2255
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
2256
+ ------------------------------------------------------------------------------------
2257
+ -------------------------------------------------------------------
2258
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
2259
+ -------------------------------------------------------------------
2260
+ ---------------------------------------------------------------------
2261
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
2262
+ ---------------------------------------------------------------------
2263
+ ---------------------------------------------------------------------
2264
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
2265
+ ---------------------------------------------------------------------
2266
+ ----------------------------------------------------
2267
+ InterpolatorTest: test_nested_with_outer_text_parses
2268
+ ----------------------------------------------------
2269
+ -------------------------------------------------------
2270
+ InterpolatorTest: test_nested_without_outer_text_parses
2271
+ -------------------------------------------------------
2272
+ ---------------------------------------------------------------------
2273
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
2274
+ ---------------------------------------------------------------------
2275
+ -------------------------------------------------
2276
+ InterpolatorTest: test_simplest_expression_parses
2277
+ -------------------------------------------------
2278
+ -------------------------------------
2279
+ BasicFieldsTest: test_all_fields_work
2280
+ -------------------------------------
2281
+ ---------------------------------------------------------------------------------
2282
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
2283
+ ---------------------------------------------------------------------------------
2284
+ ---------------------------------------------------------
2285
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
2286
+ ---------------------------------------------------------
2287
+ ---------------------------------------------------------
2288
+ BasicFieldsTest: test_passing_html_options_to_fields_work
2289
+ ---------------------------------------------------------
2290
+ -----------------------------------------------------------------------------
2291
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
2292
+ -----------------------------------------------------------------------------
2293
+ ----------------------------------------------------------
2294
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
2295
+ ----------------------------------------------------------
2296
+ --------------------------------------------
2297
+ CompilerTest: test_.compile_returns_a_string
2298
+ --------------------------------------------
2299
+ -----------------------------------------------------------------------------
2300
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
2301
+ -----------------------------------------------------------------------------
2302
+ ----------------------------------------------------------------------------------------
2303
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
2304
+ ----------------------------------------------------------------------------------------
2305
+ -------------------------------------------------------------------------------
2306
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
2307
+ -------------------------------------------------------------------------------
2308
+ -----------------------------------------------------------------------------------------------------
2309
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
2310
+ -----------------------------------------------------------------------------------------------------
2311
+ ---------------------------------------------------
2312
+ ConfigurableTest: test_default_values_are_supported
2313
+ ---------------------------------------------------
2314
+ ----------------------------------------------------------------------
2315
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
2316
+ ----------------------------------------------------------------------
2317
+ ------------------------------------------------------------------------
2318
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
2319
+ ------------------------------------------------------------------------
2320
+ -----------------------------------------------------------
2321
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
2322
+ -----------------------------------------------------------
2323
+ --------------------------------------------
2324
+ ConfigurableTest: test_options_are_inherited
2325
+ --------------------------------------------
2326
+ -------------------------------------------------------
2327
+ ConfigurableTest: test_renders_first_argument_as_dom_id
2328
+ -------------------------------------------------------
2329
+ ----------------------------------------------------
2330
+ ConfigurableTest: test_required_options_are_required
2331
+ ----------------------------------------------------
2332
+ --------------------------------------------------
2333
+ ConfigurableTest: test_supports_option_declaration
2334
+ --------------------------------------------------
2335
+ ---------------------------------------------------------------
2336
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
2337
+ ---------------------------------------------------------------
2338
+ ------------------------------------------------------------------------------------
2339
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
2340
+ ------------------------------------------------------------------------------------
2341
+ --------------------------------------------------------------------------------
2342
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
2343
+ --------------------------------------------------------------------------------
2344
+ -------------------------------------------------------
2345
+ StringTest: test_String#to_view_code_returns_the_string
2346
+ -------------------------------------------------------
2347
+ ---------------------------------------------------------------------
2348
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
2349
+ ---------------------------------------------------------------------
2350
+ -------------------------------------------
2351
+ ExpressTemplatesTest: test_we_have_a_module
2352
+ -------------------------------------------
2353
+ -----------------------------------------------------------
2354
+ RadioTest: test_radio_has_correct_label_field_name_and_text
2355
+ -----------------------------------------------------------
2356
+ ------------------------------------------------------------------
2357
+ RadioTest: test_radio_options_from_collection_when_options_omitted
2358
+ ------------------------------------------------------------------
2359
+ ----------------------------------------------------------
2360
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
2361
+ ----------------------------------------------------------
2362
+ --------------------------------------------------------
2363
+ RadioTest: test_radio_options_present_with_class_'radio'
2364
+ --------------------------------------------------------
2365
+ -------------------------------------------------
2366
+ RadioTest: test_radio_requires_a_parent_component
2367
+ -------------------------------------------------
2368
+ ------------------------------------------------------------
2369
+ RadioTest: test_radio_throws_error_if_given_improper_options
2370
+ ------------------------------------------------------------
2371
+ --------------------------------------------------------------
2372
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
2373
+ --------------------------------------------------------------
2374
+ ------------------------------------------------------------------------
2375
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
2376
+ ------------------------------------------------------------------------
2377
+ ----------------------------------------------------------
2378
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
2379
+ ----------------------------------------------------------
2380
+ -----------------------------
2381
+ HandlerTest: test_locals_work
2382
+ -----------------------------
2383
+ ------------------------------------------------------------
2384
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
2385
+ ------------------------------------------------------------
2386
+ ----------------------------------
2387
+ HandlerTest: test_other_attributes
2388
+ ----------------------------------
2389
+ -------------------------------------------
2390
+ HandlerTest: test_our_handler_is_registered
2391
+ -------------------------------------------
2392
+ ---------------------------------------
2393
+ HandlerTest: test_string_in_block_works
2394
+ ---------------------------------------
2395
+ ------------------------------------------------------------
2396
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
2397
+ ------------------------------------------------------------
2398
+ ---------------------------------------------------------------------------
2399
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
2400
+ ---------------------------------------------------------------------------
2401
+ ---------------------------------------------------------------------------------------------
2402
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
2403
+ ---------------------------------------------------------------------------------------------
2404
+ -----------------------------------------------------------------
2405
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
2406
+ -----------------------------------------------------------------
2407
+ ------------------------------------------------------------------
2408
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
2409
+ ------------------------------------------------------------------
2410
+ ------------------------------------------------
2411
+ ProcTest: test_#source_body_handles_funky_bodies
2412
+ ------------------------------------------------
2413
+ ----------------------------------------------------------
2414
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
2415
+ ----------------------------------------------------------
2416
+ ------------------------------------------------------
2417
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
2418
+ ------------------------------------------------------
2419
+ ----------------------------------------------
2420
+ ProcTest: test_#source_returns_a_proc's_source
2421
+ ----------------------------------------------
2422
+ ---------------------------------------------------------------
2423
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
2424
+ ---------------------------------------------------------------
2425
+ ------------------------------------------------------------
2426
+ ProcTest: test_#source_works_with_a_block_containing_a_block
2427
+ ------------------------------------------------------------
2428
+ --------------------------------------------
2429
+ ProcTest: test_#source_works_with_a_do_block
2430
+ --------------------------------------------
2431
+ -----------------------------------------------------
2432
+ ProcTest: test_#source_works_with_a_single_line_block
2433
+ -----------------------------------------------------
2434
+ -------------------------------------------------
2435
+ ProcTest: test_#source_works_with_a_stabby_lambda
2436
+ -------------------------------------------------
2437
+ ----------------------------------------------------------------------------------------
2438
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
2439
+ ----------------------------------------------------------------------------------------
2440
+ -----------------------------------------------------------------------------------------
2441
+ ProcTest: test_.source_body_captures_full_body_when_parens_around_parameters_not_provided
2442
+ -----------------------------------------------------------------------------------------
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: express_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Talcott Smith
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.7.1
33
+ version: 0.8.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.7.1
40
+ version: 0.8.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jquery-rails
43
43
  requirement: !ruby/object:Gem::Requirement