express_admin 1.4.7 → 1.4.8

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: faf9fd31ec56bd2a725c15cfe8b2b902bc9e841b
4
- data.tar.gz: 7d118947bdd9dcda591c6aeae958afbf6600bc14
3
+ metadata.gz: b280b2e1d3c54a158bfc2bad5abcb50004caee39
4
+ data.tar.gz: ce55f9db93caefa427a01e130b7e380fec00b32b
5
5
  SHA512:
6
- metadata.gz: 78fd0b1a04e2fa9a3ecfae55300f5644497dc344fe0b3224be6c1e702ea1817be66d1b735d039e1648f2a955c5a5293b09e98f0b8c77c2a60942ea404ea2e796
7
- data.tar.gz: 3a2515fe8b7729c1dfebb11955b9e4b7f250806ffa1a1527d6771281aaa51fc1fd3647d24412b9cebbe39e2bd01b51bce019265e15db5fa9ef0c31daf380f8f7
6
+ metadata.gz: 4108063cc8fc0c5c9641777a053305943647b45094fb91093e780212716d9094a4429928a007819a64ef440b860dbe6ea13ccfd22e9e6a2d2e875750952cc3f9
7
+ data.tar.gz: 5620cc7ebaf22e52d8cc806c1707a2c9c96380422cf709ebfab16d865927d75962cad87b10477b66aa55f00167977c1e1fe6e01ee603d207ccfccc3448813f5f
@@ -9,12 +9,12 @@ require 'gravatar_image_tag'
9
9
  require 'kaminari'
10
10
  require 'responders'
11
11
  require 'tinymce-rails'
12
- require 'inherited_resources'
13
12
 
14
13
  require File.join(File.dirname(__FILE__), '..', '..', 'app', 'components', 'express_admin', 'definition_list')
15
14
 
16
15
  # should be a way to add this folder to rails' autoload paths
17
16
  components = Dir.glob(File.join(File.dirname(__FILE__), '..', '..', 'app', 'components', '**', '*.rb'))
17
+ components.sort!
18
18
  components.each {|component| require component }
19
19
 
20
20
  module ExpressAdmin
@@ -98,12 +98,12 @@ module ExpressAdmin
98
98
 
99
99
  protected
100
100
  def resource_path
101
+ proxy = route_proxy
102
+ proxy ||= self
101
103
  if parent_resource_names.blank?
102
- self.send(scoped_path_helper("#{resource_name}_path"), resource)
103
- elsif proxy = route_proxy
104
- proxy.send(scoped_path_helper(nested_resource_path_helper), resource_ids_hash)
104
+ proxy.send(scoped_path_helper("#{resource_name}_path"), resource)
105
105
  else
106
- self.send(scoped_path_helper(nested_resource_path_helper), resource_ids_hash)
106
+ proxy.send(scoped_path_helper(nested_resource_path_helper), resource_ids_hash)
107
107
  end
108
108
  end
109
109
 
@@ -112,12 +112,12 @@ module ExpressAdmin
112
112
  end
113
113
 
114
114
  def collection_path
115
+ proxy = route_proxy
116
+ proxy ||= self
115
117
  if parent_resource_names.blank?
116
- self.send(scoped_path_helper("#{collection_name}_path"), resource)
117
- elsif proxy = route_proxy
118
- proxy.send(scoped_path_helper(nested_collection_path_helper), resource_ids_hash)
118
+ proxy.send(scoped_path_helper("#{collection_name}_path"))
119
119
  else
120
- self.send(scoped_path_helper(nested_collection_path_helper), resource_ids_hash)
120
+ proxy.send(scoped_path_helper(nested_collection_path_helper), resource_ids_hash)
121
121
  end
122
122
  end
123
123
 
@@ -224,7 +224,12 @@ module ExpressAdmin
224
224
  if previous_parent.nil?
225
225
  self.class_eval do
226
226
  define_method(current_parent) do
227
- "::#{parent_name.capitalize}".constantize.find(parent_id)
227
+ parent_class = parent_module_name.constantize
228
+ current_class_name = parent_name.capitalize
229
+ current_class = parent_class.const_defined?(current_class_name) ?
230
+ parent_class.const_get(current_class_name) :
231
+ "::#{parent_name.capitalize}".constantize
232
+ current_class.find(parent_id)
228
233
  end
229
234
  end
230
235
  else
@@ -1,3 +1,3 @@
1
1
  module ExpressAdmin
2
- VERSION = "1.4.7"
2
+ VERSION = "1.4.8"
3
3
  end
Binary file
@@ -36,7 +36,7 @@ module ExpressAdmin
36
36
  assert_match /form.*id="widget"/, widget_form
37
37
  end
38
38
 
39
- test "uses inherited_resources path helpers to set correct action" do
39
+ test "uses StandardController path helpers to set correct action" do
40
40
  action_attrib = 'action="/widgets"'
41
41
  assert_match action_attrib, widget_form
42
42
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- express_templates (0.9.5)
4
+ express_templates (0.9.7)
5
5
  activesupport (~> 4.2)
6
6
  arbre (~> 1.0)
7
7
  parslet (~> 1.6)
@@ -182,7 +182,8 @@ module ExpressTemplates
182
182
  config[:resource_path]
183
183
  end
184
184
  else
185
- if helpers.respond_to?(:resource_path)
185
+ if helpers.respond_to?(:resource_path) &&
186
+ helpers.resource.to_param.present? # skip on nil resource
186
187
  helpers.resource_path
187
188
  else
188
189
  if ivar_or_resource.respond_to?(:to_param) &&
@@ -1,3 +1,3 @@
1
1
  module ExpressTemplates
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.7"
3
3
  end
@@ -13504,3 +13504,324 @@ SubmitTest: test_submit_accepts_a_value_and_class_option
13504
13504
  ----------------------------------------------------
13505
13505
  SubmitTest: test_submit_takes_string_param_for_value
13506
13506
  ----------------------------------------------------
13507
+ -----------------------------------------------------------------------------
13508
+ ConfigurableTest: test_.has_argument_adds_a_positional_configuration_argument
13509
+ -----------------------------------------------------------------------------
13510
+ ----------------------------------------------------------------------------------------
13511
+ ConfigurableTest: test_.has_argument_appends_supported_arguments_in_order_of_inheritence
13512
+ ----------------------------------------------------------------------------------------
13513
+ -------------------------------------------------------------------------------
13514
+ ConfigurableTest: test_.has_argument_as:_allows_overwrite_of_inherited_argument
13515
+ -------------------------------------------------------------------------------
13516
+ -----------------------------------------------------------------------------------------------------
13517
+ ConfigurableTest: test_.has_argument_makes_builder_arguments_accessible_by_name_according_to_position
13518
+ -----------------------------------------------------------------------------------------------------
13519
+ ---------------------------------------------------
13520
+ ConfigurableTest: test_default_values_are_supported
13521
+ ---------------------------------------------------
13522
+ ----------------------------------------------------------------------
13523
+ ConfigurableTest: test_default_values_for_attributes_can_be_overridden
13524
+ ----------------------------------------------------------------------
13525
+ ------------------------------------------------------------------------
13526
+ ConfigurableTest: test_does_not_pass_declared_options_as_html_attributes
13527
+ ------------------------------------------------------------------------
13528
+ -----------------------------------------------------------
13529
+ ConfigurableTest: test_has_no_id_attribute_if_not_specified
13530
+ -----------------------------------------------------------
13531
+ --------------------------------------------
13532
+ ConfigurableTest: test_options_are_inherited
13533
+ --------------------------------------------
13534
+ -------------------------------------------------------
13535
+ ConfigurableTest: test_renders_first_argument_as_dom_id
13536
+ -------------------------------------------------------
13537
+ ----------------------------------------------------
13538
+ ConfigurableTest: test_required_options_are_required
13539
+ ----------------------------------------------------
13540
+ --------------------------------------------------
13541
+ ConfigurableTest: test_supports_option_declaration
13542
+ --------------------------------------------------
13543
+ ---------------------------------------------------------------
13544
+ ConfigurableTest: test_unrecognized_options_raises_an_exception
13545
+ ---------------------------------------------------------------
13546
+ ----------------------------------------------------
13547
+ ConfigurableTest: test_values_can_be_set_for_options
13548
+ ----------------------------------------------------
13549
+ ------------------------------------------------------------
13550
+ TreeForTest: test_tree_for_accepts_block_with_custom_content
13551
+ ------------------------------------------------------------
13552
+ ---------------------------------------------------------------------------
13553
+ TreeForTest: test_tree_for_renders_correct_markup_with_node.name_as_default
13554
+ ---------------------------------------------------------------------------
13555
+ -----------------------------------------
13556
+ HelloControllerTest: test_should_get_show
13557
+ -----------------------------------------
13558
+ Processing by HelloController#show as HTML
13559
+ Rendered hello/show.html.et within layouts/application (0.8ms)
13560
+ Completed 200 OK in 125ms (Views: 125.0ms)
13561
+ -----------------------------------------------------------
13562
+ RadioTest: test_radio_has_correct_label_field_name_and_text
13563
+ -----------------------------------------------------------
13564
+ ------------------------------------------------------------------
13565
+ RadioTest: test_radio_options_from_collection_when_options_omitted
13566
+ ------------------------------------------------------------------
13567
+ ----------------------------------------------------------
13568
+ RadioTest: test_radio_options_may_be_specified_with_a_hash
13569
+ ----------------------------------------------------------
13570
+ --------------------------------------------------------
13571
+ RadioTest: test_radio_options_present_with_class_'radio'
13572
+ --------------------------------------------------------
13573
+ -------------------------------------------------
13574
+ RadioTest: test_radio_requires_a_parent_component
13575
+ -------------------------------------------------
13576
+ ------------------------------------------------------------
13577
+ RadioTest: test_radio_throws_error_if_given_improper_options
13578
+ ------------------------------------------------------------
13579
+ ------------------------------------------------------------------------------------
13580
+ StringTest: test_String#inspect_works_normally_when_#to_view_code_hasn't_been_called
13581
+ ------------------------------------------------------------------------------------
13582
+ --------------------------------------------------------------------------------
13583
+ StringTest: test_String#to_view_code_causes_subsequent_#inspect_to_remove_quotes
13584
+ --------------------------------------------------------------------------------
13585
+ -------------------------------------------------------
13586
+ StringTest: test_String#to_view_code_returns_the_string
13587
+ -------------------------------------------------------
13588
+ ---------------------------------------------------------------------------------------
13589
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_class_set
13590
+ ---------------------------------------------------------------------------------------
13591
+ ----------------------------------------------------------------------------------------------
13592
+ BasicFieldsTest: test_adds_error_class_if_there_are_errors_on_a_field_with_no_input_attributes
13593
+ ----------------------------------------------------------------------------------------------
13594
+ --------------------------------------------------------------------------------------------
13595
+ BasicFieldsTest: test_adds_error_to_class_if_there_are_errors_on_a_field_with_existing_class
13596
+ --------------------------------------------------------------------------------------------
13597
+ -------------------------------------
13598
+ BasicFieldsTest: test_all_fields_work
13599
+ -------------------------------------
13600
+ ---------------------------------------------------------------------------------
13601
+ BasicFieldsTest: test_hidden_field_passes_additional_html_options_to_rails_helper
13602
+ ---------------------------------------------------------------------------------
13603
+ ---------------------------------------------------------
13604
+ BasicFieldsTest: test_hidden_uses_rails_hidden_tag_helper
13605
+ ---------------------------------------------------------
13606
+ ---------------------------------------------------------
13607
+ BasicFieldsTest: test_passing_html_options_to_fields_work
13608
+ ---------------------------------------------------------
13609
+ -----------------------------------------------------------------------------
13610
+ BasicFieldsTest: test_textarea_passes_additional_html_options_to_rails_helper
13611
+ -----------------------------------------------------------------------------
13612
+ ----------------------------------------------------------
13613
+ BasicFieldsTest: test_textarea_uses_rails_text_area_helper
13614
+ ----------------------------------------------------------
13615
+ ---------------------------------------------------------------------
13616
+ ExpressTemplatesTest: test_ExpressTemplates.render_renders_a_template
13617
+ ---------------------------------------------------------------------
13618
+ -------------------------------------------
13619
+ ExpressTemplatesTest: test_we_have_a_module
13620
+ -------------------------------------------
13621
+ --------------------------------------------
13622
+ CompilerTest: test_.compile_returns_a_string
13623
+ --------------------------------------------
13624
+ ------------------------------------------------------------------------------------
13625
+ InterpolatorTest: test_"{{some_{{thing}}_foo}}"_transforms_to_"#{some_#{thing}_foo}"
13626
+ ------------------------------------------------------------------------------------
13627
+ -------------------------------------------------------------------
13628
+ InterpolatorTest: test_"{{something}}"_transforms_to_"#{something}"
13629
+ -------------------------------------------------------------------
13630
+ ---------------------------------------------------------------------
13631
+ InterpolatorTest: test_'a_lot_of_{{something_"{{good}}"}}'_transforms
13632
+ ---------------------------------------------------------------------
13633
+ ---------------------------------------------------------------------
13634
+ InterpolatorTest: test_nested_with_multiple_nested_expressions_parses
13635
+ ---------------------------------------------------------------------
13636
+ ----------------------------------------------------
13637
+ InterpolatorTest: test_nested_with_outer_text_parses
13638
+ ----------------------------------------------------
13639
+ -------------------------------------------------------
13640
+ InterpolatorTest: test_nested_without_outer_text_parses
13641
+ -------------------------------------------------------
13642
+ ---------------------------------------------------------------------
13643
+ InterpolatorTest: test_simple_expression_with_surrounding_text_parses
13644
+ ---------------------------------------------------------------------
13645
+ -------------------------------------------------
13646
+ InterpolatorTest: test_simplest_expression_parses
13647
+ -------------------------------------------------
13648
+ -----------------------------------------------------------------------------------------
13649
+ ProcTest: test_#source_body_captures_full_body_when_parens_around_parameters_not_provided
13650
+ -----------------------------------------------------------------------------------------
13651
+ ------------------------------------------------
13652
+ ProcTest: test_#source_body_handles_funky_bodies
13653
+ ------------------------------------------------
13654
+ ----------------------------------------------------------
13655
+ ProcTest: test_#source_body_raises_exception_for_arity_>_0
13656
+ ----------------------------------------------------------
13657
+ ------------------------------------------------------
13658
+ ProcTest: test_#source_body_returns_the_body_of_a_proc
13659
+ ------------------------------------------------------
13660
+ ----------------------------------------------
13661
+ ProcTest: test_#source_returns_a_proc's_source
13662
+ ----------------------------------------------
13663
+ ---------------------------------------------------------------
13664
+ ProcTest: test_#source_work_with_a_stabby_lambda_spanning_lines
13665
+ ---------------------------------------------------------------
13666
+ -----------------------------------------------------------------
13667
+ ProcTest: test_#source_works_when_a_proc_is_inside_a_hash_literal
13668
+ -----------------------------------------------------------------
13669
+ ------------------------------------------------------------
13670
+ ProcTest: test_#source_works_with_a_block_containing_a_block
13671
+ ------------------------------------------------------------
13672
+ --------------------------------------------
13673
+ ProcTest: test_#source_works_with_a_do_block
13674
+ --------------------------------------------
13675
+ -----------------------------------------------------
13676
+ ProcTest: test_#source_works_with_a_single_line_block
13677
+ -----------------------------------------------------
13678
+ -------------------------------------------------
13679
+ ProcTest: test_#source_works_with_a_stabby_lambda
13680
+ -------------------------------------------------
13681
+ ----------------------------------------------------------------------------------------
13682
+ ProcTest: test_.from_source_stores_source_of_a_dynamicly_built_proc_for_later_inspection
13683
+ ----------------------------------------------------------------------------------------
13684
+ --------------------------------------------------------------
13685
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
13686
+ --------------------------------------------------------------
13687
+ ------------------------------------------------------------------------
13688
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
13689
+ ------------------------------------------------------------------------
13690
+ ----------------------------------------------------------
13691
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
13692
+ ----------------------------------------------------------
13693
+ -----------------------------
13694
+ HandlerTest: test_locals_work
13695
+ -----------------------------
13696
+ ------------------------------------------------------------
13697
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
13698
+ ------------------------------------------------------------
13699
+ ----------------------------------
13700
+ HandlerTest: test_other_attributes
13701
+ ----------------------------------
13702
+ -------------------------------------------
13703
+ HandlerTest: test_our_handler_is_registered
13704
+ -------------------------------------------
13705
+ ------------------------------------------------------------------
13706
+ HandlerTest: test_raises_warning_if_template_has_conditional_logic
13707
+ ------------------------------------------------------------------
13708
+ ---------------------------------------
13709
+ HandlerTest: test_string_in_block_works
13710
+ ---------------------------------------
13711
+ ----------------------------------------------
13712
+ SubmitTest: test_submit_accepts_a_class_option
13713
+ ----------------------------------------------
13714
+ --------------------------------------------------------
13715
+ SubmitTest: test_submit_accepts_a_value_and_class_option
13716
+ --------------------------------------------------------
13717
+ ----------------------------------------------------
13718
+ SubmitTest: test_submit_takes_string_param_for_value
13719
+ ----------------------------------------------------
13720
+ ---------------------------------------------------------------
13721
+ ExpressFormTest: test_express_form_contents_are_inside_the_form
13722
+ ---------------------------------------------------------------
13723
+ ---------------------------------------------------------
13724
+ ExpressFormTest: test_express_form_default_method_is_POST
13725
+ ---------------------------------------------------------
13726
+ -----------------------------------------------------
13727
+ ExpressFormTest: test_simplest_form_contains_form_tag
13728
+ -----------------------------------------------------
13729
+ ---------------------------------------------------------------
13730
+ ExpressFormTest: test_simplest_form_contains_rails_form_helpers
13731
+ ---------------------------------------------------------------
13732
+ ---------------------------------------------------
13733
+ ExpressFormTest: test_simplest_form_contains_submit
13734
+ ---------------------------------------------------
13735
+ -------------------------------------------
13736
+ ExpressFormTest: test_simplest_form_renders
13737
+ -------------------------------------------
13738
+ -------------------------------------------------------------------
13739
+ ExpressFormTest: test_simplest_form_uses_form_action_for_the_action
13740
+ -------------------------------------------------------------------
13741
+ -----------------------------------------------------------
13742
+ ExpressFormTest: test_simplest_form_will_have_the_proper_id
13743
+ -----------------------------------------------------------
13744
+ -------------------------------------------------------------
13745
+ CheckboxTest: test_checkbox_places_the_label_before_the_input
13746
+ -------------------------------------------------------------
13747
+ -------------------------------------------------------
13748
+ CheckboxTest: test_checkbox_respects_label_after:_true_
13749
+ -------------------------------------------------------
13750
+ -----------------------------------------------------------------
13751
+ BaseTest: test_.contains_places_fragment_inside_the_enclosing_tag
13752
+ -----------------------------------------------------------------
13753
+ ---------------------------------------------------------
13754
+ BaseTest: test_.has_attributes_creates_default_attributes
13755
+ ---------------------------------------------------------
13756
+ -----------------------------------------------------
13757
+ BaseTest: test_.tag_name_determines_the_enclosing_tag
13758
+ -----------------------------------------------------
13759
+ --------------------------------------------------
13760
+ BaseTest: test_before_build_hook_runs_before_build
13761
+ --------------------------------------------------
13762
+ --------------------------------------------------------------
13763
+ BaseTest: test_class_name_is_dasherized_instead_of_underscored
13764
+ --------------------------------------------------------------
13765
+ -----------------------------------------------------------
13766
+ BaseTest: test_class_option_adds_a_class,_does_not_override
13767
+ -----------------------------------------------------------
13768
+ ----------------------------------------------------
13769
+ BaseTest: test_options_are_passed_to_html_attributes
13770
+ ----------------------------------------------------
13771
+ ----------------------------------------------------------------
13772
+ SelectTest: test_select_collection_works_using_collection_select
13773
+ ----------------------------------------------------------------
13774
+ ------------------------------------------
13775
+ SelectTest: test_select_comes_with_a_label
13776
+ ------------------------------------------
13777
+ --------------------------------------------------
13778
+ SelectTest: test_select_defaults_can_be_overridden
13779
+ --------------------------------------------------
13780
+ -------------------------------------------------------
13781
+ SelectTest: test_select_defaults_to_include_blank:_true
13782
+ -------------------------------------------------------
13783
+ ------------------------------------------------------------------------------------
13784
+ SelectTest: test_select_generates_correct_options_when_values_are_specified_as_array
13785
+ ------------------------------------------------------------------------------------
13786
+ ------------------------------------------------------------------------
13787
+ SelectTest: test_select_generates_options_from_data_when_options_omitted
13788
+ ------------------------------------------------------------------------
13789
+ --------------------------------------------------------------
13790
+ SelectTest: test_select_multiple:_true_if_passed_multiple_true
13791
+ --------------------------------------------------------------
13792
+ -----------------------------------------------------------------------------------------
13793
+ SelectTest: test_select_multiple_gets_options_from_associated_has_many_through_collection
13794
+ -----------------------------------------------------------------------------------------
13795
+ ---------------------------------------------------
13796
+ SelectTest: test_select_requires_a_parent_component
13797
+ ---------------------------------------------------
13798
+ ---------------------------------------------------------------------------
13799
+ SelectTest: test_select_uses_options_from_collect..._when_field_is_relation
13800
+ ---------------------------------------------------------------------------
13801
+ -------------------------------------------------------------------------
13802
+ SelectTest: test_selected_option_is_omitted_selection_is_taken_from_model
13803
+ -------------------------------------------------------------------------
13804
+ --------------------------------------------------------------------------------------------------
13805
+ ExpressTemplates::ResourcefulTest: test_#resource_class_returns_resource_class_option_if_specified
13806
+ --------------------------------------------------------------------------------------------------
13807
+ -----------------------------------------------------------------------------------------
13808
+ ExpressTemplates::ResourcefulTest: test_infers_a_namespace_and_no_prefix_within_an_engine
13809
+ -----------------------------------------------------------------------------------------
13810
+ ---------------------------------------------------------------------------------------------------
13811
+ ExpressTemplates::ResourcefulTest: test_infers_namespace_and_path_prefix_within_an_engine_and_scope
13812
+ ---------------------------------------------------------------------------------------------------
13813
+ ------------------------------------------------------------------------------------------------
13814
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_infers_prefix_within_a_scope_within_an_app
13815
+ ------------------------------------------------------------------------------------------------
13816
+ -----------------------------------------------------------------------------
13817
+ ExpressTemplates::ResourcefulTest: test_no_namespace,_no_prefix_within_an_app
13818
+ -----------------------------------------------------------------------------
13819
+ ---------------------------------------------------------------------------------------------
13820
+ IndenterTest: test_.for(:name)_returns_current_indent_without_newline_when_block_is_not_given
13821
+ ---------------------------------------------------------------------------------------------
13822
+ -----------------------------------------------------------------
13823
+ IndenterTest: test_.for(:name)_takes_a_block_receiving_whitespace
13824
+ -----------------------------------------------------------------
13825
+ ------------------------------------------------------------------
13826
+ IndenterTest: test_nesting_blocks_increases_whitespace_accordingly
13827
+ ------------------------------------------------------------------
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: express_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.7
4
+ version: 1.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Talcott Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-13 00:00:00.000000000 Z
11
+ date: 2015-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bourbon
@@ -168,20 +168,6 @@ dependencies:
168
168
  - - "~>"
169
169
  - !ruby/object:Gem::Version
170
170
  version: '2.1'
171
- - !ruby/object:Gem::Dependency
172
- name: inherited_resources
173
- requirement: !ruby/object:Gem::Requirement
174
- requirements:
175
- - - "~>"
176
- - !ruby/object:Gem::Version
177
- version: '1.6'
178
- type: :runtime
179
- prerelease: false
180
- version_requirements: !ruby/object:Gem::Requirement
181
- requirements:
182
- - - "~>"
183
- - !ruby/object:Gem::Version
184
- version: '1.6'
185
171
  - !ruby/object:Gem::Dependency
186
172
  name: select2-rails
187
173
  requirement: !ruby/object:Gem::Requirement
@@ -571,6 +557,7 @@ files:
571
557
  - vendor/gems/express_templates/express_templates-0.9.4.gem
572
558
  - vendor/gems/express_templates/express_templates-0.9.5.gem
573
559
  - vendor/gems/express_templates/express_templates-0.9.6.gem
560
+ - vendor/gems/express_templates/express_templates-0.9.7.gem
574
561
  - vendor/gems/express_templates/express_templates.gemspec
575
562
  - vendor/gems/express_templates/lib/arbre/patches.rb
576
563
  - vendor/gems/express_templates/lib/core_extensions/proc.rb