Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Compatibility with Rails LTS 2.3.18.16 #19

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
PATH
remote: .
specs:
rspec-rails (1.3.4)
rack (>= 1.0.0)
rspec (~> 1.3.1)

GEM
remote: http://rubygems.org/
specs:
builder (3.2.2)
cucumber (1.3.20)
builder (>= 2.1.2)
diff-lcs (>= 1.1.3)
gherkin (~> 2.12)
multi_json (>= 1.7.5, < 2.0)
multi_test (>= 0.1.2)
diff-lcs (1.2.5)
gherkin (2.12.2)
multi_json (~> 1.3)
multi_json (1.11.2)
multi_test (0.1.2)
rack (1.4.7)
rspec (1.3.2)

PLATFORMS
ruby

DEPENDENCIES
cucumber (>= 0.3.99)
rack (= 1.4.7)
rspec-rails!

BUNDLED WITH
1.16.1
12 changes: 9 additions & 3 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
= rspec-rails 1.3 for Rails 2.3 LTS

This is a maintenance fork of +rspec-rails+ 1.3 to be used with {Rails 2.3 LTS}[https://railslts.com].

There is also a {maintenance fork of +rspec-rails+ 2.14}[https://github.com/makandra/rspec-rails/tree/2-14-lts] to be used with {Rails 3.2 LTS}[https://railslts.com].

If you are looking for modern versions of this gem, see http://github.com/rspec/rspec-rails.


= Spec::Rails

* http://rspec.info
Expand All @@ -13,9 +22,6 @@ Behaviour Driven Development for Ruby on Rails.
rspec-rails is an RSpec extension that allows you to drive the development of
Ruby on Rails applications with RSpec.

This is the repository for rspec-rails-1.x. If you're looking
for rspec-rails-2 for rails-3, see http://github.com/rspec/rspec-rails.

== FEATURES:

* Use RSpec to independently specify Rails Models, Views, Controllers and Helpers
Expand Down
1 change: 1 addition & 0 deletions lib/spec/rails/example/controller_example_group.rb
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def render(*args)
def record_render(opts)
return unless @_rendered
@_rendered[:template] ||= opts[:file] if opts[:file]
@_rendered[:template] ||= opts[:file_in_view_path] if opts[:file_in_view_path]
@_rendered[:partials][opts[:partial]] += 1 if opts[:partial]
end

Expand Down