spree 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spree might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.8.3
2
+
3
+ * # 450 - Rake tasks failing if rspec is not installed on the system
4
+
1
5
  == 0.8.2
2
6
 
3
7
  * # 445 - Removed rspec plugin and replaced with gem dependency.
@@ -5,7 +5,7 @@
5
5
  # ENV['RAILS_ENV'] ||= 'production'
6
6
 
7
7
  # Specifies gem version of Rails to use when vendor/rails is not present
8
- SPREE_GEM_VERSION = '0.8.2' unless defined? SPREE_GEM_VERSION
8
+ SPREE_GEM_VERSION = '0.8.3' unless defined? SPREE_GEM_VERSION
9
9
 
10
10
  # Bootstrap the Rails environment, frameworks, and default configuration
11
11
  require File.join(File.dirname(__FILE__), 'boot')
@@ -9,7 +9,7 @@ unless defined? Spree::Version
9
9
  module Version
10
10
  Major = '0'
11
11
  Minor = '8'
12
- Tiny = '2'
12
+ Tiny = '3'
13
13
 
14
14
  class << self
15
15
  def to_s
@@ -36,7 +36,9 @@ namespace 'spree' do
36
36
  s.add_dependency 'activemerchant', '>= 1.4.1'
37
37
  s.add_dependency 'activerecord-tableless', '>= 0.1.0'
38
38
  s.add_dependency 'calendar_date_select', '= 1.15'
39
- s.add_dependency 'tlsmail', '= 0.0.1'
39
+ s.add_dependency 'tlsmail', '= 0.0.1'
40
+ s.add_dependency 'rspec', '>= 1.2.0'
41
+ s.add_dependency 'rspec-rails', '>= 1.2.0'
40
42
  # For some reason the authlogic dependency really screws things up (See Issue #433)
41
43
  #s.add_dependency 'authlogic', '>= 2.0.11'
42
44
  s.has_rdoc = true
@@ -1,158 +1,183 @@
1
+ gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
1
2
  rspec_gem_dir = nil
2
3
  Dir["#{RAILS_ROOT}/vendor/gems/*"].each do |subdir|
3
4
  rspec_gem_dir = subdir if subdir.gsub("#{RAILS_ROOT}/vendor/gems/","") =~ /^(\w+-)?rspec-(\d+)/ && File.exist?("#{subdir}/lib/spec/rake/spectask.rb")
4
5
  end
5
6
  rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')
6
-
7
+
7
8
  if rspec_gem_dir && (test ?d, rspec_plugin_dir)
8
9
  raise "\n#{'*'*50}\nYou have rspec installed in both vendor/gems and vendor/plugins\nPlease pick one and dispose of the other.\n#{'*'*50}\n\n"
9
10
  end
10
-
11
+
11
12
  if rspec_gem_dir
12
- $LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
13
+ $LOAD_PATH.unshift("#{rspec_gem_dir}/lib")
13
14
  elsif File.exist?(rspec_plugin_dir)
14
15
  $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib")
15
16
  end
16
-
17
+
18
+ # Don't load rspec if running "rake gems:*"
19
+ unless ARGV.any? {|a| a =~ /^gems/}
20
+
17
21
  begin
18
22
  require 'spec/rake/spectask'
19
- Rake.application.instance_variable_get('@tasks').delete('default')
20
-
21
- spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
22
- task :noop do
23
+ rescue MissingSourceFile
24
+ module Spec
25
+ module Rake
26
+ class SpecTask
27
+ def initialize(name)
28
+ task name do
29
+ # if rspec-rails is a configured gem, this will output helpful material and exit ...
30
+ require File.expand_path(File.dirname(__FILE__) + "/../../config/environment")
31
+
32
+ # ... otherwise, do this:
33
+ raise <<-MSG
34
+
35
+ #{"*" * 80}
36
+ * You are trying to run an rspec rake task defined in
37
+ * #{__FILE__},
38
+ * but rspec can not be found in vendor/gems, vendor/plugins or system gems.
39
+ * Try installing the gem using rake gems:install RAILS_ENV=test
40
+ #{"*" * 80}
41
+ MSG
42
+ end
43
+ end
44
+ end
45
+ end
23
46
  end
24
-
25
- task :default => :spec
26
- task :stats => "spec:statsetup"
27
-
28
- desc "Run all specs in spec directory (excluding plugin specs)"
29
- Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
47
+ end
48
+
49
+ Rake.application.instance_variable_get('@tasks').delete('default')
50
+
51
+ spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
52
+ task :noop do
53
+ end
54
+
55
+ task :default => :spec
56
+ task :stats => "spec:statsetup"
57
+
58
+ desc "Run all specs in spec directory (excluding plugin specs)"
59
+ Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
60
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
61
+ t.spec_files = FileList['spec/**/*_spec.rb']
62
+ end
63
+
64
+ namespace :spec do
65
+ desc "Run all specs in spec directory with RCov (excluding plugin specs)"
66
+ Spec::Rake::SpecTask.new(:rcov) do |t|
30
67
  t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
31
- t.spec_files = FileList['spec/**/*/*_spec.rb']
68
+ t.spec_files = FileList['spec/**/*_spec.rb']
69
+ t.rcov = true
70
+ t.rcov_opts = lambda do
71
+ IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
72
+ end
73
+ end
74
+
75
+ desc "Print Specdoc for all specs (excluding plugin specs)"
76
+ Spec::Rake::SpecTask.new(:doc) do |t|
77
+ t.spec_opts = ["--format", "specdoc", "--dry-run"]
78
+ t.spec_files = FileList['spec/**/*_spec.rb']
32
79
  end
33
-
34
- namespace :spec do
35
- desc "Run all specs in spec directory with RCov (excluding plugin specs)"
36
- Spec::Rake::SpecTask.new(:rcov) do |t|
80
+
81
+ desc "Print Specdoc for all plugin examples"
82
+ Spec::Rake::SpecTask.new(:plugin_doc) do |t|
83
+ t.spec_opts = ["--format", "specdoc", "--dry-run"]
84
+ t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
85
+ end
86
+
87
+ [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
88
+ desc "Run the code examples in spec/#{sub}"
89
+ Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
37
90
  t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
38
- t.spec_files = FileList['spec/**/*/*_spec.rb']
39
- t.rcov = true
40
- t.rcov_opts = lambda do
41
- IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
42
- end
43
- end
44
-
45
- desc "Print Specdoc for all specs (excluding plugin specs)"
46
- Spec::Rake::SpecTask.new(:doc) do |t|
47
- t.spec_opts = ["--format", "specdoc", "--dry-run"]
48
- t.spec_files = FileList['spec/**/*/*_spec.rb']
49
- end
50
-
51
- desc "Print Specdoc for all plugin examples"
52
- Spec::Rake::SpecTask.new(:plugin_doc) do |t|
53
- t.spec_opts = ["--format", "specdoc", "--dry-run"]
54
- t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*')
55
- end
56
-
57
- [:models, :controllers, :views, :helpers, :lib].each do |sub|
58
- desc "Run the code examples in spec/#{sub}"
59
- Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
60
- t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
61
- t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
62
- end
91
+ t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
63
92
  end
64
-
65
- desc "Run the code examples in vendor/plugins (except RSpec's own)"
66
- Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
93
+ end
94
+
95
+ desc "Run the code examples in vendor/plugins (except RSpec's own)"
96
+ Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
97
+ t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
98
+ t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
99
+ end
100
+
101
+ namespace :plugins do
102
+ desc "Runs the examples for rspec_on_rails"
103
+ Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
67
104
  t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
68
- t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
69
- end
70
-
71
- namespace :plugins do
72
- desc "Runs the examples for rspec_on_rails"
73
- Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
74
- t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
75
- t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*/*_spec.rb']
76
- end
105
+ t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*_spec.rb']
77
106
  end
78
-
79
- # Setup specs for stats
80
- task :statsetup do
81
- require 'code_statistics'
82
- ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
83
- ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
84
- ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
85
- ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
86
- ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
87
- ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
88
- ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
89
- ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
90
- ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
91
- ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
92
- ::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/}
93
- end
94
-
95
- namespace :db do
96
- namespace :fixtures do
97
- desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z."
98
- task :load => :environment do
99
- ActiveRecord::Base.establish_connection(Rails.env)
100
- base_dir = File.join(Rails.root, 'spec', 'fixtures')
101
- fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
102
-
103
- (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
104
- Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
105
- end
107
+ end
108
+
109
+ # Setup specs for stats
110
+ task :statsetup do
111
+ require 'code_statistics'
112
+ ::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
113
+ ::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
114
+ ::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
115
+ ::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
116
+ ::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
117
+ ::STATS_DIRECTORIES << %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
118
+ ::STATS_DIRECTORIES << %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
119
+ ::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
120
+ ::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
121
+ ::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
122
+ ::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
123
+ ::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
124
+ ::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
125
+ ::CodeStatistics::TEST_TYPES << "Integration specs" if File.exist?('spec/integration')
126
+ end
127
+
128
+ namespace :db do
129
+ namespace :fixtures do
130
+ desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z."
131
+ task :load => :environment do
132
+ ActiveRecord::Base.establish_connection(Rails.env)
133
+ base_dir = File.join(Rails.root, 'spec', 'fixtures')
134
+ fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
135
+
136
+ require 'active_record/fixtures'
137
+ (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
138
+ Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
106
139
  end
107
140
  end
108
141
  end
109
-
110
- namespace :server do
111
- daemonized_server_pid = File.expand_path("spec_server.pid", RAILS_ROOT + "/tmp")
112
-
113
- desc "start spec_server."
114
- task :start do
115
- if File.exist?(daemonized_server_pid)
116
- $stderr.puts "spec_server is already running."
117
- else
118
- $stderr.puts "Starting up spec server."
119
- system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
120
- end
142
+ end
143
+
144
+ namespace :server do
145
+ daemonized_server_pid = File.expand_path("#{RAILS_ROOT}/tmp/pids/spec_server.pid")
146
+
147
+ desc "start spec_server."
148
+ task :start do
149
+ if File.exist?(daemonized_server_pid)
150
+ $stderr.puts "spec_server is already running."
151
+ else
152
+ $stderr.puts %Q{Starting up spec_server ...}
153
+ FileUtils.mkdir_p('tmp/pids') unless test ?d, 'tmp/pids'
154
+ system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
121
155
  end
122
-
123
- desc "stop spec_server."
124
- task :stop do
125
- unless File.exist?(daemonized_server_pid)
126
- $stderr.puts "No server running."
127
- else
128
- $stderr.puts "Shutting down spec_server."
129
- system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
130
- File.delete(daemonized_server_pid)
131
- end
156
+ end
157
+
158
+ desc "stop spec_server."
159
+ task :stop do
160
+ unless File.exist?(daemonized_server_pid)
161
+ $stderr.puts "No server running."
162
+ else
163
+ $stderr.puts "Shutting down spec_server ..."
164
+ system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
165
+ File.delete(daemonized_server_pid)
132
166
  end
133
-
134
- desc "reload spec_server."
135
- task :restart do
136
- unless File.exist?(daemonized_server_pid)
137
- $stderr.puts "No server running."
138
- else
139
- $stderr.puts "Reloading down spec_server."
140
- system("kill", "-s", "USR2", File.read(daemonized_server_pid).strip)
141
- end
167
+ end
168
+
169
+ desc "restart spec_server."
170
+ task :restart => [:stop, :start]
171
+
172
+ desc "check if spec server is running"
173
+ task :status do
174
+ if File.exist?(daemonized_server_pid)
175
+ $stderr.puts %Q{spec_server is running (PID: #{File.read(daemonized_server_pid).gsub("\n","")})}
176
+ else
177
+ $stderr.puts "No server running."
142
178
  end
143
179
  end
144
180
  end
145
- rescue MissingSourceFile
146
- # if rspec-rails is a configured gem, this will output helpful material and exit ...
147
- require File.expand_path(File.dirname(__FILE__) + "/../../config/environment")
148
-
149
- # ... otherwise, do this:
150
- raise <<-MSG
151
-
152
- You have rspec rake tasks installed in
153
- #{__FILE__},
154
- but rspec can not be found in vendor/gems, vendor/plugins or on the system.
155
-
156
- MSG
157
181
  end
158
-
182
+
183
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Schofield
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-12 00:00:00 -04:00
12
+ date: 2009-05-14 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -82,6 +82,26 @@ dependencies:
82
82
  - !ruby/object:Gem::Version
83
83
  version: 0.0.1
84
84
  version:
85
+ - !ruby/object:Gem::Dependency
86
+ name: rspec
87
+ type: :runtime
88
+ version_requirement:
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: 1.2.0
94
+ version:
95
+ - !ruby/object:Gem::Dependency
96
+ name: rspec-rails
97
+ type: :runtime
98
+ version_requirement:
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 1.2.0
104
+ version:
85
105
  description: "Spree is a complete commerce solution designed for use by experienced Rails developers. No solution can possibly solve everyone\xE2\x80\x99s needs perfectly. There are simply too many ways that people do business for us to model them all specifically. Rather then come up short (like so many projects before it), Spree\xE2\x80\x99s approach is to simply accept this and not even try. Instead Spree tries to focus on solving the 90% of the problem that most commerce projects face and anticipate that the other 10% will need to be addressed by the end developer familiar with the client\xE2\x80\x99s exact business requirements."
86
106
  email: sean.schofield@gmail.com
87
107
  executables:
@@ -1191,6 +1211,7 @@ files:
1191
1211
  - public/images/flags/cx.png
1192
1212
  - public/images/flags/cy.png
1193
1213
  - public/images/flags/cz.png
1214
+ - public/images/flags/da.png
1194
1215
  - public/images/flags/de.png
1195
1216
  - public/images/flags/dj.png
1196
1217
  - public/images/flags/dk.png
@@ -2494,6 +2515,128 @@ files:
2494
2515
  - vendor/plugins/resource_controller/test/vendor/plugins/shoulda/Rakefile
2495
2516
  - vendor/plugins/resource_controller/TODO
2496
2517
  - vendor/plugins/resource_controller/uninstall.rb
2518
+ - vendor/plugins/rspec
2519
+ - vendor/plugins/rspec/bin
2520
+ - vendor/plugins/rspec/examples
2521
+ - vendor/plugins/rspec/examples/failing
2522
+ - vendor/plugins/rspec/examples/passing
2523
+ - vendor/plugins/rspec/features
2524
+ - vendor/plugins/rspec/features/before_and_after_blocks
2525
+ - vendor/plugins/rspec/features/example_groups
2526
+ - vendor/plugins/rspec/features/interop
2527
+ - vendor/plugins/rspec/features/mock_framework_integration
2528
+ - vendor/plugins/rspec/features/step_definitions
2529
+ - vendor/plugins/rspec/features/support
2530
+ - vendor/plugins/rspec/features/support/helpers
2531
+ - vendor/plugins/rspec/features/support/matchers
2532
+ - vendor/plugins/rspec/lib
2533
+ - vendor/plugins/rspec/lib/adapters
2534
+ - vendor/plugins/rspec/lib/adapters/mock_frameworks
2535
+ - vendor/plugins/rspec/lib/autotest
2536
+ - vendor/plugins/rspec/lib/spec
2537
+ - vendor/plugins/rspec/lib/spec/dsl
2538
+ - vendor/plugins/rspec/lib/spec/example
2539
+ - vendor/plugins/rspec/lib/spec/expectations
2540
+ - vendor/plugins/rspec/lib/spec/expectations/differs
2541
+ - vendor/plugins/rspec/lib/spec/expectations/extensions
2542
+ - vendor/plugins/rspec/lib/spec/interop
2543
+ - vendor/plugins/rspec/lib/spec/interop/test
2544
+ - vendor/plugins/rspec/lib/spec/interop/test/unit
2545
+ - vendor/plugins/rspec/lib/spec/interop/test/unit/ui
2546
+ - vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console
2547
+ - vendor/plugins/rspec/lib/spec/matchers
2548
+ - vendor/plugins/rspec/lib/spec/mocks
2549
+ - vendor/plugins/rspec/lib/spec/mocks/extensions
2550
+ - vendor/plugins/rspec/lib/spec/rake
2551
+ - vendor/plugins/rspec/lib/spec/runner
2552
+ - vendor/plugins/rspec/lib/spec/runner/formatter
2553
+ - vendor/plugins/rspec/lib/spec/runner/formatter/story
2554
+ - vendor/plugins/rspec/lib/spec/story
2555
+ - vendor/plugins/rspec/lib/spec/story/extensions
2556
+ - vendor/plugins/rspec/lib/spec/story/runner
2557
+ - vendor/plugins/rspec/resources
2558
+ - vendor/plugins/rspec/resources/rake
2559
+ - vendor/plugins/rspec/resources/spec
2560
+ - vendor/plugins/rspec/resources/test
2561
+ - vendor/plugins/rspec/spec
2562
+ - vendor/plugins/rspec/spec/autotest
2563
+ - vendor/plugins/rspec/spec/spec
2564
+ - vendor/plugins/rspec/spec/spec/dsl
2565
+ - vendor/plugins/rspec/spec/spec/example
2566
+ - vendor/plugins/rspec/spec/spec/expectations
2567
+ - vendor/plugins/rspec/spec/spec/expectations/differs
2568
+ - vendor/plugins/rspec/spec/spec/expectations/extensions
2569
+ - vendor/plugins/rspec/spec/spec/interop
2570
+ - vendor/plugins/rspec/spec/spec/interop/test
2571
+ - vendor/plugins/rspec/spec/spec/interop/test/unit
2572
+ - vendor/plugins/rspec/spec/spec/interop/test/unit/resources
2573
+ - vendor/plugins/rspec/spec/spec/matchers
2574
+ - vendor/plugins/rspec/spec/spec/mocks
2575
+ - vendor/plugins/rspec/spec/spec/package
2576
+ - vendor/plugins/rspec/spec/spec/runner
2577
+ - vendor/plugins/rspec/spec/spec/runner/formatter
2578
+ - vendor/plugins/rspec/spec/spec/runner/formatter/story
2579
+ - vendor/plugins/rspec/spec/spec/runner/resources
2580
+ - vendor/plugins/rspec/spec/spec/runner/spec_parser
2581
+ - vendor/plugins/rspec/spec/spec/story
2582
+ - vendor/plugins/rspec/spec/spec/story/extensions
2583
+ - vendor/plugins/rspec/spec/spec/story/runner
2584
+ - vendor/plugins/rspec/story_server
2585
+ - vendor/plugins/rspec/story_server/prototype
2586
+ - vendor/plugins/rspec/story_server/prototype/javascripts
2587
+ - vendor/plugins/rspec/story_server/prototype/lib
2588
+ - vendor/plugins/rspec/story_server/prototype/stylesheets
2589
+ - vendor/plugins/rspec-rails
2590
+ - vendor/plugins/rspec-rails/features
2591
+ - vendor/plugins/rspec-rails/features/step_definitions
2592
+ - vendor/plugins/rspec-rails/features/support
2593
+ - vendor/plugins/rspec-rails/features/transactions
2594
+ - vendor/plugins/rspec-rails/generators
2595
+ - vendor/plugins/rspec-rails/generators/rspec
2596
+ - vendor/plugins/rspec-rails/generators/rspec/templates
2597
+ - vendor/plugins/rspec-rails/generators/rspec/templates/script
2598
+ - vendor/plugins/rspec-rails/generators/rspec_controller
2599
+ - vendor/plugins/rspec-rails/generators/rspec_controller/templates
2600
+ - vendor/plugins/rspec-rails/generators/rspec_model
2601
+ - vendor/plugins/rspec-rails/generators/rspec_model/templates
2602
+ - vendor/plugins/rspec-rails/generators/rspec_scaffold
2603
+ - vendor/plugins/rspec-rails/generators/rspec_scaffold/templates
2604
+ - vendor/plugins/rspec-rails/lib
2605
+ - vendor/plugins/rspec-rails/lib/autotest
2606
+ - vendor/plugins/rspec-rails/lib/spec
2607
+ - vendor/plugins/rspec-rails/lib/spec/rails
2608
+ - vendor/plugins/rspec-rails/lib/spec/rails/example
2609
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions
2610
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller
2611
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_view
2612
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/active_record
2613
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec
2614
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/matchers
2615
+ - vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/runner
2616
+ - vendor/plugins/rspec-rails/lib/spec/rails/interop
2617
+ - vendor/plugins/rspec-rails/lib/spec/rails/matchers
2618
+ - vendor/plugins/rspec-rails/spec
2619
+ - vendor/plugins/rspec-rails/spec/autotest
2620
+ - vendor/plugins/rspec-rails/spec/resources
2621
+ - vendor/plugins/rspec-rails/spec/resources/controllers
2622
+ - vendor/plugins/rspec-rails/spec/resources/helpers
2623
+ - vendor/plugins/rspec-rails/spec/resources/models
2624
+ - vendor/plugins/rspec-rails/spec/resources/views
2625
+ - vendor/plugins/rspec-rails/spec/resources/views/controller_spec
2626
+ - vendor/plugins/rspec-rails/spec/resources/views/layouts
2627
+ - vendor/plugins/rspec-rails/spec/resources/views/objects
2628
+ - vendor/plugins/rspec-rails/spec/resources/views/render_spec
2629
+ - vendor/plugins/rspec-rails/spec/resources/views/rjs_spec
2630
+ - vendor/plugins/rspec-rails/spec/resources/views/tag_spec
2631
+ - vendor/plugins/rspec-rails/spec/resources/views/view_spec
2632
+ - vendor/plugins/rspec-rails/spec/resources/views/view_spec/foo
2633
+ - vendor/plugins/rspec-rails/spec/spec
2634
+ - vendor/plugins/rspec-rails/spec/spec/rails
2635
+ - vendor/plugins/rspec-rails/spec/spec/rails/example
2636
+ - vendor/plugins/rspec-rails/spec/spec/rails/extensions
2637
+ - vendor/plugins/rspec-rails/spec/spec/rails/interop
2638
+ - vendor/plugins/rspec-rails/spec/spec/rails/matchers
2639
+ - vendor/plugins/rspec-rails/spec/spec/rails/mocks
2497
2640
  - vendor/plugins/ssl_requirement
2498
2641
  - vendor/plugins/ssl_requirement/lib
2499
2642
  - vendor/plugins/ssl_requirement/lib/ssl_requirement.rb