fortitude 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +9 -0
  3. data/CONTRIBUTORS.md +2 -0
  4. data/lib/fortitude/method_templates/tag_method_template.rb.smpl +16 -8
  5. data/lib/fortitude/rails/fortitude_rails_helpers.rb +32 -0
  6. data/lib/fortitude/rails/railtie.rb +3 -0
  7. data/lib/fortitude/version.rb +1 -1
  8. data/lib/fortitude/widget/files.rb +1 -0
  9. data/spec/rails/erb_integration_system_spec.rb +10 -0
  10. data/spec/rails/erector_coexistence_system_spec.rb +8 -0
  11. data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +6 -0
  12. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb +3 -0
  13. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb +3 -0
  14. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb +7 -0
  15. data/spec/rails/templates/erector_coexistence_system_spec/app/controllers/erector_coexistence_system_spec_controller.rb +8 -0
  16. data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb +7 -0
  17. data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb +7 -0
  18. data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb +4 -0
  19. data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb +4 -0
  20. data/spec/system/needs_building_performance_system_spec.rb +39 -0
  21. data/spec/system/tag_rendering_system_spec.rb +4 -0
  22. data/spec/system/widget_class_from_spec.rb +4 -0
  23. metadata +19 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef3f1d9ea4fed42b18ff222ae38850effb0f9fae
4
- data.tar.gz: 555f72bda0961a863c4c418ffe59fbaee11250cd
3
+ metadata.gz: 8bc0feb041f46a5daae1e38effcc4f63c04a6585
4
+ data.tar.gz: 76f87dc4c555d49e3316cd11ceeeeeecd94c98c8
5
5
  SHA512:
6
- metadata.gz: e4491a8d9a39112a5ba3b39ae093d2d312eb1507eab816fe13846c7b8d92f4fc4239057f9751ab1019462795d5c19f3994d9ceb56dd9eaf76934be7e41339686
7
- data.tar.gz: 9308e4d70f1cc45765e731983d02262dbab9988bb59a0092ef78c701196ec2e76a1025331c288ebafaa16ccfa340e0ba8ec1bc19590165e9c413475feff37c5f
6
+ metadata.gz: 860c7e733059f5fc5ec10bce8bbf05a8c547587d937d88641cc40f69003ec723371d27a25c2cc39c84854551a0847648a27611a3f8e66efe9dc6002ed9edb919
7
+ data.tar.gz: 6e59c6df7ddcb49be326c3f8ba80a35ead5a7888f83b5dc55d28c09ddc1349670bd850e78a36dae6bec85b7fe538a50d5c2e5ee97f7291f320faa107c1157b3f
data/CHANGES.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Fortitude Releases
2
2
 
3
+ ## 0.9.1, 14 December 2014
4
+
5
+ * Fixed a bug where doing something like `div nil, :class => 'foo'` would simply output `<div></div>`, rather than the
6
+ desired `<div class="foo"></div>`. (Thanks to [Leaf](https://github.com/leafo) for the bug report!)
7
+ * You can now render widgets from ERb using a `widget` method, using the exact same syntax you would for rendering them
8
+ from Fortitude. In addition, this works for Erector widgets, too.
9
+ * Fixed a bug where calling `Fortitude::Widget.widget_class_from_file` would fail if the class name as specified in the
10
+ source text of the file started with leading colons (_e.g._, `class ::Views::Foo`).
11
+
3
12
  ## 0.9.0, 29 November 2014
4
13
 
5
14
  Updated Fortitude's version number to 0.9.0: at this point, Fortitude should be considered fully production-ready,
@@ -29,6 +29,8 @@ Fortitude is written by [Andrew Geweke](https://github.com/ageweke), with contri
29
29
  the module it used to mix in helper methods was given two names, one of them incorrect.
30
30
  * Reporting a bug where using `#capture` inside a widget being rendered via `render :widget => ...` would not work
31
31
  properly.
32
+ * Reporting a bug where doing something like `div(nil, :class => 'foo')` would produce just `<div></div>` instead of
33
+ the desired `<div class="foo"></div>`.
32
34
  * [Adam Becker](https://github.com/ajb) for:
33
35
  * Discussion and details around exactly what `:attribute => true`, `:attribute => false`, and so on should render
34
36
  from Fortitude.
@@ -11,16 +11,24 @@ def #{method_name}(content_or_attributes = nil, attributes = nil)
11
11
  end # :if needs_formatting
12
12
 
13
13
  if (! content_or_attributes)
14
- if block_given?
15
- _fortitude_raise_no_content_allowed_error(#{tag_object_const}) # :if ! content_allowed
16
- o.#{concat_method}(#{open_const})
17
- #{yield_call}
18
- o = @_fortitude_output_buffer_holder.output_buffer
19
- o.#{concat_method}(#{close_const})
14
+ if attributes
15
+ content_or_attributes, attributes = attributes, nil
20
16
  else
21
- o.#{concat_method}(#{alone_const})
17
+ if block_given?
18
+ _fortitude_raise_no_content_allowed_error(#{tag_object_const}) # :if ! content_allowed
19
+ o.#{concat_method}(#{open_const})
20
+ #{yield_call}
21
+ o = @_fortitude_output_buffer_holder.output_buffer
22
+ o.#{concat_method}(#{close_const})
23
+ else
24
+ o.#{concat_method}(#{alone_const})
25
+ end
26
+
27
+ return FORTITUDE_NO_RETURN_VALUE_FROM_TAGS
22
28
  end
23
- elsif content_or_attributes.kind_of?(Hash)
29
+ end
30
+
31
+ if content_or_attributes.kind_of?(Hash)
24
32
  this_tag.validate_attributes(self, content_or_attributes) # :if needs_attribute_rules
25
33
  this_tag.validate_id_uniqueness(self, content_or_attributes) # :if needs_id_uniqueness
26
34
  o.#{concat_method}(#{partial_open_const})
@@ -0,0 +1,32 @@
1
+ require 'active_support/concern'
2
+
3
+ module Fortitude
4
+ module Rails
5
+ module FortitudeRailsHelpers
6
+ extend ActiveSupport::Concern
7
+
8
+ EMPTY_RETURN_VALUE = ''.html_safe.freeze
9
+
10
+ def widget(target, assigns = {}, options = {}, &block)
11
+ if target.kind_of?(Class) && ((target < ::Fortitude::Widget) || ::Fortitude::Erector.is_erector_widget_class?(target))
12
+ assigns ||= { }
13
+ target = target.new(assigns)
14
+ end
15
+
16
+ if target.kind_of?(::Fortitude::Widget)
17
+ rendering_context = ::Fortitude::RenderingContext.new(:delegate_object => self)
18
+ target.render_to(rendering_context, &block)
19
+ elsif ::Fortitude::Erector.is_erector_widget?(target)
20
+ target.send(:_emit,
21
+ :parent => self,
22
+ :helpers => self,
23
+ :output => output_buffer)
24
+ else
25
+ raise TypeError, "You must pass a Fortitude or Erector widget, or widget class, to #widget; you passed: #{target.inspect}"
26
+ end
27
+
28
+ EMPTY_RETURN_VALUE
29
+ end
30
+ end
31
+ end
32
+ end
@@ -1,4 +1,5 @@
1
1
  require 'fortitude/rendering_context'
2
+ require 'fortitude/rails/fortitude_rails_helpers'
2
3
 
3
4
  if defined?(ActiveSupport)
4
5
  ActiveSupport.on_load(:before_initialize) do
@@ -28,6 +29,8 @@ module Fortitude
28
29
  Fortitude::Rails::Helpers.apply_refined_helpers_to!(Fortitude::Widget)
29
30
  end
30
31
 
32
+ ::ActionView::Base.send(:include, ::Fortitude::Rails::FortitudeRailsHelpers)
33
+
31
34
  if ::Rails.env.development?
32
35
  ::Fortitude::Widget.class_eval do
33
36
  format_output true
@@ -1,3 +1,3 @@
1
1
  module Fortitude
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
@@ -130,6 +130,7 @@ or add a "magic comment" to the source code of this widget that looks like this:
130
130
  out = nil
131
131
 
132
132
  class_names.each do |class_name|
133
+ class_name = $1 if class_name =~ /^:+(.*)$/i
133
134
  klass = begin
134
135
  "::#{class_name}".constantize
135
136
  rescue NameError => ne
@@ -6,6 +6,16 @@ describe "Rails ERb integration support", :type => :rails do
6
6
  /erb_start/, /erb_end/, /erb_start.*erb to widget with render partial widget.*erb_end/m)
7
7
  end
8
8
 
9
+ it "should let you call a widget from an ERb file with widget" do
10
+ expect_match("erb_to_widget_with_widget", /erb to widget with widget widget/,
11
+ /erb_start/, /erb_end/, /erb_start.*erb to widget with widget widget, name Josephine.*erb_end/m)
12
+ end
13
+
14
+ it "should let you call a widget from an ERb file with widget, passing the class" do
15
+ expect_match("erb_to_widget_with_widget_class", /erb to widget with widget widget/,
16
+ /erb_start/, /erb_end/, /erb_start.*erb to widget with widget widget, name Josephine.*erb_end/m)
17
+ end
18
+
9
19
  it "should prefer ERb partials to Fortitude partials" do
10
20
  expect_match("prefers_erb_partial", /erb partial/,
11
21
  /erb_start.*erb partial.*erb_end/m)
@@ -38,6 +38,14 @@ describe "Erector coexistence support", :type => :rails do
38
38
  expect_match("render_widget_erector", /this is an Erector widget/, :no_layout => true)
39
39
  end
40
40
 
41
+ it "should be able to render a Fortitude widget from ERb using #widget" do
42
+ expect_match("widget_from_erb_fortitude", /this is a Fortitude widget, Josephine.*this is a Fortitude widget, Amanda/mi)
43
+ end
44
+
45
+ it "should be able to render an Erector widget from ERb using #widget" do
46
+ expect_match("widget_from_erb_erector", /this is an Erector widget, Josephine.*this is an Erector widget, Amanda/mi)
47
+ end
48
+
41
49
  it "should be able to render a Fortitude widget with just a class using render :widget" do
42
50
  expect_match("render_widget_fortitude_class", /this is a Fortitude widget/)
43
51
  end
@@ -2,6 +2,12 @@ class ErbIntegrationSystemSpecController < ApplicationController
2
2
  def erb_to_widget_with_render_partial
3
3
  end
4
4
 
5
+ def erb_to_widget_with_widget
6
+ end
7
+
8
+ def erb_to_widget_with_widget_class
9
+ end
10
+
5
11
  def prefers_erb_partial
6
12
  end
7
13
 
@@ -0,0 +1,3 @@
1
+ <p>erb_start</p>
2
+ <%= widget Views::ErbIntegrationSystemSpec::ErbToWidgetWithWidgetWidget.new(:name => 'Josephine') %>
3
+ <p>erb_end</p>
@@ -0,0 +1,3 @@
1
+ <p>erb_start</p>
2
+ <%= widget Views::ErbIntegrationSystemSpec::ErbToWidgetWithWidgetWidget, :name => 'Josephine' %>
3
+ <p>erb_end</p>
@@ -0,0 +1,7 @@
1
+ class Views::ErbIntegrationSystemSpec::ErbToWidgetWithWidgetWidget < Fortitude::Widgets::Html5
2
+ needs :name
3
+
4
+ def content
5
+ p "erb to widget with widget widget, name #{name}"
6
+ end
7
+ end
@@ -25,6 +25,14 @@ class ErectorCoexistenceSystemSpecController < ApplicationController
25
25
  render :widget => ::Views::ErectorWidget.new
26
26
  end
27
27
 
28
+ def widget_from_erb_fortitude
29
+ # nothing here
30
+ end
31
+
32
+ def widget_from_erb_erector
33
+ # nothing here
34
+ end
35
+
28
36
  def render_widget_fortitude_class
29
37
  render :widget => ::Views::FortitudeWidget
30
38
  end
@@ -0,0 +1,7 @@
1
+ class Views::ErectorCoexistenceSystemSpec::ErectorWidget < ::Erector::Widget
2
+ needs :name
3
+
4
+ def content
5
+ p "this is an Erector widget, #{@name}"
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class Views::ErectorCoexistenceSystemSpec::FortitudeWidget < ::Fortitude::Widgets::Html5
2
+ needs :name
3
+
4
+ def content
5
+ p "this is a Fortitude widget, #{name}"
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ <p>erb_start</p>
2
+ <%= widget Views::ErectorCoexistenceSystemSpec::ErectorWidget.new(:name => 'Josephine') %>
3
+ <%= widget Views::ErectorCoexistenceSystemSpec::ErectorWidget, :name => 'Amanda' %>
4
+ <p>erb_end</p>
@@ -0,0 +1,4 @@
1
+ <p>erb_start</p>
2
+ <%= widget Views::ErectorCoexistenceSystemSpec::FortitudeWidget.new(:name => 'Josephine') %>
3
+ <%= widget Views::ErectorCoexistenceSystemSpec::FortitudeWidget, :name => 'Amanda' %>
4
+ <p>erb_end</p>
@@ -0,0 +1,39 @@
1
+ describe "Fortitude needs-building performance", :type => :system do
2
+ CLASS_COUNT = 2_000
3
+ NEEDS_NAMES = %w{foo bar baz quux marph}
4
+
5
+ it "should build needs quickly" do
6
+ skip "nope"
7
+
8
+ widget_classes = [ ]
9
+
10
+ puts "creating #{CLASS_COUNT} widget classes..."
11
+ CLASS_COUNT.times do |i|
12
+ klass = widget_class do
13
+ def content
14
+ "widget_class!"
15
+ end
16
+ end
17
+
18
+ needs_count = rand(NEEDS_NAMES.length + 1)
19
+ needs_count.times do |i|
20
+ klass.send(:needs, NEEDS_NAMES[i] => "the_#{NEEDS_NAMES[i]}")
21
+ end
22
+
23
+ widget_classes << klass
24
+ end
25
+
26
+ start_time = Time.now
27
+ widget_classes.each { |wc| wc.new }
28
+ end_time = Time.now
29
+
30
+ puts "Took #{end_time - start_time} seconds to instantiate all #{widget_classes.length} widget classes the first time."
31
+ puts "total_time_spent: #{$total_time_spent}"
32
+
33
+ start_time = Time.now
34
+ widget_classes.each { |wc| wc.new }
35
+ end_time = Time.now
36
+
37
+ puts "Took #{end_time - start_time} seconds to instantiate all #{widget_classes.length} widget classes the second time."
38
+ end
39
+ end
@@ -23,6 +23,10 @@ describe "Fortitude tag rendering", :type => :system do
23
23
  should_render_to("") { rawtext(nil) }
24
24
  end
25
25
 
26
+ it "should allow rendering nil as text, but still passing options" do
27
+ should_render_to("<div class=\"foo\"></div>") { div(nil, :class => 'foo') }
28
+ end
29
+
26
30
  it "should render an attribute mapped to nil as missing" do
27
31
  should_render_to("<p></p>") { p(:class => nil) }
28
32
  should_render_to("<p></p>") { p(:foo => { :bar => nil }) }
@@ -56,6 +56,10 @@ describe "Fortitude widget-class-from-(file|source) support", :type => :system d
56
56
  expect(wcfs("class WidgetFromClass12 < WidgetFromClass12Parent; end")).to eq(WidgetFromClass12)
57
57
  end
58
58
 
59
+ it "should work if given a class name with a leading :: prefix" do
60
+ expect(wcfs("class ::WidgetFromClassWithColons < Fortitude::Widget; end")).to eq(::WidgetFromClassWithColons)
61
+ end
62
+
59
63
  it "should be able to guess the class name of a class namespaced in a module" do
60
64
  module ::Wcfs1; end
61
65
  expect(wcfs("class Wcfs1::WidgetFromClass6 < ::Fortitude::Widget; end")).to eq(Wcfs1::WidgetFromClass6)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fortitude
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Geweke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-30 00:00:00.000000000 Z
11
+ date: 2014-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -174,6 +174,7 @@ files:
174
174
  - lib/fortitude/method_templates/tag_method_template.rb.smpl
175
175
  - lib/fortitude/method_templates/text_method_template.rb.smpl
176
176
  - lib/fortitude/rails.rb
177
+ - lib/fortitude/rails/fortitude_rails_helpers.rb
177
178
  - lib/fortitude/rails/helpers.rb
178
179
  - lib/fortitude/rails/railtie.rb
179
180
  - lib/fortitude/rails/renderer.rb
@@ -363,6 +364,9 @@ files:
363
364
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb
364
365
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb
365
366
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb
367
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb
368
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb
369
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb
366
370
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb
367
371
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb
368
372
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb
@@ -370,12 +374,16 @@ files:
370
374
  - spec/rails/templates/erector_coexistence_system_spec/app/helpers/application_helper.rb
371
375
  - spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/erector_widget_in_app_v_views.rb
372
376
  - spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/fortitude_widget_in_app_v_views.rb
377
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb
373
378
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_from_fortitude_widget.rb
374
379
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_in_app_views.rb
380
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb
375
381
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_from_erector_widget.rb
376
382
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_in_app_views.rb
377
383
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_erector_widget_from_fortitude_widget.rb
378
384
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_fortitude_widget_from_erector_widget.rb
385
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb
386
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb
379
387
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_widget.rb
380
388
  - spec/rails/templates/erector_coexistence_system_spec/app/views/fortitude_widget.rb
381
389
  - spec/rails/templates/erector_coexistence_system_spec/config/application.rb
@@ -527,6 +535,7 @@ files:
527
535
  - spec/system/inline_system_spec.rb
528
536
  - spec/system/localization_system_spec.rb
529
537
  - spec/system/method_precedence_system_spec.rb
538
+ - spec/system/needs_building_performance_system_spec.rb
530
539
  - spec/system/needs_system_spec.rb
531
540
  - spec/system/other_outputters_system_spec.rb
532
541
  - spec/system/rails_not_available_spec.rb
@@ -711,6 +720,9 @@ test_files:
711
720
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb
712
721
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb
713
722
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb
723
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb
724
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb
725
+ - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb
714
726
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb
715
727
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb
716
728
  - spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb
@@ -718,12 +730,16 @@ test_files:
718
730
  - spec/rails/templates/erector_coexistence_system_spec/app/helpers/application_helper.rb
719
731
  - spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/erector_widget_in_app_v_views.rb
720
732
  - spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/fortitude_widget_in_app_v_views.rb
733
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb
721
734
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_from_fortitude_widget.rb
722
735
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_in_app_views.rb
736
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb
723
737
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_from_erector_widget.rb
724
738
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_in_app_views.rb
725
739
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_erector_widget_from_fortitude_widget.rb
726
740
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_fortitude_widget_from_erector_widget.rb
741
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb
742
+ - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb
727
743
  - spec/rails/templates/erector_coexistence_system_spec/app/views/erector_widget.rb
728
744
  - spec/rails/templates/erector_coexistence_system_spec/app/views/fortitude_widget.rb
729
745
  - spec/rails/templates/erector_coexistence_system_spec/config/application.rb
@@ -875,6 +891,7 @@ test_files:
875
891
  - spec/system/inline_system_spec.rb
876
892
  - spec/system/localization_system_spec.rb
877
893
  - spec/system/method_precedence_system_spec.rb
894
+ - spec/system/needs_building_performance_system_spec.rb
878
895
  - spec/system/needs_system_spec.rb
879
896
  - spec/system/other_outputters_system_spec.rb
880
897
  - spec/system/rails_not_available_spec.rb