Skip to content

Commit

Permalink
add lib/rspec-rails so rails+bundler can find it
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Feb 5, 2010
1 parent b8bdfb8 commit 54a93cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions example_app_template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ class Application < Rails::Application

run('bundle install')

generate('rspec:install')
generate('model', 'thing', 'name:string')
generate('controller', 'widgets', 'index')
generate('integration_test', 'widgets')
run('script/rails g rspec:install')
run('script/rails g model thing name:string')
run('script/rails g controller widgets index')
run('script/rails g integration_test widgets')

run('rake db:migrate')
run('rake db:test:prepare')
Expand Down
Empty file added lib/rspec-rails.rb
Empty file.
2 changes: 1 addition & 1 deletion lib/rspec/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Version # :nodoc:
MAJOR = 2
MINOR = 0
TINY = 0
PRE = 'a3'
PRE = 'a4'

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')

Expand Down
5 changes: 3 additions & 2 deletions rspec-rails.gemspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{rspec-rails}
s.version = "2.0.0.a3"
s.version = "2.0.0.a4"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["David Chelimsky", "Chad Humphries"]
Expand Down Expand Up @@ -50,6 +50,7 @@ Gem::Specification.new do |s|
"lib/generators/rspec/scaffold/templates/new_spec.rb",
"lib/generators/rspec/scaffold/templates/routing_spec.rb",
"lib/generators/rspec/scaffold/templates/show_spec.rb",
"lib/rspec-rails.rb",
"lib/rspec/rails.rb",
"lib/rspec/rails/example.rb",
"lib/rspec/rails/example/controller_example_group.rb",
Expand Down

0 comments on commit 54a93cb

Please sign in to comment.