Skip to content

Commit

Permalink
Remove /evergreen/list path
Browse files Browse the repository at this point in the history
Since Sinatra 1.1 now works with Rails3 in
allowing mounting at the root url, this is what
we'll use. Just go to /evergreen instead.
  • Loading branch information
jnicklas committed Oct 25, 2010
1 parent 3de3e12 commit 71b3393
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion README.rdoc
Expand Up @@ -45,7 +45,7 @@ Add Evergreen to your Gemfile:

gem 'evergreen', :require => 'evergreen/rails'

Start your rails application and navigate to /evergreen/list. You should now see a list of all spec files, click on one to run it.
Start your rails application and navigate to /evergreen. You should now see a list of all spec files, click on one to run it.

There's a rake task provided for you that you can use to run your specs:

Expand Down
5 changes: 0 additions & 5 deletions lib/evergreen/application.rb
Expand Up @@ -30,11 +30,6 @@ def url(path)
erb :list
end

get '/list' do
@suite = suite
erb :list
end

get '/run/*' do |name|
@suite = suite
@spec = suite.get_spec(name)
Expand Down

0 comments on commit 71b3393

Please sign in to comment.