errplane 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -2
- data/README.md +21 -0
- data/errplane.gemspec +2 -2
- data/lib/errplane.rb +3 -1
- data/lib/errplane/rails.rb +0 -2
- data/lib/errplane/sinatra.rb +1 -1
- data/lib/errplane/version.rb +1 -1
- data/spec/spec_helper.rb +7 -9
- data/spec/support/rails2/app/controllers/application_controller.rb +4 -0
- data/spec/{rails2 → support/rails2}/app/controllers/widgets_controller.rb +0 -1
- data/spec/support/rails2/app/helpers/application_helper.rb +2 -0
- data/spec/support/rails2/app/helpers/widgets_helper.rb +2 -0
- data/spec/support/rails2/config/environment.rb +4 -0
- data/spec/{rails2 → support/rails2}/config/environments/test.rb +0 -0
- data/spec/support/rails2/config/initializers/cookie_verification_secret.rb +1 -0
- data/spec/{rails2 → support/rails2}/config/initializers/errplane.rb +0 -0
- data/spec/support/rails2/config/initializers/new_rails_defaults.rb +8 -0
- data/spec/support/rails2/config/initializers/session_store.rb +4 -0
- data/spec/{rails2 → support/rails2}/config/routes.rb +0 -0
- data/spec/{app/rails3.rb → support/rails3/app.rb} +0 -0
- metadata +29 -109
- data/gemfiles/Gemfile.rails-2.3.x.lock +0 -76
- data/gemfiles/Gemfile.rails-3.0.x.lock +0 -93
- data/gemfiles/Gemfile.rails-3.1.x.lock +0 -105
- data/gemfiles/Gemfile.rails-3.2.x.lock +0 -103
- data/spec/app/rails2.rb +0 -38
- data/spec/rails2/README +0 -243
- data/spec/rails2/Rakefile +0 -10
- data/spec/rails2/app/controllers/application_controller.rb +0 -10
- data/spec/rails2/app/helpers/application_helper.rb +0 -3
- data/spec/rails2/app/helpers/widgets_helper.rb +0 -1
- data/spec/rails2/config/boot.rb +0 -114
- data/spec/rails2/config/database.yml +0 -3
- data/spec/rails2/config/environment.rb +0 -33
- data/spec/rails2/config/environments/development.rb +0 -17
- data/spec/rails2/config/environments/production.rb +0 -28
- data/spec/rails2/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/rails2/config/initializers/cookie_verification_secret.rb +0 -7
- data/spec/rails2/config/initializers/inflections.rb +0 -10
- data/spec/rails2/config/initializers/mime_types.rb +0 -5
- data/spec/rails2/config/initializers/new_rails_defaults.rb +0 -21
- data/spec/rails2/config/initializers/session_store.rb +0 -15
- data/spec/rails2/config/locales/en.yml +0 -5
- data/spec/rails2/lib/tasks/rspec.rake +0 -144
- data/spec/rails2/public/404.html +0 -30
- data/spec/rails2/public/422.html +0 -30
- data/spec/rails2/public/500.html +0 -30
- data/spec/rails2/public/favicon.ico +0 -0
- data/spec/rails2/public/images/rails.png +0 -0
- data/spec/rails2/public/index.html +0 -275
- data/spec/rails2/public/javascripts/application.js +0 -2
- data/spec/rails2/public/javascripts/controls.js +0 -963
- data/spec/rails2/public/javascripts/dragdrop.js +0 -973
- data/spec/rails2/public/javascripts/effects.js +0 -1128
- data/spec/rails2/public/javascripts/prototype.js +0 -4320
- data/spec/rails2/public/robots.txt +0 -5
- data/spec/rails2/script/about +0 -4
- data/spec/rails2/script/autospec +0 -6
- data/spec/rails2/script/console +0 -3
- data/spec/rails2/script/dbconsole +0 -3
- data/spec/rails2/script/destroy +0 -3
- data/spec/rails2/script/generate +0 -3
- data/spec/rails2/script/performance/benchmarker +0 -3
- data/spec/rails2/script/performance/profiler +0 -3
- data/spec/rails2/script/plugin +0 -3
- data/spec/rails2/script/runner +0 -3
- data/spec/rails2/script/server +0 -3
- data/spec/rails2/script/spec +0 -10
- data/spec/rails2/test/performance/browsing_test.rb +0 -9
- data/spec/rails2/test/test_helper.rb +0 -38
data/spec/rails2/script/about
DELETED
data/spec/rails2/script/autospec
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
|
3
|
-
ENV['RSPEC'] = 'true' # allows autotest to discover rspec
|
4
|
-
ENV['AUTOTEST'] = 'true' # allows autotest to run w/ color on linux
|
5
|
-
system((RUBY_PLATFORM =~ /mswin|mingw/ ? 'autotest.bat' : 'autotest'), *ARGV) ||
|
6
|
-
$stderr.puts("Unable to find autotest. Please install ZenTest or fix your PATH")
|
data/spec/rails2/script/console
DELETED
data/spec/rails2/script/destroy
DELETED
data/spec/rails2/script/generate
DELETED
data/spec/rails2/script/plugin
DELETED
data/spec/rails2/script/runner
DELETED
data/spec/rails2/script/server
DELETED
data/spec/rails2/script/spec
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
if ARGV.any? {|arg| %w[--drb -X --generate-options -G --help -h --version -v].include?(arg)}
|
3
|
-
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
4
|
-
else
|
5
|
-
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
|
6
|
-
ENV["RAILS_ENV"] ||= 'test'
|
7
|
-
require File.expand_path(File.dirname(__FILE__) + "/../config/environment") unless defined?(RAILS_ROOT)
|
8
|
-
end
|
9
|
-
require 'spec/autorun'
|
10
|
-
exit ::Spec::Runner::CommandLine.run
|
@@ -1,38 +0,0 @@
|
|
1
|
-
ENV["RAILS_ENV"] = "test"
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
-
require 'test_help'
|
4
|
-
|
5
|
-
class ActiveSupport::TestCase
|
6
|
-
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
-
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
-
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
-
# between every test method. Fewer database queries means faster tests.
|
10
|
-
#
|
11
|
-
# Read Mike Clark's excellent walkthrough at
|
12
|
-
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
-
#
|
14
|
-
# Every Active Record database supports transactions except MyISAM tables
|
15
|
-
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
-
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
-
# is recommended.
|
18
|
-
#
|
19
|
-
# The only drawback to using transactional fixtures is when you actually
|
20
|
-
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
-
# any transactions started in your code will be automatically rolled back.
|
22
|
-
self.use_transactional_fixtures = true
|
23
|
-
|
24
|
-
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
-
# would need people(:david). If you don't want to migrate your existing
|
26
|
-
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
-
# instantiated fixtures translates to a database query per test method),
|
28
|
-
# then set this back to true.
|
29
|
-
self.use_instantiated_fixtures = false
|
30
|
-
|
31
|
-
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
-
#
|
33
|
-
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
-
# -- they do not yet inherit this setting
|
35
|
-
fixtures :all
|
36
|
-
|
37
|
-
# Add more helper methods to be used by all tests here...
|
38
|
-
end
|