mischa-email_spec 0.0.3 → 0.0.4
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.
- data/README.rdoc +11 -10
- data/Rakefile +1 -1
- data/generators/email_spec/templates/email_steps.rb +36 -12
- data/lib/email_spec/email_spec_helpers.rb +54 -35
- data/lib/email_spec.rb +1 -1
- data/spec/email_spec_helpers_spec.rb +28 -0
- data/spec/rails_root/Rakefile +10 -0
- data/spec/rails_root/app/controllers/application.rb +15 -0
- data/spec/rails_root/app/controllers/welcome_controller.rb +9 -0
- data/spec/rails_root/app/helpers/application_helper.rb +3 -0
- data/spec/rails_root/app/helpers/welcome_helper.rb +2 -0
- data/spec/rails_root/app/models/user_mailer.rb +12 -0
- data/spec/rails_root/app/views/user_mailer/signup.erb +3 -0
- data/spec/rails_root/app/views/welcome/confirm.html.erb +1 -0
- data/spec/rails_root/app/views/welcome/index.html.erb +8 -0
- data/spec/rails_root/app/views/welcome/signup.html.erb +1 -0
- data/spec/rails_root/config/boot.rb +109 -0
- data/spec/rails_root/config/database.yml +22 -0
- data/spec/rails_root/config/environment.rb +22 -0
- data/spec/rails_root/config/environments/development.rb +17 -0
- data/spec/rails_root/config/environments/production.rb +24 -0
- data/spec/rails_root/config/environments/test.rb +29 -0
- data/spec/rails_root/config/initializers/inflections.rb +10 -0
- data/spec/rails_root/config/initializers/mime_types.rb +5 -0
- data/spec/rails_root/config/initializers/new_rails_defaults.rb +17 -0
- data/spec/rails_root/config/routes.rb +43 -0
- data/spec/rails_root/db/schema.rb +14 -0
- data/spec/rails_root/doc/README_FOR_APP +5 -0
- data/spec/rails_root/features/errors.feature +42 -0
- data/spec/rails_root/features/example.feature +34 -0
- data/spec/rails_root/features/step_definitions/email_steps.rb +68 -0
- data/spec/rails_root/features/step_definitions/webrat_steps.rb +100 -0
- data/spec/rails_root/features/support/env.rb +14 -0
- data/spec/rails_root/lib/tasks/cucumber.rake +7 -0
- data/spec/rails_root/lib/tasks/rspec.rake +153 -0
- data/spec/rails_root/public/404.html +30 -0
- data/spec/rails_root/public/422.html +30 -0
- data/spec/rails_root/public/500.html +33 -0
- data/spec/rails_root/public/dispatch.rb +10 -0
- data/spec/rails_root/public/favicon.ico +0 -0
- data/spec/rails_root/public/images/rails.png +0 -0
- data/spec/rails_root/public/javascripts/application.js +2 -0
- data/spec/rails_root/public/javascripts/controls.js +963 -0
- data/spec/rails_root/public/javascripts/dragdrop.js +973 -0
- data/spec/rails_root/public/javascripts/effects.js +1128 -0
- data/spec/rails_root/public/javascripts/prototype.js +4320 -0
- data/spec/rails_root/public/robots.txt +5 -0
- data/spec/rails_root/script/about +4 -0
- data/spec/rails_root/script/autospec +5 -0
- data/spec/rails_root/script/console +3 -0
- data/spec/rails_root/script/cucumber +7 -0
- data/spec/rails_root/script/dbconsole +3 -0
- data/spec/rails_root/script/destroy +3 -0
- data/spec/rails_root/script/generate +3 -0
- data/spec/rails_root/script/performance/benchmarker +3 -0
- data/spec/rails_root/script/performance/profiler +3 -0
- data/spec/rails_root/script/performance/request +3 -0
- data/spec/rails_root/script/plugin +3 -0
- data/spec/rails_root/script/process/inspector +3 -0
- data/spec/rails_root/script/process/reaper +3 -0
- data/spec/rails_root/script/process/spawner +3 -0
- data/spec/rails_root/script/runner +3 -0
- data/spec/rails_root/script/server +3 -0
- data/spec/rails_root/script/spec +5 -0
- data/spec/rails_root/script/spec_server +116 -0
- data/spec/rails_root/spec/rcov.opts +2 -0
- data/spec/rails_root/spec/spec.opts +4 -0
- data/spec/rails_root/spec/spec_helper.rb +47 -0
- data/spec/rails_root/vendor/plugins/email_spec/generators/email_spec/email_spec_generator.rb +16 -0
- data/spec/rails_root/vendor/plugins/email_spec/generators/email_spec/templates/email_steps.rb +68 -0
- metadata +108 -2
- data/lib/email_spec/email_spec_steps.rb +0 -46
@@ -0,0 +1,43 @@
|
|
1
|
+
ActionController::Routing::Routes.draw do |map|
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
3
|
+
|
4
|
+
# Sample of regular route:
|
5
|
+
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
|
6
|
+
# Keep in mind you can assign values other than :controller and :action
|
7
|
+
|
8
|
+
# Sample of named route:
|
9
|
+
# map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
|
10
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
11
|
+
|
12
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
13
|
+
# map.resources :products
|
14
|
+
|
15
|
+
# Sample resource route with options:
|
16
|
+
# map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
|
17
|
+
|
18
|
+
# Sample resource route with sub-resources:
|
19
|
+
# map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
|
20
|
+
|
21
|
+
# Sample resource route with more complex sub-resources
|
22
|
+
# map.resources :products do |products|
|
23
|
+
# products.resources :comments
|
24
|
+
# products.resources :sales, :collection => { :recent => :get }
|
25
|
+
# end
|
26
|
+
|
27
|
+
# Sample resource route within a namespace:
|
28
|
+
# map.namespace :admin do |admin|
|
29
|
+
# # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
|
30
|
+
# admin.resources :products
|
31
|
+
# end
|
32
|
+
|
33
|
+
# You can have the root of your site routed with map.root -- just remember to delete public/index.html.
|
34
|
+
map.root :controller => "welcome", :action => "index"
|
35
|
+
map.confirm_account "/confirm", :controller => "welcome", :action => "confirm"
|
36
|
+
# See how all your routes lay out with "rake routes"
|
37
|
+
|
38
|
+
# Install the default routes as the lowest priority.
|
39
|
+
# Note: These default routes make all actions in every controller accessible via GET requests. You should
|
40
|
+
# consider removing the them or commenting them out if you're using named routes and resources.
|
41
|
+
map.connect ':controller/:action/:id'
|
42
|
+
map.connect ':controller/:action/:id.:format'
|
43
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead of editing this file,
|
2
|
+
# please use the migrations feature of Active Record to incrementally modify your database, and
|
3
|
+
# then regenerate this schema definition.
|
4
|
+
#
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your database schema. If you need
|
6
|
+
# to create the application database on another system, you should be using db:schema:load, not running
|
7
|
+
# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
8
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
9
|
+
#
|
10
|
+
# It's strongly recommended to check this file into your version control system.
|
11
|
+
|
12
|
+
ActiveRecord::Schema.define(:version => 0) do
|
13
|
+
|
14
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Feature: Email-spec errors example
|
2
|
+
|
3
|
+
In order to help alleviate email testing in apps
|
4
|
+
As a email-spec contributor I a newcomer
|
5
|
+
Should be able to easily determine where I have gone wrong
|
6
|
+
These scenarios should fail with helpful messages
|
7
|
+
|
8
|
+
Scenario: I fail to receive an email
|
9
|
+
Given I am at "/"
|
10
|
+
And no emails have been sent
|
11
|
+
When I fill in "Email" with "quentin@example.com"
|
12
|
+
And I press "Sign up"
|
13
|
+
And I should receive an email
|
14
|
+
When "quentin@example.com" opens the email with subject "no email"
|
15
|
+
|
16
|
+
Scenario: I fail to receive an email with the expected link
|
17
|
+
Given I am at "/"
|
18
|
+
And no emails have been sent
|
19
|
+
When I fill in "Email" with "quentin@example.com"
|
20
|
+
And I press "Sign up"
|
21
|
+
And I should receive an email
|
22
|
+
When I open the email
|
23
|
+
When I follow "link that doesn't exist" in the email
|
24
|
+
|
25
|
+
Scenario: I attempt to operate on an email that is not opened
|
26
|
+
Given I am at "/"
|
27
|
+
And no emails have been sent
|
28
|
+
When I fill in "Email" with "quentin@example.com"
|
29
|
+
And I press "Sign up"
|
30
|
+
And I should receive an email
|
31
|
+
When I follow "confirm" in the email
|
32
|
+
|
33
|
+
Scenario: I attempt to check out an unopened email
|
34
|
+
Given I am at "/"
|
35
|
+
And no emails have been sent
|
36
|
+
When I fill in "Email" with "quentin@example.com"
|
37
|
+
And I press "Sign up"
|
38
|
+
Then I should see "confirm" in the email
|
39
|
+
And I should see "Account confirmation" in the subject
|
40
|
+
|
41
|
+
|
42
|
+
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Feature: Email-spec example
|
2
|
+
|
3
|
+
In order to help alleviate email testing in apps
|
4
|
+
As a email-spec contributor I a newcomer
|
5
|
+
Should be able to easily adopt email-spec in their app by following this example
|
6
|
+
|
7
|
+
Scenario: A new person signs up declaratively
|
8
|
+
Given I am at "/"
|
9
|
+
And no emails have been sent
|
10
|
+
When I fill in "Email" with "quentin@example.com"
|
11
|
+
And I press "Sign up"
|
12
|
+
Then "quentin@example.com" should receive 1 email
|
13
|
+
And "quentin@example.com" should have 1 email
|
14
|
+
And "foo@bar.com" should not receive an email
|
15
|
+
When "quentin@example.com" opens the email with subject "Account confirmation"
|
16
|
+
Then I should see "confirm" in the email
|
17
|
+
And I should see "Account confirmation" in the subject
|
18
|
+
When I follow "confirm" in the email
|
19
|
+
Then I should see "Confirm your new account"
|
20
|
+
|
21
|
+
|
22
|
+
Scenario: I sign up imperatively
|
23
|
+
Given I am at "/"
|
24
|
+
And no emails have been sent
|
25
|
+
When I fill in "Email" with "quentin@example.com"
|
26
|
+
And I press "Sign up"
|
27
|
+
And I should receive an email
|
28
|
+
When I open the email
|
29
|
+
Then I should see "confirm" in the email
|
30
|
+
When I follow "confirm" in the email
|
31
|
+
Then I should see "Confirm your new account"
|
32
|
+
|
33
|
+
|
34
|
+
|
@@ -0,0 +1,68 @@
|
|
1
|
+
#Commonly used email steps
|
2
|
+
#
|
3
|
+
# To add your own steps make a custom_email_steps.rb
|
4
|
+
# The provided methods are:
|
5
|
+
#
|
6
|
+
# reset_mailer
|
7
|
+
# open_last_email
|
8
|
+
# visit_in_email
|
9
|
+
# unread_emails_for
|
10
|
+
# mailbox_for
|
11
|
+
# current_email
|
12
|
+
# open_email
|
13
|
+
# read_emails_for
|
14
|
+
# find_email
|
15
|
+
|
16
|
+
|
17
|
+
def current_email_address
|
18
|
+
"quentin@example.com" # Replace with your a way to find your current_email. e.g current_user.email
|
19
|
+
end
|
20
|
+
# Use this step to reset the e-mail queue within a scenario.
|
21
|
+
# This is done automatically before each scenario.
|
22
|
+
Given /^no emails have been sent$/ do
|
23
|
+
reset_mailer
|
24
|
+
end
|
25
|
+
|
26
|
+
# Use this step to open the most recently sent e-mail.
|
27
|
+
When /^I open the email$/ do
|
28
|
+
open_email(current_email_address)
|
29
|
+
end
|
30
|
+
|
31
|
+
When /^I follow "(.*)" in the email$/ do |link|
|
32
|
+
visit_in_email(link)
|
33
|
+
end
|
34
|
+
|
35
|
+
Then /^I should receive (.*) emails?$/ do |amount|
|
36
|
+
amount = 1 if amount == "an"
|
37
|
+
unread_emails_for(current_email_address).size.should == amount
|
38
|
+
end
|
39
|
+
|
40
|
+
Then /^"([^']*?)" should receive (\d+) emails?$/ do |address, n|
|
41
|
+
unread_emails_for(address).size.should == n.to_i
|
42
|
+
end
|
43
|
+
|
44
|
+
Then /^"([^']*?)" should have (\d+) emails?$/ do |address, n|
|
45
|
+
mailbox_for(address).size.should == n.to_i
|
46
|
+
end
|
47
|
+
|
48
|
+
Then /^"([^']*?)" should not receive an email$/ do |address|
|
49
|
+
find_email(address).should be_nil
|
50
|
+
end
|
51
|
+
|
52
|
+
Then /^I should see "(.*)" in the subject$/ do |text|
|
53
|
+
current_email.subject.should =~ Regexp.new(text)
|
54
|
+
end
|
55
|
+
|
56
|
+
Then /^I should see "(.*)" in the email$/ do |text|
|
57
|
+
current_email.body.should =~ Regexp.new(text)
|
58
|
+
end
|
59
|
+
|
60
|
+
When %r{^"([^']*?)" opens? the email with subject "([^']*?)"$} do |address, subject|
|
61
|
+
open_email(address, :with_subject => subject)
|
62
|
+
end
|
63
|
+
|
64
|
+
When %r{^"([^']*?)" opens? the email with text "([^']*?)"$} do |address, text|
|
65
|
+
open_email(address, :with_text => text)
|
66
|
+
end
|
67
|
+
|
68
|
+
|
@@ -0,0 +1,100 @@
|
|
1
|
+
# Commonly used webrat steps
|
2
|
+
# http://github.com/brynary/webrat
|
3
|
+
|
4
|
+
Given /^I am at "(.+)"$/ do |path|
|
5
|
+
visit path
|
6
|
+
end
|
7
|
+
|
8
|
+
|
9
|
+
When /^I press "(.*)"$/ do |button|
|
10
|
+
click_button(button)
|
11
|
+
end
|
12
|
+
|
13
|
+
When /^I follow "(.*)"$/ do |link|
|
14
|
+
click_link(link)
|
15
|
+
end
|
16
|
+
|
17
|
+
When /^I fill in "(.*)" with "(.*)"$/ do |field, value|
|
18
|
+
fill_in(field, :with => value)
|
19
|
+
end
|
20
|
+
|
21
|
+
When /^I select "(.*)" from "(.*)"$/ do |value, field|
|
22
|
+
select(value, :from => field)
|
23
|
+
end
|
24
|
+
|
25
|
+
# Use this step in conjunction with Rail's datetime_select helper. For example:
|
26
|
+
# When I select "December 25, 2008 10:00" as the date and time
|
27
|
+
When /^I select "(.*)" as the date and time$/ do |time|
|
28
|
+
select_datetime(time)
|
29
|
+
end
|
30
|
+
|
31
|
+
# Use this step when using multiple datetime_select helpers on a page or
|
32
|
+
# you want to specify which datetime to select. Given the following view:
|
33
|
+
# <%= f.label :preferred %><br />
|
34
|
+
# <%= f.datetime_select :preferred %>
|
35
|
+
# <%= f.label :alternative %><br />
|
36
|
+
# <%= f.datetime_select :alternative %>
|
37
|
+
# The following steps would fill out the form:
|
38
|
+
# When I select "November 23, 2004 11:20" as the "Preferred" data and time
|
39
|
+
# And I select "November 25, 2004 10:30" as the "Alternative" data and time
|
40
|
+
When /^I select "(.*)" as the "(.*)" date and time$/ do |datetime, datetime_label|
|
41
|
+
select_datetime(datetime, :from => datetime_label)
|
42
|
+
end
|
43
|
+
|
44
|
+
# Use this step in conjuction with Rail's time_select helper. For example:
|
45
|
+
# When I select "2:20PM" as the time
|
46
|
+
# Note: Rail's default time helper provides 24-hour time-- not 12 hour time. Webrat
|
47
|
+
# will convert the 2:20PM to 14:20 and then select it.
|
48
|
+
When /^I select "(.*)" as the time$/ do |time|
|
49
|
+
select_time(time)
|
50
|
+
end
|
51
|
+
|
52
|
+
# Use this step when using multiple time_select helpers on a page or you want to
|
53
|
+
# specify the name of the time on the form. For example:
|
54
|
+
# When I select "7:30AM" as the "Gym" time
|
55
|
+
When /^I select "(.*)" as the "(.*)" time$/ do |time, time_label|
|
56
|
+
select_time(time, :from => time_label)
|
57
|
+
end
|
58
|
+
|
59
|
+
# Use this step in conjuction with Rail's date_select helper. For example:
|
60
|
+
# When I select "February 20, 1981" as the date
|
61
|
+
When /^I select "(.*)" as the date$/ do |date|
|
62
|
+
select_date(date)
|
63
|
+
end
|
64
|
+
|
65
|
+
# Use this step when using multiple date_select helpers on one page or
|
66
|
+
# you want to specify the name of the date on the form. For example:
|
67
|
+
# When I select "April 26, 1982" as the "Date of Birth" date
|
68
|
+
When /^I select "(.*)" as the "(.*)" date$/ do |date, date_label|
|
69
|
+
select_date(date, :from => date_label)
|
70
|
+
end
|
71
|
+
|
72
|
+
When /^I check "(.*)"$/ do |field|
|
73
|
+
check(field)
|
74
|
+
end
|
75
|
+
|
76
|
+
When /^I uncheck "(.*)"$/ do |field|
|
77
|
+
uncheck(field)
|
78
|
+
end
|
79
|
+
|
80
|
+
When /^I choose "(.*)"$/ do |field|
|
81
|
+
choose(field)
|
82
|
+
end
|
83
|
+
|
84
|
+
When /^I attach the file at "(.*)" to "(.*)" $/ do |path, field|
|
85
|
+
attach_file(field, path)
|
86
|
+
end
|
87
|
+
|
88
|
+
Then /^I should see "(.*)"$/ do |text|
|
89
|
+
response.body.should =~ /#{text}/m
|
90
|
+
end
|
91
|
+
|
92
|
+
Then /^I should not see "(.*)"$/ do |text|
|
93
|
+
response.body.should_not =~ /#{text}/m
|
94
|
+
end
|
95
|
+
|
96
|
+
Then /^the "(.*)" checkbox should be checked$/ do |label|
|
97
|
+
field_labeled(label).should be_checked
|
98
|
+
end
|
99
|
+
|
100
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Sets up the Rails environment for Cucumber
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
|
4
|
+
require 'cucumber/rails/world'
|
5
|
+
Cucumber::Rails.use_transactional_fixtures
|
6
|
+
|
7
|
+
require 'webrat/rails'
|
8
|
+
require 'cucumber/rails/rspec'
|
9
|
+
require 'webrat/rspec-rails'
|
10
|
+
|
11
|
+
require File.expand_path(File.dirname(__FILE__) + '../../../../../lib/email_spec/cucumber.rb')
|
12
|
+
|
13
|
+
|
14
|
+
|
@@ -0,0 +1,153 @@
|
|
1
|
+
raise "To avoid rake task loading problems: run 'rake clobber' in vendor/plugins/rspec" if File.directory?(File.join(File.dirname(__FILE__), *%w[.. .. vendor plugins rspec pkg]))
|
2
|
+
raise "To avoid rake task loading problems: run 'rake clobber' in vendor/plugins/rspec-rails" if File.directory?(File.join(File.dirname(__FILE__), *%w[.. .. vendor plugins rspec-rails pkg]))
|
3
|
+
|
4
|
+
# In rails 1.2, plugins aren't available in the path until they're loaded.
|
5
|
+
# Check to see if the rspec plugin is installed first and require
|
6
|
+
# it if it is. If not, use the gem version.
|
7
|
+
rspec_base = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec/lib')
|
8
|
+
$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base)
|
9
|
+
|
10
|
+
begin
|
11
|
+
require 'spec/rake/spectask'
|
12
|
+
Rake.application.instance_variable_get('@tasks').delete('default')
|
13
|
+
|
14
|
+
spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
|
15
|
+
task :noop do
|
16
|
+
end
|
17
|
+
|
18
|
+
task :default => :spec
|
19
|
+
task :stats => "spec:statsetup"
|
20
|
+
|
21
|
+
desc "Run all specs in spec directory (excluding plugin specs)"
|
22
|
+
Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
|
23
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
24
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
25
|
+
end
|
26
|
+
|
27
|
+
namespace :spec do
|
28
|
+
desc "Run all specs in spec directory with RCov (excluding plugin specs)"
|
29
|
+
Spec::Rake::SpecTask.new(:rcov) do |t|
|
30
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
31
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
32
|
+
t.rcov = true
|
33
|
+
t.rcov_opts = lambda do
|
34
|
+
IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
desc "Print Specdoc for all specs (excluding plugin specs)"
|
39
|
+
Spec::Rake::SpecTask.new(:doc) do |t|
|
40
|
+
t.spec_opts = ["--format", "specdoc", "--dry-run"]
|
41
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
42
|
+
end
|
43
|
+
|
44
|
+
desc "Print Specdoc for all plugin examples"
|
45
|
+
Spec::Rake::SpecTask.new(:plugin_doc) do |t|
|
46
|
+
t.spec_opts = ["--format", "specdoc", "--dry-run"]
|
47
|
+
t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*')
|
48
|
+
end
|
49
|
+
|
50
|
+
[:models, :controllers, :views, :helpers, :lib].each do |sub|
|
51
|
+
desc "Run the code examples in spec/#{sub}"
|
52
|
+
Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
|
53
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
54
|
+
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
desc "Run the code examples in vendor/plugins (except RSpec's own)"
|
59
|
+
Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
|
60
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
61
|
+
t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
|
62
|
+
end
|
63
|
+
|
64
|
+
namespace :plugins do
|
65
|
+
desc "Runs the examples for rspec_on_rails"
|
66
|
+
Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
|
67
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
68
|
+
t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*/*_spec.rb']
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# Setup specs for stats
|
73
|
+
task :statsetup do
|
74
|
+
require 'code_statistics'
|
75
|
+
::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
|
76
|
+
::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
|
77
|
+
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
|
78
|
+
::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
|
79
|
+
::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
|
80
|
+
::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
|
81
|
+
::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
|
82
|
+
::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
|
83
|
+
::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
|
84
|
+
::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
|
85
|
+
::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/}
|
86
|
+
end
|
87
|
+
|
88
|
+
namespace :db do
|
89
|
+
namespace :fixtures do
|
90
|
+
desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y"
|
91
|
+
task :load => :environment do
|
92
|
+
require 'active_record/fixtures'
|
93
|
+
ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
|
94
|
+
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(RAILS_ROOT, 'spec', 'fixtures', '*.{yml,csv}'))).each do |fixture_file|
|
95
|
+
Fixtures.create_fixtures('spec/fixtures', File.basename(fixture_file, '.*'))
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
namespace :server do
|
102
|
+
daemonized_server_pid = File.expand_path("spec_server.pid", RAILS_ROOT + "/tmp")
|
103
|
+
|
104
|
+
desc "start spec_server."
|
105
|
+
task :start do
|
106
|
+
if File.exist?(daemonized_server_pid)
|
107
|
+
$stderr.puts "spec_server is already running."
|
108
|
+
else
|
109
|
+
$stderr.puts "Starting up spec server."
|
110
|
+
system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
desc "stop spec_server."
|
115
|
+
task :stop do
|
116
|
+
unless File.exist?(daemonized_server_pid)
|
117
|
+
$stderr.puts "No server running."
|
118
|
+
else
|
119
|
+
$stderr.puts "Shutting down spec_server."
|
120
|
+
system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
|
121
|
+
File.delete(daemonized_server_pid)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
desc "reload spec_server."
|
126
|
+
task :restart do
|
127
|
+
unless File.exist?(daemonized_server_pid)
|
128
|
+
$stderr.puts "No server running."
|
129
|
+
else
|
130
|
+
$stderr.puts "Reloading down spec_server."
|
131
|
+
system("kill", "-s", "USR2", File.read(daemonized_server_pid).strip)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
136
|
+
rescue MissingSourceFile
|
137
|
+
# if rspec-rails is a configured gem, this will output helpful material and exit ...
|
138
|
+
require File.expand_path(File.dirname(__FILE__) + "/../../config/environment")
|
139
|
+
|
140
|
+
# ... otherwise, do this:
|
141
|
+
raise <<-MSG
|
142
|
+
|
143
|
+
You have rspec-rails rake tasks installed in
|
144
|
+
#{__FILE__},
|
145
|
+
but rspec-rails is not configured as a gem in
|
146
|
+
config/environment.rb
|
147
|
+
|
148
|
+
Either remove #{__FILE__}
|
149
|
+
or configure the rspec-rails gem in config/environment.rb.
|
150
|
+
|
151
|
+
MSG
|
152
|
+
end
|
153
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/404.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
27
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The change you wanted was rejected (422)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/422.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The change you wanted was rejected.</h1>
|
27
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>We're sorry, but something went wrong (500)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/500.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>We're sorry, but something went wrong.</h1>
|
27
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
28
|
+
<p><small>(If you're the administrator of this website, then please read
|
29
|
+
the log file "<%=h RAILS_ENV %>.log"
|
30
|
+
to find out what went wrong.)</small></p>
|
31
|
+
</div>
|
32
|
+
</body>
|
33
|
+
</html>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
|
4
|
+
|
5
|
+
# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:
|
6
|
+
# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired
|
7
|
+
require "dispatcher"
|
8
|
+
|
9
|
+
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun)
|
10
|
+
Dispatcher.dispatch
|
File without changes
|
Binary file
|