Displaying 2 results from an estimated 2 matches for "ruby_develop".
Did you mean:
ruby_developer
2007 Dec 14
13
RSpec-1.1.0 is released
...Acceptance Tests.
RSpec 1.1 also ships with a Ruby on Rails extension called RailsStory,
which lets you write executable user stories for your rails apps as
well.
== Nested Example Groups
Now you can nest groups to organize things a bit better:
describe RubyDeveloper do
before(:each) do
@ruby_developer = RubyDeveloper.new
end
describe "using RSpec 1.1.0" do
before(:each) do
@ruby_developer.use_rspec(''1.1.0'')
end
it "should be able to nest example groups" do
@ruby_developer.should be_able_to_nest_example_groups
end
end...
2008 May 29
2
Render partial yields "dynamic constant assignment"
..."template" instead of as a partial works just fine. The error occurs 3
lines after the last line of HTML code in the partial. There is no line
72! Here is the error:
SyntaxError in Building_blocks#preview
Showing building_blocks/_BB02.html.erb where line #72 raised:
compile error
C:/Ruby_Development/sbtool/app/views/building_blocks/_BB02.html.erb:-2:
dynamic constant assignment
BB02 = local_assigns[:BB02]
^
C:/Ruby_Development/sbtool/app/views/building_blocks/_BB02.html.erb:-1:
dynamic constant assignment
BB02_counter = local_assigns[:BB02_counter]
Extracted source (around line #72)...