bmabey-email_spec 0.0.5

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.
Files changed (77) hide show
  1. data/History.txt +4 -0
  2. data/MIT-LICENSE.txt +19 -0
  3. data/README.rdoc +66 -0
  4. data/Rakefile +57 -0
  5. data/generators/email_spec/email_spec_generator.rb +16 -0
  6. data/generators/email_spec/templates/email_steps.rb +71 -0
  7. data/install.rb +0 -0
  8. data/lib/email_spec/cucumber.rb +19 -0
  9. data/lib/email_spec/email_spec_helpers.rb +96 -0
  10. data/lib/email_spec/email_spec_matchers.rb +34 -0
  11. data/lib/email_spec.rb +3 -0
  12. data/spec/email_spec_helpers_spec.rb +28 -0
  13. data/spec/rails_root/Rakefile +10 -0
  14. data/spec/rails_root/app/controllers/application.rb +15 -0
  15. data/spec/rails_root/app/controllers/welcome_controller.rb +9 -0
  16. data/spec/rails_root/app/helpers/application_helper.rb +3 -0
  17. data/spec/rails_root/app/helpers/welcome_helper.rb +2 -0
  18. data/spec/rails_root/app/models/user_mailer.rb +12 -0
  19. data/spec/rails_root/app/views/user_mailer/signup.erb +3 -0
  20. data/spec/rails_root/app/views/welcome/confirm.html.erb +1 -0
  21. data/spec/rails_root/app/views/welcome/index.html.erb +8 -0
  22. data/spec/rails_root/app/views/welcome/signup.html.erb +1 -0
  23. data/spec/rails_root/config/boot.rb +109 -0
  24. data/spec/rails_root/config/database.yml +22 -0
  25. data/spec/rails_root/config/environment.rb +22 -0
  26. data/spec/rails_root/config/environments/development.rb +17 -0
  27. data/spec/rails_root/config/environments/production.rb +24 -0
  28. data/spec/rails_root/config/environments/test.rb +29 -0
  29. data/spec/rails_root/config/initializers/inflections.rb +10 -0
  30. data/spec/rails_root/config/initializers/mime_types.rb +5 -0
  31. data/spec/rails_root/config/initializers/new_rails_defaults.rb +17 -0
  32. data/spec/rails_root/config/routes.rb +43 -0
  33. data/spec/rails_root/db/schema.rb +14 -0
  34. data/spec/rails_root/doc/README_FOR_APP +5 -0
  35. data/spec/rails_root/features/errors.feature +42 -0
  36. data/spec/rails_root/features/example.feature +34 -0
  37. data/spec/rails_root/features/step_definitions/email_steps.rb +71 -0
  38. data/spec/rails_root/features/step_definitions/webrat_steps.rb +100 -0
  39. data/spec/rails_root/features/support/env.rb +14 -0
  40. data/spec/rails_root/lib/tasks/cucumber.rake +7 -0
  41. data/spec/rails_root/lib/tasks/rspec.rake +153 -0
  42. data/spec/rails_root/public/404.html +30 -0
  43. data/spec/rails_root/public/422.html +30 -0
  44. data/spec/rails_root/public/500.html +33 -0
  45. data/spec/rails_root/public/dispatch.rb +10 -0
  46. data/spec/rails_root/public/favicon.ico +0 -0
  47. data/spec/rails_root/public/images/rails.png +0 -0
  48. data/spec/rails_root/public/javascripts/application.js +2 -0
  49. data/spec/rails_root/public/javascripts/controls.js +963 -0
  50. data/spec/rails_root/public/javascripts/dragdrop.js +973 -0
  51. data/spec/rails_root/public/javascripts/effects.js +1128 -0
  52. data/spec/rails_root/public/javascripts/prototype.js +4320 -0
  53. data/spec/rails_root/public/robots.txt +5 -0
  54. data/spec/rails_root/script/about +4 -0
  55. data/spec/rails_root/script/autospec +5 -0
  56. data/spec/rails_root/script/console +3 -0
  57. data/spec/rails_root/script/cucumber +7 -0
  58. data/spec/rails_root/script/dbconsole +3 -0
  59. data/spec/rails_root/script/destroy +3 -0
  60. data/spec/rails_root/script/generate +3 -0
  61. data/spec/rails_root/script/performance/benchmarker +3 -0
  62. data/spec/rails_root/script/performance/profiler +3 -0
  63. data/spec/rails_root/script/performance/request +3 -0
  64. data/spec/rails_root/script/plugin +3 -0
  65. data/spec/rails_root/script/process/inspector +3 -0
  66. data/spec/rails_root/script/process/reaper +3 -0
  67. data/spec/rails_root/script/process/spawner +3 -0
  68. data/spec/rails_root/script/runner +3 -0
  69. data/spec/rails_root/script/server +3 -0
  70. data/spec/rails_root/script/spec +5 -0
  71. data/spec/rails_root/script/spec_server +116 -0
  72. data/spec/rails_root/spec/rcov.opts +2 -0
  73. data/spec/rails_root/spec/spec.opts +4 -0
  74. data/spec/rails_root/spec/spec_helper.rb +47 -0
  75. data/spec/rails_root/vendor/plugins/email_spec/generators/email_spec/email_spec_generator.rb +16 -0
  76. data/spec/rails_root/vendor/plugins/email_spec/generators/email_spec/templates/email_steps.rb +71 -0
  77. metadata +170 -0
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info"
4
+ require 'commands/about'
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['RSPEC'] = 'true' # allows autotest to discover rspec
3
+ ENV['AUTOTEST'] = 'true' # allows autotest to run w/ color on linux
4
+ system((RUBY_PLATFORM =~ /mswin|mingw/ ? 'autotest.bat' : 'autotest'), *ARGV) ||
5
+ $stderr.puts("Unable to find autotest. Please install ZenTest or fix your PATH")
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/cucumber/bin/cucumber")
4
+ rescue LoadError
5
+ require "rubygems"
6
+ load File.join(Gem.bindir, "cucumber")
7
+ end
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/dbconsole'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/request'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/inspector'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib"))
3
+ require 'rubygems'
4
+ require 'spec'
5
+ exit ::Spec::Runner::CommandLine.run(::Spec::Runner::OptionParser.parse(ARGV, STDERR, STDOUT))
@@ -0,0 +1,116 @@
1
+ #!/usr/bin/env ruby
2
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../vendor/plugins/rspec/lib' # For rspec installed as plugin
3
+ require 'rubygems'
4
+ require 'drb/drb'
5
+ require 'rbconfig'
6
+ require 'spec'
7
+ require 'optparse'
8
+
9
+ # This is based on Florian Weber's TDDMate
10
+ module Spec
11
+ module Runner
12
+ class RailsSpecServer
13
+ def run(argv, stderr, stdout)
14
+ $stdout = stdout
15
+ $stderr = stderr
16
+
17
+ base = ActiveRecord::Base
18
+ def base.clear_reloadable_connections!
19
+ active_connections.each do |name, conn|
20
+ if conn.requires_reloading?
21
+ conn.disconnect!
22
+ active_connections.delete(name)
23
+ end
24
+ end
25
+ end
26
+
27
+ if ActionController.const_defined?(:Dispatcher)
28
+ dispatcher = ::ActionController::Dispatcher.new($stdout)
29
+ dispatcher.cleanup_application
30
+ elsif ::Dispatcher.respond_to?(:reset_application!)
31
+ ::Dispatcher.reset_application!
32
+ else
33
+ raise "Application reloading failed"
34
+ end
35
+ if Object.const_defined?(:Fixtures) && Fixtures.respond_to?(:reset_cache)
36
+ Fixtures.reset_cache
37
+ end
38
+
39
+ ::Dependencies.mechanism = :load
40
+ require_dependency('application.rb') unless Object.const_defined?(:ApplicationController)
41
+ load File.dirname(__FILE__) + '/../spec/spec_helper.rb'
42
+
43
+ if in_memory_database?
44
+ load "#{RAILS_ROOT}/db/schema.rb" # use db agnostic schema by default
45
+ ActiveRecord::Migrator.up('db/migrate') # use migrations
46
+ end
47
+
48
+ ::Spec::Runner::CommandLine.run(
49
+ ::Spec::Runner::OptionParser.parse(
50
+ argv,
51
+ $stderr,
52
+ $stdout
53
+ )
54
+ )
55
+ end
56
+
57
+ def in_memory_database?
58
+ ENV["RAILS_ENV"] == "test" and
59
+ ::ActiveRecord::Base.connection.class.to_s == "ActiveRecord::ConnectionAdapters::SQLite3Adapter" and
60
+ ::Rails::Configuration.new.database_configuration['test']['database'] == ':memory:'
61
+ end
62
+ end
63
+ end
64
+ end
65
+ puts "Loading Rails environment"
66
+
67
+ ENV["RAILS_ENV"] = "test"
68
+ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
69
+ require 'dispatcher'
70
+
71
+ def restart_test_server
72
+ puts "restarting"
73
+ config = ::Config::CONFIG
74
+ ruby = File::join(config['bindir'], config['ruby_install_name']) + config['EXEEXT']
75
+ command_line = [ruby, $0, ARGV].flatten.join(' ')
76
+ exec(command_line)
77
+ end
78
+
79
+ def daemonize(pid_file = nil)
80
+ return yield if $DEBUG
81
+ pid = Process.fork{
82
+ Process.setsid
83
+ Dir.chdir(RAILS_ROOT)
84
+ trap("SIGINT"){ exit! 0 }
85
+ trap("SIGTERM"){ exit! 0 }
86
+ trap("SIGHUP"){ restart_test_server }
87
+ File.open("/dev/null"){|f|
88
+ STDERR.reopen f
89
+ STDIN.reopen f
90
+ STDOUT.reopen f
91
+ }
92
+ yield
93
+ }
94
+ puts "spec_server launched. (PID: %d)" % pid
95
+ File.open(pid_file,"w"){|f| f.puts pid } if pid_file
96
+ exit! 0
97
+ end
98
+
99
+ options = Hash.new
100
+ opts = OptionParser.new
101
+ opts.on("-d", "--daemon"){|v| options[:daemon] = true }
102
+ opts.on("-p", "--pid PIDFILE"){|v| options[:pid] = v }
103
+ opts.parse!(ARGV)
104
+
105
+ puts "Ready"
106
+ exec_server = lambda {
107
+ trap("USR2") { restart_test_server } if Signal.list.has_key?("USR2")
108
+ DRb.start_service("druby://127.0.0.1:8989", Spec::Runner::RailsSpecServer.new)
109
+ DRb.thread.join
110
+ }
111
+
112
+ if options[:daemon]
113
+ daemonize(options[:pid], &exec_server)
114
+ else
115
+ exec_server.call
116
+ end
@@ -0,0 +1,2 @@
1
+ --exclude "spec/*,gems/*"
2
+ --rails
@@ -0,0 +1,4 @@
1
+ --colour
2
+ --format progress
3
+ --loadby mtime
4
+ --reverse
@@ -0,0 +1,47 @@
1
+ # This file is copied to ~/spec when you run 'ruby script/generate rspec'
2
+ # from the project root directory.
3
+ ENV["RAILS_ENV"] = "test"
4
+ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
5
+ require 'spec'
6
+ require 'spec/rails'
7
+
8
+ Spec::Runner.configure do |config|
9
+ # If you're not using ActiveRecord you should remove these
10
+ # lines, delete config/database.yml and disable :active_record
11
+ # in your config/boot.rb
12
+ config.use_transactional_fixtures = true
13
+ config.use_instantiated_fixtures = false
14
+ config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
15
+
16
+ # == Fixtures
17
+ #
18
+ # You can declare fixtures for each example_group like this:
19
+ # describe "...." do
20
+ # fixtures :table_a, :table_b
21
+ #
22
+ # Alternatively, if you prefer to declare them only once, you can
23
+ # do so right here. Just uncomment the next line and replace the fixture
24
+ # names with your fixtures.
25
+ #
26
+ # config.global_fixtures = :table_a, :table_b
27
+ #
28
+ # If you declare global fixtures, be aware that they will be declared
29
+ # for all of your examples, even those that don't use them.
30
+ #
31
+ # You can also declare which fixtures to use (for example fixtures for test/fixtures):
32
+ #
33
+ # config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
34
+ #
35
+ # == Mock Framework
36
+ #
37
+ # RSpec uses it's own mocking framework by default. If you prefer to
38
+ # use mocha, flexmock or RR, uncomment the appropriate line:
39
+ #
40
+ # config.mock_with :mocha
41
+ # config.mock_with :flexmock
42
+ # config.mock_with :rr
43
+ #
44
+ # == Notes
45
+ #
46
+ # For more information take a look at Spec::Example::Configuration and Spec::Runner
47
+ end
@@ -0,0 +1,16 @@
1
+ # This generator adds email steps to the step definitions directory
2
+ class EmailSpecGenerator < Rails::Generator::Base
3
+ def manifest
4
+ record do |m|
5
+ m.directory 'features/step_definitions'
6
+ m.file 'email_steps.rb', 'features/step_definitions/email_steps.rb'
7
+ end
8
+ end
9
+
10
+ protected
11
+
12
+ def banner
13
+ "Usage: #{$0} email_spec"
14
+ end
15
+
16
+ end
@@ -0,0 +1,71 @@
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
+ module EmailHelpers
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
+ end
21
+ World {|world| world.extend EmailHelpers }
22
+
23
+ # Use this step to reset the e-mail queue within a scenario.
24
+ # This is done automatically before each scenario.
25
+ Given /^(?:a clear email queue|no emails have been sent)$/ do
26
+ reset_mailer
27
+ end
28
+
29
+ # Use this step to open the most recently sent e-mail.
30
+ When /^I open the email$/ do
31
+ open_email(current_email_address)
32
+ end
33
+
34
+ When /^I follow "(.*)" in the email$/ do |link|
35
+ visit_in_email(link)
36
+ end
37
+
38
+ Then /^I should receive (.*) emails?$/ do |amount|
39
+ amount = 1 if amount == "an"
40
+ unread_emails_for(current_email_address).size.should == amount
41
+ end
42
+
43
+ Then /^"([^']*?)" should receive (\d+) emails?$/ do |address, n|
44
+ unread_emails_for(address).size.should == n.to_i
45
+ end
46
+
47
+ Then /^"([^']*?)" should have (\d+) emails?$/ do |address, n|
48
+ mailbox_for(address).size.should == n.to_i
49
+ end
50
+
51
+ Then /^"([^']*?)" should not receive an email$/ do |address|
52
+ find_email(address).should be_nil
53
+ end
54
+
55
+ Then /^I should see "(.*)" in the subject$/ do |text|
56
+ current_email.subject.should =~ Regexp.new(text)
57
+ end
58
+
59
+ Then /^I should see "(.*)" in the email$/ do |text|
60
+ current_email.body.should =~ Regexp.new(text)
61
+ end
62
+
63
+ When %r{^"([^']*?)" opens? the email with subject "([^']*?)"$} do |address, subject|
64
+ open_email(address, :with_subject => subject)
65
+ end
66
+
67
+ When %r{^"([^']*?)" opens? the email with text "([^']*?)"$} do |address, text|
68
+ open_email(address, :with_text => text)
69
+ end
70
+
71
+
metadata ADDED
@@ -0,0 +1,170 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bmabey-email_spec
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Ben Mabrey
8
+ - Aaron Gibralter
9
+ - Mischa Fierer
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2008-12-18 00:00:00 -08:00
15
+ default_executable:
16
+ dependencies: []
17
+
18
+ description: Easily test email in rspec and cucumber
19
+ email: f.mischa@gmail.com
20
+ executables: []
21
+
22
+ extensions: []
23
+
24
+ extra_rdoc_files:
25
+ - README.rdoc
26
+ - MIT-LICENSE.txt
27
+ files:
28
+ - History.txt
29
+ - install.rb
30
+ - MIT-LICENSE.txt
31
+ - README.rdoc
32
+ - Rakefile
33
+ - lib/email_spec
34
+ - lib/email_spec/cucumber.rb
35
+ - lib/email_spec/email_spec_helpers.rb
36
+ - lib/email_spec/email_spec_matchers.rb
37
+ - lib/email_spec.rb
38
+ - generators/email_spec
39
+ - generators/email_spec/email_spec_generator.rb
40
+ - generators/email_spec/templates
41
+ - generators/email_spec/templates/email_steps.rb
42
+ - spec/email_spec_helpers_spec.rb
43
+ - spec/rails_root
44
+ - spec/rails_root/app
45
+ - spec/rails_root/app/controllers
46
+ - spec/rails_root/app/controllers/application.rb
47
+ - spec/rails_root/app/controllers/welcome_controller.rb
48
+ - spec/rails_root/app/helpers
49
+ - spec/rails_root/app/helpers/application_helper.rb
50
+ - spec/rails_root/app/helpers/welcome_helper.rb
51
+ - spec/rails_root/app/models
52
+ - spec/rails_root/app/models/user_mailer.rb
53
+ - spec/rails_root/app/views
54
+ - spec/rails_root/app/views/user_mailer
55
+ - spec/rails_root/app/views/user_mailer/signup.erb
56
+ - spec/rails_root/app/views/welcome
57
+ - spec/rails_root/app/views/welcome/confirm.html.erb
58
+ - spec/rails_root/app/views/welcome/index.html.erb
59
+ - spec/rails_root/app/views/welcome/signup.html.erb
60
+ - spec/rails_root/config
61
+ - spec/rails_root/config/boot.rb
62
+ - spec/rails_root/config/database.yml
63
+ - spec/rails_root/config/environment.rb
64
+ - spec/rails_root/config/environments
65
+ - spec/rails_root/config/environments/development.rb
66
+ - spec/rails_root/config/environments/production.rb
67
+ - spec/rails_root/config/environments/test.rb
68
+ - spec/rails_root/config/initializers
69
+ - spec/rails_root/config/initializers/inflections.rb
70
+ - spec/rails_root/config/initializers/mime_types.rb
71
+ - spec/rails_root/config/initializers/new_rails_defaults.rb
72
+ - spec/rails_root/config/routes.rb
73
+ - spec/rails_root/db
74
+ - spec/rails_root/db/development.sqlite3
75
+ - spec/rails_root/db/schema.rb
76
+ - spec/rails_root/db/test.sqlite3
77
+ - spec/rails_root/doc
78
+ - spec/rails_root/doc/README_FOR_APP
79
+ - spec/rails_root/features
80
+ - spec/rails_root/features/errors.feature
81
+ - spec/rails_root/features/example.feature
82
+ - spec/rails_root/features/step_definitions
83
+ - spec/rails_root/features/step_definitions/email_steps.rb
84
+ - spec/rails_root/features/step_definitions/webrat_steps.rb
85
+ - spec/rails_root/features/support
86
+ - spec/rails_root/features/support/env.rb
87
+ - spec/rails_root/lib
88
+ - spec/rails_root/lib/tasks
89
+ - spec/rails_root/lib/tasks/cucumber.rake
90
+ - spec/rails_root/lib/tasks/rspec.rake
91
+ - spec/rails_root/log
92
+ - spec/rails_root/log/development.log
93
+ - spec/rails_root/log/test.log
94
+ - spec/rails_root/public
95
+ - spec/rails_root/public/404.html
96
+ - spec/rails_root/public/422.html
97
+ - spec/rails_root/public/500.html
98
+ - spec/rails_root/public/dispatch.rb
99
+ - spec/rails_root/public/favicon.ico
100
+ - spec/rails_root/public/images
101
+ - spec/rails_root/public/images/rails.png
102
+ - spec/rails_root/public/javascripts
103
+ - spec/rails_root/public/javascripts/application.js
104
+ - spec/rails_root/public/javascripts/controls.js
105
+ - spec/rails_root/public/javascripts/dragdrop.js
106
+ - spec/rails_root/public/javascripts/effects.js
107
+ - spec/rails_root/public/javascripts/prototype.js
108
+ - spec/rails_root/public/robots.txt
109
+ - spec/rails_root/Rakefile
110
+ - spec/rails_root/script
111
+ - spec/rails_root/script/about
112
+ - spec/rails_root/script/autospec
113
+ - spec/rails_root/script/console
114
+ - spec/rails_root/script/cucumber
115
+ - spec/rails_root/script/dbconsole
116
+ - spec/rails_root/script/destroy
117
+ - spec/rails_root/script/generate
118
+ - spec/rails_root/script/performance
119
+ - spec/rails_root/script/performance/benchmarker
120
+ - spec/rails_root/script/performance/profiler
121
+ - spec/rails_root/script/performance/request
122
+ - spec/rails_root/script/plugin
123
+ - spec/rails_root/script/process
124
+ - spec/rails_root/script/process/inspector
125
+ - spec/rails_root/script/process/reaper
126
+ - spec/rails_root/script/process/spawner
127
+ - spec/rails_root/script/runner
128
+ - spec/rails_root/script/server
129
+ - spec/rails_root/script/spec
130
+ - spec/rails_root/script/spec_server
131
+ - spec/rails_root/spec
132
+ - spec/rails_root/spec/rcov.opts
133
+ - spec/rails_root/spec/spec.opts
134
+ - spec/rails_root/spec/spec_helper.rb
135
+ - spec/rails_root/vendor
136
+ - spec/rails_root/vendor/plugins
137
+ - spec/rails_root/vendor/plugins/email_spec
138
+ - spec/rails_root/vendor/plugins/email_spec/generators
139
+ - spec/rails_root/vendor/plugins/email_spec/generators/email_spec
140
+ - spec/rails_root/vendor/plugins/email_spec/generators/email_spec/email_spec_generator.rb
141
+ - spec/rails_root/vendor/plugins/email_spec/generators/email_spec/templates
142
+ - spec/rails_root/vendor/plugins/email_spec/generators/email_spec/templates/email_steps.rb
143
+ has_rdoc: true
144
+ homepage: http://github.com/bmabey/email-spec/
145
+ post_install_message:
146
+ rdoc_options: []
147
+
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: "0"
155
+ version:
156
+ required_rubygems_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: "0"
161
+ version:
162
+ requirements: []
163
+
164
+ rubyforge_project:
165
+ rubygems_version: 1.2.0
166
+ signing_key:
167
+ specification_version: 2
168
+ summary: Easily test email in rspec and cucumber
169
+ test_files: []
170
+