fortitude 0.9.0-java → 0.9.1-java
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 +4 -4
- data/CHANGES.md +9 -0
- data/CONTRIBUTORS.md +2 -0
- data/lib/fortitude/method_templates/tag_method_template.rb.smpl +16 -8
- data/lib/fortitude/rails/fortitude_rails_helpers.rb +32 -0
- data/lib/fortitude/rails/railtie.rb +3 -0
- data/lib/fortitude/version.rb +1 -1
- data/lib/fortitude/widget/files.rb +1 -0
- data/spec/rails/erb_integration_system_spec.rb +10 -0
- data/spec/rails/erector_coexistence_system_spec.rb +8 -0
- data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +6 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb +7 -0
- data/spec/rails/templates/erector_coexistence_system_spec/app/controllers/erector_coexistence_system_spec_controller.rb +8 -0
- data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb +7 -0
- data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb +7 -0
- data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb +4 -0
- data/spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb +4 -0
- data/spec/system/needs_building_performance_system_spec.rb +39 -0
- data/spec/system/tag_rendering_system_spec.rb +4 -0
- data/spec/system/widget_class_from_spec.rb +4 -0
- metadata +19 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0da70f10c6efd92397b92b403da0fc45a0fdd8e
|
4
|
+
data.tar.gz: 3747f7259db1e882d52cee43c0bcbb8206ac5af0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e594adf4b0fcdfe2f18075d3f33bc9f2107201ce970de766044089f97a68758c3d9648ea97ca0c6e835eb9dcd968ecd1a6fd7f0c068e8ea8125f63733af123e
|
7
|
+
data.tar.gz: c932fee9235eee71853d612347ac39fc4b361dae5118118224351a566ebc7317da381fb93cb64ddb959ff70c31df9ccd5bb847c155a818cc159466e6c7ffd608
|
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,
|
data/CONTRIBUTORS.md
CHANGED
@@ -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
|
15
|
-
|
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
|
-
|
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
|
-
|
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
|
data/lib/fortitude/version.rb
CHANGED
@@ -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
|
@@ -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,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.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Andrew Geweke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -173,6 +173,7 @@ files:
|
|
173
173
|
- lib/fortitude/method_templates/tag_method_template.rb.smpl
|
174
174
|
- lib/fortitude/method_templates/text_method_template.rb.smpl
|
175
175
|
- lib/fortitude/rails.rb
|
176
|
+
- lib/fortitude/rails/fortitude_rails_helpers.rb
|
176
177
|
- lib/fortitude/rails/helpers.rb
|
177
178
|
- lib/fortitude/rails/railtie.rb
|
178
179
|
- lib/fortitude/rails/renderer.rb
|
@@ -362,6 +363,9 @@ files:
|
|
362
363
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb
|
363
364
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb
|
364
365
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb
|
366
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb
|
367
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb
|
368
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb
|
365
369
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb
|
366
370
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb
|
367
371
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb
|
@@ -369,12 +373,16 @@ files:
|
|
369
373
|
- spec/rails/templates/erector_coexistence_system_spec/app/helpers/application_helper.rb
|
370
374
|
- spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/erector_widget_in_app_v_views.rb
|
371
375
|
- spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/fortitude_widget_in_app_v_views.rb
|
376
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb
|
372
377
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_from_fortitude_widget.rb
|
373
378
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_in_app_views.rb
|
379
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb
|
374
380
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_from_erector_widget.rb
|
375
381
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_in_app_views.rb
|
376
382
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_erector_widget_from_fortitude_widget.rb
|
377
383
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_fortitude_widget_from_erector_widget.rb
|
384
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb
|
385
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb
|
378
386
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_widget.rb
|
379
387
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/fortitude_widget.rb
|
380
388
|
- spec/rails/templates/erector_coexistence_system_spec/config/application.rb
|
@@ -526,6 +534,7 @@ files:
|
|
526
534
|
- spec/system/inline_system_spec.rb
|
527
535
|
- spec/system/localization_system_spec.rb
|
528
536
|
- spec/system/method_precedence_system_spec.rb
|
537
|
+
- spec/system/needs_building_performance_system_spec.rb
|
529
538
|
- spec/system/needs_system_spec.rb
|
530
539
|
- spec/system/other_outputters_system_spec.rb
|
531
540
|
- spec/system/rails_not_available_spec.rb
|
@@ -710,6 +719,9 @@ test_files:
|
|
710
719
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb
|
711
720
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb
|
712
721
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb
|
722
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget.html.erb
|
723
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_class.html.erb
|
724
|
+
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_widget_widget.rb
|
713
725
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb
|
714
726
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb
|
715
727
|
- spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb
|
@@ -717,12 +729,16 @@ test_files:
|
|
717
729
|
- spec/rails/templates/erector_coexistence_system_spec/app/helpers/application_helper.rb
|
718
730
|
- spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/erector_widget_in_app_v_views.rb
|
719
731
|
- spec/rails/templates/erector_coexistence_system_spec/app/v/views/erector_coexistence_system_spec/fortitude_widget_in_app_v_views.rb
|
732
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget.rb
|
720
733
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_from_fortitude_widget.rb
|
721
734
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/erector_widget_in_app_views.rb
|
735
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget.rb
|
722
736
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_from_erector_widget.rb
|
723
737
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/fortitude_widget_in_app_views.rb
|
724
738
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_erector_widget_from_fortitude_widget.rb
|
725
739
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/render_fortitude_widget_from_erector_widget.rb
|
740
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_erector.html.erb
|
741
|
+
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_coexistence_system_spec/widget_from_erb_fortitude.html.erb
|
726
742
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/erector_widget.rb
|
727
743
|
- spec/rails/templates/erector_coexistence_system_spec/app/views/fortitude_widget.rb
|
728
744
|
- spec/rails/templates/erector_coexistence_system_spec/config/application.rb
|
@@ -874,6 +890,7 @@ test_files:
|
|
874
890
|
- spec/system/inline_system_spec.rb
|
875
891
|
- spec/system/localization_system_spec.rb
|
876
892
|
- spec/system/method_precedence_system_spec.rb
|
893
|
+
- spec/system/needs_building_performance_system_spec.rb
|
877
894
|
- spec/system/needs_system_spec.rb
|
878
895
|
- spec/system/other_outputters_system_spec.rb
|
879
896
|
- spec/system/rails_not_available_spec.rb
|