rango 0.1.pre → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -1
- data/README.textile +12 -4
- data/examples/README.textile +7 -8
- data/{stubs/project/content → examples/blog}/Gemfile +27 -4
- data/examples/blog/Rakefile +12 -0
- data/{vendor/cli → examples/blog}/TODO.txt +0 -0
- data/examples/blog/bin/autospec +3 -0
- data/examples/blog/bin/css2sass +3 -0
- data/examples/blog/bin/cucumber +3 -0
- data/examples/blog/bin/haml +3 -0
- data/examples/blog/bin/html2haml +3 -0
- data/examples/blog/bin/htmldiff +3 -0
- data/examples/blog/bin/launchy +3 -0
- data/examples/blog/bin/ldiff +3 -0
- data/examples/blog/bin/nokogiri +3 -0
- data/examples/blog/bin/racksh +3 -0
- data/examples/blog/bin/rackup +3 -0
- data/examples/blog/bin/rake +3 -0
- data/examples/blog/bin/rango +3 -0
- data/examples/blog/bin/sass +3 -0
- data/examples/blog/bin/shotgun +3 -0
- data/examples/blog/bin/simple-templater +3 -0
- data/examples/blog/bin/spec +3 -0
- data/examples/blog/bin/tt +3 -0
- data/examples/blog/blog/init.rb +9 -0
- data/examples/blog/blog/models.rb +21 -0
- data/examples/blog/blog/views.rb +16 -0
- data/examples/blog/config.ru +19 -0
- data/examples/blog/gems/cache/addressable-2.1.1.gem +0 -0
- data/examples/blog/gems/cache/builder-2.1.2.gem +0 -0
- data/examples/blog/gems/cache/bundler-0.7.0.gem +0 -0
- data/examples/blog/gems/cache/cli-0.0.1.gem +0 -0
- data/examples/blog/gems/cache/configuration-1.1.0.gem +0 -0
- data/examples/blog/gems/cache/cucumber-0.4.4.gem +0 -0
- data/examples/blog/gems/cache/data_objects-0.10.0.gem +0 -0
- data/examples/blog/gems/cache/diff-lcs-1.1.2.gem +0 -0
- data/examples/blog/gems/cache/dm-core-0.10.1.gem +0 -0
- data/examples/blog/gems/cache/dm-timestamps-0.10.1.gem +0 -0
- data/examples/blog/gems/cache/do_mysql-0.10.0.gem +0 -0
- data/examples/blog/gems/cache/do_sqlite3-0.10.0.gem +0 -0
- data/examples/blog/gems/cache/extlib-0.9.13.gem +0 -0
- data/examples/blog/gems/cache/fuzzyhash-0.0.9.gem +0 -0
- data/examples/blog/gems/cache/haml-2.2.14.gem +0 -0
- data/examples/blog/gems/cache/launchy-0.3.3.gem +0 -0
- data/examples/blog/gems/cache/media-path-0.1.gem +0 -0
- data/examples/blog/gems/cache/nokogiri-1.4.0.gem +0 -0
- data/examples/blog/gems/cache/polyglot-0.2.9.gem +0 -0
- data/examples/blog/gems/cache/rack-1.0.1.gem +0 -0
- data/examples/blog/gems/cache/rack-test-0.5.2.gem +0 -0
- data/examples/blog/gems/cache/racksh-0.9.4.2.gem +0 -0
- data/examples/blog/gems/cache/rake-0.8.7.gem +0 -0
- data/examples/blog/gems/cache/rango-0.1.0.gem +0 -0
- data/examples/blog/gems/cache/rspec-1.2.9.gem +0 -0
- data/examples/blog/gems/cache/rubyexts-0.0.1.gem +0 -0
- data/examples/blog/gems/cache/shotgun-0.4.gem +0 -0
- data/examples/blog/gems/cache/simple-templater-0.0.1.gem +0 -0
- data/examples/blog/gems/cache/term-ansicolor-1.0.4.gem +0 -0
- data/examples/blog/gems/cache/treetop-1.4.2.gem +0 -0
- data/examples/blog/gems/cache/usher-0.5.11.gem +0 -0
- data/examples/blog/gems/cache/webrat-0.5.3.gem +0 -0
- data/examples/blog/init.rb +49 -0
- data/examples/blog/settings.rb +15 -0
- data/examples/{twitter → blog}/settings_local.rb +0 -0
- data/examples/blog/spec/blog/init_spec.rb +7 -0
- data/examples/blog/spec/blog/models_spec.rb +28 -0
- data/examples/blog/spec/blog/views_spec.rb +22 -0
- data/{vendor/cli → examples/blog}/spec/spec.opts +0 -0
- data/examples/blog/spec/spec_helper.rb +27 -0
- data/examples/blog/templates/base.html.haml +16 -0
- data/examples/blog/templates/index.html.haml +12 -0
- data/lib/rango.rb +1 -1
- data/lib/rango/contrib/pagination.rb +1 -2
- data/lib/rango/contrib/pagination/TODO +1 -2
- data/lib/rango/contrib/pagination/_pagination.html.haml +4 -4
- data/lib/rango/contrib/pagination/helpers.rb +10 -0
- data/lib/rango/exceptions.rb +1 -4
- data/lib/rango/gv.rb +8 -0
- data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +2 -0
- data/lib/rango/helpers/merb-helpers/form/builder.rb +0 -1
- data/lib/rango/mixins/render.rb +3 -0
- data/lib/rango/orm/adapters/datamapper.rb +8 -0
- data/lib/rango/orm/support/datamapper/support.rb +2 -0
- data/lib/rango/orm/tasks/datamapper.rake +41 -0
- data/lib/rango/orm/tasks/sequel.rake +3 -0
- data/lib/rango/rack/request.rb +2 -0
- data/lib/rango/rango.rb +19 -5
- data/lib/rango/router.rb +9 -0
- data/lib/rango/router/adapters/rack_mount.rb +17 -0
- data/lib/rango/router/adapters/usher.rb +1 -1
- data/lib/rango/settings/erubis.rb +2 -0
- data/lib/rango/settings/framework.rb +1 -1
- data/lib/rango/settings/haml.rb +6 -0
- data/lib/rango/settings/template.rb +3 -1
- data/lib/rango/tasks/spec.rake +7 -0
- data/lib/rango/templates/adapter.rb +1 -1
- data/lib/rango/templates/erubis.rb +2 -2
- data/lib/rango/templates/template.rb +13 -1
- data/lib/rango/templates/templates.txt +1 -1
- data/lib/rango/{testing.rb → utils.rb} +1 -1
- data/spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb +1 -0
- data/spec/rango/helpers/merb-helpers/ordinalize_spec.rb +1 -0
- data/spec/rango/project_spec.rb +2 -2
- data/spec/rango_spec.rb +0 -4
- data/stubs/app/content/init.rb.rbt +4 -1
- data/stubs/app/content/models.rb.rbt +17 -6
- data/stubs/app/content/views.rb.rbt +17 -6
- data/stubs/app/setup.rb +4 -3
- data/stubs/project/content/Gemfile.rbt +106 -0
- data/stubs/project/content/Rakefile.rbt +12 -0
- data/stubs/project/content/config.ru.rbt +33 -5
- data/stubs/project/content/init.rb.rbt +34 -4
- data/stubs/project/content/spec/%name%/init_spec.rb.rbt +7 -0
- data/stubs/project/content/spec/%name%/models_spec.rb.rbt +23 -0
- data/stubs/project/content/spec/%name%/views_spec.rb.rbt +23 -0
- data/{vendor/media-path → stubs/project/content}/spec/spec.opts +0 -0
- data/stubs/project/content/spec/spec_helper.rb +24 -6
- data/stubs/project/content/templates/base.html.haml.rbt +9 -22
- data/stubs/project/content/templates/index.html.haml +37 -0
- data/stubs/project/postprocess.rb +7 -1
- data/stubs/project/setup.rb +6 -3
- metadata +92 -1857
- data/benchmarks/ab.rb +0 -6
- data/benchmarks/bm/boot.rb +0 -20
- data/benchmarks/bm/callbacks.rb +0 -0
- data/benchmarks/bm/request.rb +0 -4
- data/benchmarks/bm/routers.rb +0 -22
- data/benchmarks/bm/stack.rb +0 -19
- data/benchmarks/bm/templates.rb +0 -0
- data/benchmarks/helper.rb +0 -7
- data/benchmarks/stubs/merb-app/Rakefile +0 -35
- data/benchmarks/stubs/merb-app/app/controllers/application.rb +0 -4
- data/benchmarks/stubs/merb-app/app/controllers/exceptions.rb +0 -15
- data/benchmarks/stubs/merb-app/app/helpers/global_helpers.rb +0 -7
- data/benchmarks/stubs/merb-app/app/models/user.rb +0 -19
- data/benchmarks/stubs/merb-app/app/views/exceptions/not_acceptable.html.erb +0 -63
- data/benchmarks/stubs/merb-app/app/views/exceptions/not_found.html.erb +0 -47
- data/benchmarks/stubs/merb-app/app/views/layout/application.html.erb +0 -12
- data/benchmarks/stubs/merb-app/autotest/discover.rb +0 -4
- data/benchmarks/stubs/merb-app/autotest/merb.rb +0 -154
- data/benchmarks/stubs/merb-app/autotest/merb_rspec.rb +0 -167
- data/benchmarks/stubs/merb-app/config/database.yml +0 -33
- data/benchmarks/stubs/merb-app/config/dependencies.rb +0 -36
- data/benchmarks/stubs/merb-app/config/environments/development.rb +0 -17
- data/benchmarks/stubs/merb-app/config/environments/production.rb +0 -12
- data/benchmarks/stubs/merb-app/config/environments/rake.rb +0 -13
- data/benchmarks/stubs/merb-app/config/environments/staging.rb +0 -12
- data/benchmarks/stubs/merb-app/config/environments/test.rb +0 -14
- data/benchmarks/stubs/merb-app/config/init.rb +0 -26
- data/benchmarks/stubs/merb-app/config/rack.rb +0 -13
- data/benchmarks/stubs/merb-app/config/router.rb +0 -46
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/merb_generator.rb +0 -1364
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/api_grease.js +0 -640
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/index.html.erb +0 -37
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.css +0 -252
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.rb +0 -353
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb_doc_styles.css +0 -492
- data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/prototype.js +0 -2515
- data/benchmarks/stubs/merb-app/merb/merb-auth/setup.rb +0 -46
- data/benchmarks/stubs/merb-app/merb/merb-auth/strategies.rb +0 -13
- data/benchmarks/stubs/merb-app/merb/session/session.rb +0 -11
- data/benchmarks/stubs/merb-app/public/favicon.ico +0 -0
- data/benchmarks/stubs/merb-app/public/images/merb.jpg +0 -0
- data/benchmarks/stubs/merb-app/public/javascripts/application.js +0 -1
- data/benchmarks/stubs/merb-app/public/javascripts/jquery.js +0 -19
- data/benchmarks/stubs/merb-app/public/merb.fcgi +0 -22
- data/benchmarks/stubs/merb-app/public/robots.txt +0 -5
- data/benchmarks/stubs/merb-app/public/stylesheets/master.css +0 -119
- data/benchmarks/stubs/merb-app/spec/spec.opts +0 -0
- data/benchmarks/stubs/merb-app/spec/spec_helper.rb +0 -27
- data/benchmarks/stubs/merb-app/tasks/doc.thor +0 -151
- data/benchmarks/stubs/merb-app/tasks/merb.thor/app_script.rb +0 -33
- data/benchmarks/stubs/merb-app/tasks/merb.thor/common.rb +0 -70
- data/benchmarks/stubs/merb-app/tasks/merb.thor/gem_ext.rb +0 -127
- data/benchmarks/stubs/merb-app/tasks/merb.thor/main.thor +0 -152
- data/benchmarks/stubs/merb-app/tasks/merb.thor/ops.rb +0 -95
- data/benchmarks/stubs/merb-app/tasks/merb.thor/utils.rb +0 -42
- data/benchmarks/stubs/merb-core/Rakefile +0 -35
- data/benchmarks/stubs/merb-core/app/controllers/application.rb +0 -4
- data/benchmarks/stubs/merb-core/app/controllers/exceptions.rb +0 -15
- data/benchmarks/stubs/merb-core/app/helpers/global_helpers.rb +0 -7
- data/benchmarks/stubs/merb-core/app/views/exceptions/not_acceptable.html.erb +0 -63
- data/benchmarks/stubs/merb-core/app/views/exceptions/not_found.html.erb +0 -47
- data/benchmarks/stubs/merb-core/app/views/layout/application.html.erb +0 -12
- data/benchmarks/stubs/merb-core/autotest/discover.rb +0 -1
- data/benchmarks/stubs/merb-core/autotest/merb.rb +0 -151
- data/benchmarks/stubs/merb-core/autotest/merb_rspec.rb +0 -167
- data/benchmarks/stubs/merb-core/config/environments/development.rb +0 -17
- data/benchmarks/stubs/merb-core/config/environments/production.rb +0 -12
- data/benchmarks/stubs/merb-core/config/environments/rake.rb +0 -13
- data/benchmarks/stubs/merb-core/config/environments/staging.rb +0 -12
- data/benchmarks/stubs/merb-core/config/environments/test.rb +0 -14
- data/benchmarks/stubs/merb-core/config/init.rb +0 -27
- data/benchmarks/stubs/merb-core/config/rack.rb +0 -13
- data/benchmarks/stubs/merb-core/config/router.rb +0 -43
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/merb_generator.rb +0 -1364
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/api_grease.js +0 -640
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/index.html.erb +0 -37
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.css +0 -252
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.rb +0 -353
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb_doc_styles.css +0 -492
- data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/prototype.js +0 -2515
- data/benchmarks/stubs/merb-core/public/favicon.ico +0 -0
- data/benchmarks/stubs/merb-core/public/images/merb.jpg +0 -0
- data/benchmarks/stubs/merb-core/public/javascripts/application.js +0 -1
- data/benchmarks/stubs/merb-core/public/merb.fcgi +0 -22
- data/benchmarks/stubs/merb-core/public/robots.txt +0 -5
- data/benchmarks/stubs/merb-core/public/stylesheets/master.css +0 -119
- data/benchmarks/stubs/merb-core/spec/spec.opts +0 -0
- data/benchmarks/stubs/merb-core/spec/spec_helper.rb +0 -22
- data/benchmarks/stubs/merb-core/tasks/merb.thor/app_script.rb +0 -33
- data/benchmarks/stubs/merb-core/tasks/merb.thor/common.rb +0 -70
- data/benchmarks/stubs/merb-core/tasks/merb.thor/gem_ext.rb +0 -127
- data/benchmarks/stubs/merb-core/tasks/merb.thor/main.thor +0 -152
- data/benchmarks/stubs/merb-core/tasks/merb.thor/ops.rb +0 -95
- data/benchmarks/stubs/merb-core/tasks/merb.thor/utils.rb +0 -42
- data/benchmarks/stubs/merb-flat/README.txt +0 -10
- data/benchmarks/stubs/merb-flat/Rakefile +0 -35
- data/benchmarks/stubs/merb-flat/application.rb +0 -17
- data/benchmarks/stubs/merb-flat/config/framework.rb +0 -9
- data/benchmarks/stubs/merb-flat/config/init.rb +0 -42
- data/benchmarks/stubs/merb-flat/spec/spec_helper.rb +0 -26
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/app_script.rb +0 -33
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/common.rb +0 -70
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/gem_ext.rb +0 -127
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/main.thor +0 -152
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/ops.rb +0 -95
- data/benchmarks/stubs/merb-flat/tasks/merb.thor/utils.rb +0 -42
- data/benchmarks/stubs/merb-flat/views/foo.html.erb +0 -3
- data/benchmarks/stubs/merb-very-flat/Rakefile +0 -35
- data/benchmarks/stubs/merb-very-flat/merb-very-flat.rb +0 -61
- data/benchmarks/stubs/merb-very-flat/spec/spec_helper.rb +0 -26
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/app_script.rb +0 -33
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/common.rb +0 -70
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/gem_ext.rb +0 -127
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/main.thor +0 -152
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/ops.rb +0 -95
- data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/utils.rb +0 -42
- data/benchmarks/stubs/rails/README +0 -243
- data/benchmarks/stubs/rails/Rakefile +0 -10
- data/benchmarks/stubs/rails/app/controllers/application_controller.rb +0 -12
- data/benchmarks/stubs/rails/app/helpers/application_helper.rb +0 -5
- data/benchmarks/stubs/rails/config/boot.rb +0 -112
- data/benchmarks/stubs/rails/config/database.yml +0 -22
- data/benchmarks/stubs/rails/config/environment.rb +0 -43
- data/benchmarks/stubs/rails/config/environments/development.rb +0 -19
- data/benchmarks/stubs/rails/config/environments/production.rb +0 -30
- data/benchmarks/stubs/rails/config/environments/test.rb +0 -30
- data/benchmarks/stubs/rails/config/initializers/backtrace_silencers.rb +0 -9
- data/benchmarks/stubs/rails/config/initializers/inflections.rb +0 -12
- data/benchmarks/stubs/rails/config/initializers/mime_types.rb +0 -7
- data/benchmarks/stubs/rails/config/initializers/new_rails_defaults.rb +0 -21
- data/benchmarks/stubs/rails/config/initializers/session_store.rb +0 -17
- data/benchmarks/stubs/rails/config/locales/en.yml +0 -5
- data/benchmarks/stubs/rails/config/routes.rb +0 -45
- data/benchmarks/stubs/rails/doc/README_FOR_APP +0 -2
- data/benchmarks/stubs/rails/log/development.log +0 -0
- data/benchmarks/stubs/rails/log/production.log +0 -0
- data/benchmarks/stubs/rails/log/server.log +0 -0
- data/benchmarks/stubs/rails/log/test.log +0 -0
- data/benchmarks/stubs/rails/public/404.html +0 -30
- data/benchmarks/stubs/rails/public/422.html +0 -30
- data/benchmarks/stubs/rails/public/500.html +0 -30
- data/benchmarks/stubs/rails/public/favicon.ico +0 -0
- data/benchmarks/stubs/rails/public/images/rails.png +0 -0
- data/benchmarks/stubs/rails/public/index.html +0 -275
- data/benchmarks/stubs/rails/public/javascripts/application.js +0 -2
- data/benchmarks/stubs/rails/public/javascripts/controls.js +0 -963
- data/benchmarks/stubs/rails/public/javascripts/dragdrop.js +0 -973
- data/benchmarks/stubs/rails/public/javascripts/effects.js +0 -1128
- data/benchmarks/stubs/rails/public/javascripts/prototype.js +0 -4320
- data/benchmarks/stubs/rails/public/robots.txt +0 -5
- data/benchmarks/stubs/rails/script/about +0 -4
- data/benchmarks/stubs/rails/script/console +0 -3
- data/benchmarks/stubs/rails/script/dbconsole +0 -3
- data/benchmarks/stubs/rails/script/destroy +0 -3
- data/benchmarks/stubs/rails/script/generate +0 -3
- data/benchmarks/stubs/rails/script/performance/benchmarker +0 -3
- data/benchmarks/stubs/rails/script/performance/profiler +0 -3
- data/benchmarks/stubs/rails/script/plugin +0 -3
- data/benchmarks/stubs/rails/script/runner +0 -3
- data/benchmarks/stubs/rails/script/server +0 -3
- data/benchmarks/stubs/rails/test/performance/browsing_test.rb +0 -11
- data/benchmarks/stubs/rails/test/test_helper.rb +0 -40
- data/benchmarks/stubs/ramaze.rb +0 -0
- data/benchmarks/stubs/sinatra.rb +0 -11
- data/deps.rip +0 -8
- data/doc/0.0.3/Array.html +0 -354
- data/doc/0.0.3/AttributeMixin.html +0 -697
- data/doc/0.0.3/Class.html +0 -102
- data/doc/0.0.3/ColoredString.html +0 -476
- data/doc/0.0.3/Enumerable.html +0 -256
- data/doc/0.0.3/File.html +0 -909
- data/doc/0.0.3/Hash.html +0 -1586
- data/doc/0.0.3/Kernel.html +0 -956
- data/doc/0.0.3/OS.html +0 -740
- data/doc/0.0.3/Object.html +0 -466
- data/doc/0.0.3/ObjectSpace.html +0 -184
- data/doc/0.0.3/Path.html +0 -2499
- data/doc/0.0.3/Range.html +0 -190
- data/doc/0.0.3/Rango.html +0 -379
- data/doc/0.0.3/Rango/ApplicationMixin.html +0 -396
- data/doc/0.0.3/Rango/Bundling.html +0 -23
- data/doc/0.0.3/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/0.0.3/Rango/Bundling/Strategy.html +0 -703
- data/doc/0.0.3/Rango/CLI.html +0 -23
- data/doc/0.0.3/Rango/CLI/Generator.html +0 -762
- data/doc/0.0.3/Rango/CLI/Templater.html +0 -258
- data/doc/0.0.3/Rango/CallableStrategy.html +0 -300
- data/doc/0.0.3/Rango/Chainable.html +0 -181
- data/doc/0.0.3/Rango/Configurable.html +0 -199
- data/doc/0.0.3/Rango/Controller.html +0 -962
- data/doc/0.0.3/Rango/ControllerMixin.html +0 -860
- data/doc/0.0.3/Rango/ControllerStrategy.html +0 -264
- data/doc/0.0.3/Rango/DependencyStrategy.html +0 -116
- data/doc/0.0.3/Rango/Dispatcher.html +0 -305
- data/doc/0.0.3/Rango/Form.html +0 -162
- data/doc/0.0.3/Rango/GemDependencyStrategy.html +0 -210
- data/doc/0.0.3/Rango/Generator.html +0 -93
- data/doc/0.0.3/Rango/GenericViews.html +0 -128
- data/doc/0.0.3/Rango/GitDependencyStrategy.html +0 -224
- data/doc/0.0.3/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/0.0.3/Rango/Handler.html +0 -474
- data/doc/0.0.3/Rango/Helpers.html +0 -1335
- data/doc/0.0.3/Rango/Hookable.html +0 -202
- data/doc/0.0.3/Rango/ImportMixin.html +0 -755
- data/doc/0.0.3/Rango/Logger.html +0 -920
- data/doc/0.0.3/Rango/Mini.html +0 -117
- data/doc/0.0.3/Rango/ModelForm.html +0 -42
- data/doc/0.0.3/Rango/Project.html +0 -516
- data/doc/0.0.3/Rango/RenderMixin.html +0 -23
- data/doc/0.0.3/Rango/Request.html +0 -1177
- data/doc/0.0.3/Rango/Route.html +0 -751
- data/doc/0.0.3/Rango/Router.html +0 -42
- data/doc/0.0.3/Rango/Router/Dispatcher.html +0 -311
- data/doc/0.0.3/Rango/RouterStrategy.html +0 -258
- data/doc/0.0.3/Rango/Session.html +0 -23
- data/doc/0.0.3/Rango/Settings.html +0 -23
- data/doc/0.0.3/Rango/Settings/Erubis.html +0 -23
- data/doc/0.0.3/Rango/Settings/Framework.html +0 -254
- data/doc/0.0.3/Rango/Settings/Haml.html +0 -23
- data/doc/0.0.3/Rango/Settings/Template.html +0 -23
- data/doc/0.0.3/Rango/SimpleTemplate.html +0 -187
- data/doc/0.0.3/Rango/StrategyMixin.html +0 -261
- data/doc/0.0.3/Rango/Tasks.html +0 -219
- data/doc/0.0.3/Rango/Template.html +0 -95
- data/doc/0.0.3/Rango/Template/Adapter.html +0 -90
- data/doc/0.0.3/Rango/Templates.html +0 -116
- data/doc/0.0.3/Rango/Templates/Adapter.html +0 -128
- data/doc/0.0.3/Rango/Templates/Template.html +0 -636
- data/doc/0.0.3/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/0.0.3/RangoThor.html +0 -205
- data/doc/0.0.3/String.html +0 -307
- data/doc/0.0.3/Time.html +0 -193
- data/doc/0.0.3/TimeDSL.html +0 -601
- data/doc/0.0.3/all-methods.html +0 -1908
- data/doc/0.0.3/all-namespaces.html +0 -114
- data/doc/0.0.3/app.js +0 -18
- data/doc/0.0.3/head/Array.html +0 -354
- data/doc/0.0.3/head/AttributeMixin.html +0 -697
- data/doc/0.0.3/head/Class.html +0 -102
- data/doc/0.0.3/head/ColoredString.html +0 -476
- data/doc/0.0.3/head/Enumerable.html +0 -256
- data/doc/0.0.3/head/File.html +0 -909
- data/doc/0.0.3/head/Hash.html +0 -1586
- data/doc/0.0.3/head/Kernel.html +0 -956
- data/doc/0.0.3/head/OS.html +0 -740
- data/doc/0.0.3/head/Object.html +0 -466
- data/doc/0.0.3/head/ObjectSpace.html +0 -184
- data/doc/0.0.3/head/Path.html +0 -2499
- data/doc/0.0.3/head/Range.html +0 -190
- data/doc/0.0.3/head/Rango.html +0 -379
- data/doc/0.0.3/head/Rango/ApplicationMixin.html +0 -396
- data/doc/0.0.3/head/Rango/Bundling.html +0 -23
- data/doc/0.0.3/head/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/0.0.3/head/Rango/Bundling/Strategy.html +0 -703
- data/doc/0.0.3/head/Rango/CLI.html +0 -23
- data/doc/0.0.3/head/Rango/CLI/Generator.html +0 -762
- data/doc/0.0.3/head/Rango/CLI/Templater.html +0 -258
- data/doc/0.0.3/head/Rango/CallableStrategy.html +0 -300
- data/doc/0.0.3/head/Rango/Chainable.html +0 -181
- data/doc/0.0.3/head/Rango/Configurable.html +0 -199
- data/doc/0.0.3/head/Rango/Controller.html +0 -962
- data/doc/0.0.3/head/Rango/ControllerMixin.html +0 -860
- data/doc/0.0.3/head/Rango/ControllerStrategy.html +0 -264
- data/doc/0.0.3/head/Rango/DependencyStrategy.html +0 -116
- data/doc/0.0.3/head/Rango/Dispatcher.html +0 -305
- data/doc/0.0.3/head/Rango/Form.html +0 -162
- data/doc/0.0.3/head/Rango/GemDependencyStrategy.html +0 -210
- data/doc/0.0.3/head/Rango/Generator.html +0 -93
- data/doc/0.0.3/head/Rango/GenericViews.html +0 -128
- data/doc/0.0.3/head/Rango/GitDependencyStrategy.html +0 -224
- data/doc/0.0.3/head/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/0.0.3/head/Rango/Handler.html +0 -474
- data/doc/0.0.3/head/Rango/Helpers.html +0 -1335
- data/doc/0.0.3/head/Rango/Hookable.html +0 -202
- data/doc/0.0.3/head/Rango/ImportMixin.html +0 -755
- data/doc/0.0.3/head/Rango/Logger.html +0 -920
- data/doc/0.0.3/head/Rango/Mini.html +0 -117
- data/doc/0.0.3/head/Rango/ModelForm.html +0 -42
- data/doc/0.0.3/head/Rango/Project.html +0 -516
- data/doc/0.0.3/head/Rango/RenderMixin.html +0 -23
- data/doc/0.0.3/head/Rango/Request.html +0 -1177
- data/doc/0.0.3/head/Rango/Route.html +0 -751
- data/doc/0.0.3/head/Rango/Router.html +0 -42
- data/doc/0.0.3/head/Rango/Router/Dispatcher.html +0 -311
- data/doc/0.0.3/head/Rango/RouterStrategy.html +0 -258
- data/doc/0.0.3/head/Rango/Session.html +0 -23
- data/doc/0.0.3/head/Rango/Settings.html +0 -23
- data/doc/0.0.3/head/Rango/Settings/Erubis.html +0 -23
- data/doc/0.0.3/head/Rango/Settings/Framework.html +0 -254
- data/doc/0.0.3/head/Rango/Settings/Haml.html +0 -23
- data/doc/0.0.3/head/Rango/Settings/Template.html +0 -23
- data/doc/0.0.3/head/Rango/SimpleTemplate.html +0 -187
- data/doc/0.0.3/head/Rango/StrategyMixin.html +0 -261
- data/doc/0.0.3/head/Rango/Tasks.html +0 -219
- data/doc/0.0.3/head/Rango/Template.html +0 -95
- data/doc/0.0.3/head/Rango/Template/Adapter.html +0 -90
- data/doc/0.0.3/head/Rango/Templates.html +0 -116
- data/doc/0.0.3/head/Rango/Templates/Adapter.html +0 -128
- data/doc/0.0.3/head/Rango/Templates/Template.html +0 -636
- data/doc/0.0.3/head/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/0.0.3/head/RangoThor.html +0 -205
- data/doc/0.0.3/head/String.html +0 -307
- data/doc/0.0.3/head/Time.html +0 -193
- data/doc/0.0.3/head/TimeDSL.html +0 -601
- data/doc/0.0.3/head/all-methods.html +0 -1908
- data/doc/0.0.3/head/all-namespaces.html +0 -114
- data/doc/0.0.3/head/app.js +0 -18
- data/doc/0.0.3/head/index.html +0 -18
- data/doc/0.0.3/head/jquery.js +0 -11
- data/doc/0.0.3/head/readme.html +0 -36
- data/doc/0.0.3/head/style.css +0 -68
- data/doc/0.0.3/head/syntax_highlight.css +0 -21
- data/doc/0.0.3/index.html +0 -18
- data/doc/0.0.3/jquery.js +0 -11
- data/doc/0.0.3/readme.html +0 -36
- data/doc/0.0.3/style.css +0 -68
- data/doc/0.0.3/syntax_highlight.css +0 -21
- data/doc/0.0.4/Array.html +0 -354
- data/doc/0.0.4/AttributeMixin.html +0 -697
- data/doc/0.0.4/Class.html +0 -102
- data/doc/0.0.4/ColoredString.html +0 -476
- data/doc/0.0.4/Enumerable.html +0 -256
- data/doc/0.0.4/File.html +0 -909
- data/doc/0.0.4/Hash.html +0 -1586
- data/doc/0.0.4/Kernel.html +0 -956
- data/doc/0.0.4/OS.html +0 -740
- data/doc/0.0.4/Object.html +0 -466
- data/doc/0.0.4/ObjectSpace.html +0 -184
- data/doc/0.0.4/Path.html +0 -2499
- data/doc/0.0.4/Range.html +0 -190
- data/doc/0.0.4/Rango.html +0 -379
- data/doc/0.0.4/Rango/ApplicationMixin.html +0 -396
- data/doc/0.0.4/Rango/Bundling.html +0 -23
- data/doc/0.0.4/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/0.0.4/Rango/Bundling/Strategy.html +0 -703
- data/doc/0.0.4/Rango/CLI.html +0 -23
- data/doc/0.0.4/Rango/CLI/Generator.html +0 -762
- data/doc/0.0.4/Rango/CLI/Templater.html +0 -258
- data/doc/0.0.4/Rango/CallableStrategy.html +0 -300
- data/doc/0.0.4/Rango/Chainable.html +0 -181
- data/doc/0.0.4/Rango/Configurable.html +0 -199
- data/doc/0.0.4/Rango/Controller.html +0 -962
- data/doc/0.0.4/Rango/ControllerMixin.html +0 -860
- data/doc/0.0.4/Rango/ControllerStrategy.html +0 -264
- data/doc/0.0.4/Rango/DependencyStrategy.html +0 -116
- data/doc/0.0.4/Rango/Dispatcher.html +0 -305
- data/doc/0.0.4/Rango/Form.html +0 -162
- data/doc/0.0.4/Rango/GemDependencyStrategy.html +0 -210
- data/doc/0.0.4/Rango/Generator.html +0 -93
- data/doc/0.0.4/Rango/GenericViews.html +0 -128
- data/doc/0.0.4/Rango/GitDependencyStrategy.html +0 -224
- data/doc/0.0.4/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/0.0.4/Rango/Handler.html +0 -474
- data/doc/0.0.4/Rango/Helpers.html +0 -1335
- data/doc/0.0.4/Rango/Hookable.html +0 -202
- data/doc/0.0.4/Rango/ImportMixin.html +0 -755
- data/doc/0.0.4/Rango/Logger.html +0 -920
- data/doc/0.0.4/Rango/Mini.html +0 -117
- data/doc/0.0.4/Rango/ModelForm.html +0 -42
- data/doc/0.0.4/Rango/Project.html +0 -516
- data/doc/0.0.4/Rango/RenderMixin.html +0 -23
- data/doc/0.0.4/Rango/Request.html +0 -1177
- data/doc/0.0.4/Rango/Route.html +0 -751
- data/doc/0.0.4/Rango/Router.html +0 -42
- data/doc/0.0.4/Rango/Router/Dispatcher.html +0 -311
- data/doc/0.0.4/Rango/RouterStrategy.html +0 -258
- data/doc/0.0.4/Rango/Session.html +0 -23
- data/doc/0.0.4/Rango/Settings.html +0 -23
- data/doc/0.0.4/Rango/Settings/Erubis.html +0 -23
- data/doc/0.0.4/Rango/Settings/Framework.html +0 -254
- data/doc/0.0.4/Rango/Settings/Haml.html +0 -23
- data/doc/0.0.4/Rango/Settings/Template.html +0 -23
- data/doc/0.0.4/Rango/SimpleTemplate.html +0 -187
- data/doc/0.0.4/Rango/StrategyMixin.html +0 -261
- data/doc/0.0.4/Rango/Tasks.html +0 -219
- data/doc/0.0.4/Rango/Template.html +0 -95
- data/doc/0.0.4/Rango/Template/Adapter.html +0 -90
- data/doc/0.0.4/Rango/Templates.html +0 -116
- data/doc/0.0.4/Rango/Templates/Adapter.html +0 -128
- data/doc/0.0.4/Rango/Templates/Template.html +0 -636
- data/doc/0.0.4/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/0.0.4/RangoThor.html +0 -205
- data/doc/0.0.4/String.html +0 -307
- data/doc/0.0.4/Time.html +0 -193
- data/doc/0.0.4/TimeDSL.html +0 -601
- data/doc/0.0.4/all-methods.html +0 -1908
- data/doc/0.0.4/all-namespaces.html +0 -114
- data/doc/0.0.4/app.js +0 -18
- data/doc/0.0.4/head/Array.html +0 -354
- data/doc/0.0.4/head/AttributeMixin.html +0 -697
- data/doc/0.0.4/head/Class.html +0 -102
- data/doc/0.0.4/head/ColoredString.html +0 -476
- data/doc/0.0.4/head/Enumerable.html +0 -256
- data/doc/0.0.4/head/File.html +0 -909
- data/doc/0.0.4/head/Hash.html +0 -1586
- data/doc/0.0.4/head/Kernel.html +0 -956
- data/doc/0.0.4/head/OS.html +0 -740
- data/doc/0.0.4/head/Object.html +0 -466
- data/doc/0.0.4/head/ObjectSpace.html +0 -184
- data/doc/0.0.4/head/Path.html +0 -2499
- data/doc/0.0.4/head/Range.html +0 -190
- data/doc/0.0.4/head/Rango.html +0 -379
- data/doc/0.0.4/head/Rango/ApplicationMixin.html +0 -396
- data/doc/0.0.4/head/Rango/Bundling.html +0 -23
- data/doc/0.0.4/head/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/0.0.4/head/Rango/Bundling/Strategy.html +0 -703
- data/doc/0.0.4/head/Rango/CLI.html +0 -23
- data/doc/0.0.4/head/Rango/CLI/Generator.html +0 -762
- data/doc/0.0.4/head/Rango/CLI/Templater.html +0 -258
- data/doc/0.0.4/head/Rango/CallableStrategy.html +0 -300
- data/doc/0.0.4/head/Rango/Chainable.html +0 -181
- data/doc/0.0.4/head/Rango/Configurable.html +0 -199
- data/doc/0.0.4/head/Rango/Controller.html +0 -962
- data/doc/0.0.4/head/Rango/ControllerMixin.html +0 -860
- data/doc/0.0.4/head/Rango/ControllerStrategy.html +0 -264
- data/doc/0.0.4/head/Rango/DependencyStrategy.html +0 -116
- data/doc/0.0.4/head/Rango/Dispatcher.html +0 -305
- data/doc/0.0.4/head/Rango/Form.html +0 -162
- data/doc/0.0.4/head/Rango/GemDependencyStrategy.html +0 -210
- data/doc/0.0.4/head/Rango/Generator.html +0 -93
- data/doc/0.0.4/head/Rango/GenericViews.html +0 -128
- data/doc/0.0.4/head/Rango/GitDependencyStrategy.html +0 -224
- data/doc/0.0.4/head/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/0.0.4/head/Rango/Handler.html +0 -474
- data/doc/0.0.4/head/Rango/Helpers.html +0 -1335
- data/doc/0.0.4/head/Rango/Hookable.html +0 -202
- data/doc/0.0.4/head/Rango/ImportMixin.html +0 -755
- data/doc/0.0.4/head/Rango/Logger.html +0 -920
- data/doc/0.0.4/head/Rango/Mini.html +0 -117
- data/doc/0.0.4/head/Rango/ModelForm.html +0 -42
- data/doc/0.0.4/head/Rango/Project.html +0 -516
- data/doc/0.0.4/head/Rango/RenderMixin.html +0 -23
- data/doc/0.0.4/head/Rango/Request.html +0 -1177
- data/doc/0.0.4/head/Rango/Route.html +0 -751
- data/doc/0.0.4/head/Rango/Router.html +0 -42
- data/doc/0.0.4/head/Rango/Router/Dispatcher.html +0 -311
- data/doc/0.0.4/head/Rango/RouterStrategy.html +0 -258
- data/doc/0.0.4/head/Rango/Session.html +0 -23
- data/doc/0.0.4/head/Rango/Settings.html +0 -23
- data/doc/0.0.4/head/Rango/Settings/Erubis.html +0 -23
- data/doc/0.0.4/head/Rango/Settings/Framework.html +0 -254
- data/doc/0.0.4/head/Rango/Settings/Haml.html +0 -23
- data/doc/0.0.4/head/Rango/Settings/Template.html +0 -23
- data/doc/0.0.4/head/Rango/SimpleTemplate.html +0 -187
- data/doc/0.0.4/head/Rango/StrategyMixin.html +0 -261
- data/doc/0.0.4/head/Rango/Tasks.html +0 -219
- data/doc/0.0.4/head/Rango/Template.html +0 -95
- data/doc/0.0.4/head/Rango/Template/Adapter.html +0 -90
- data/doc/0.0.4/head/Rango/Templates.html +0 -116
- data/doc/0.0.4/head/Rango/Templates/Adapter.html +0 -128
- data/doc/0.0.4/head/Rango/Templates/Template.html +0 -636
- data/doc/0.0.4/head/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/0.0.4/head/RangoThor.html +0 -205
- data/doc/0.0.4/head/String.html +0 -307
- data/doc/0.0.4/head/Time.html +0 -193
- data/doc/0.0.4/head/TimeDSL.html +0 -601
- data/doc/0.0.4/head/all-methods.html +0 -1908
- data/doc/0.0.4/head/all-namespaces.html +0 -114
- data/doc/0.0.4/head/app.js +0 -18
- data/doc/0.0.4/head/index.html +0 -18
- data/doc/0.0.4/head/jquery.js +0 -11
- data/doc/0.0.4/head/readme.html +0 -36
- data/doc/0.0.4/head/style.css +0 -68
- data/doc/0.0.4/head/syntax_highlight.css +0 -21
- data/doc/0.0.4/index.html +0 -18
- data/doc/0.0.4/jquery.js +0 -11
- data/doc/0.0.4/readme.html +0 -36
- data/doc/0.0.4/style.css +0 -68
- data/doc/0.0.4/syntax_highlight.css +0 -21
- data/doc/0.0.5/Array.html +0 -354
- data/doc/0.0.5/AttributeMixin.html +0 -697
- data/doc/0.0.5/Class.html +0 -102
- data/doc/0.0.5/ColoredString.html +0 -476
- data/doc/0.0.5/Enumerable.html +0 -256
- data/doc/0.0.5/File.html +0 -909
- data/doc/0.0.5/Hash.html +0 -1586
- data/doc/0.0.5/Kernel.html +0 -956
- data/doc/0.0.5/OS.html +0 -740
- data/doc/0.0.5/Object.html +0 -466
- data/doc/0.0.5/ObjectSpace.html +0 -184
- data/doc/0.0.5/Path.html +0 -2499
- data/doc/0.0.5/Range.html +0 -190
- data/doc/0.0.5/Rango.html +0 -379
- data/doc/0.0.5/Rango/ApplicationMixin.html +0 -396
- data/doc/0.0.5/Rango/Bundling.html +0 -23
- data/doc/0.0.5/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/0.0.5/Rango/Bundling/Strategy.html +0 -703
- data/doc/0.0.5/Rango/CLI.html +0 -23
- data/doc/0.0.5/Rango/CLI/Generator.html +0 -762
- data/doc/0.0.5/Rango/CLI/Templater.html +0 -258
- data/doc/0.0.5/Rango/CallableStrategy.html +0 -300
- data/doc/0.0.5/Rango/Chainable.html +0 -181
- data/doc/0.0.5/Rango/Configurable.html +0 -199
- data/doc/0.0.5/Rango/Controller.html +0 -962
- data/doc/0.0.5/Rango/ControllerMixin.html +0 -860
- data/doc/0.0.5/Rango/ControllerStrategy.html +0 -264
- data/doc/0.0.5/Rango/DependencyStrategy.html +0 -116
- data/doc/0.0.5/Rango/Dispatcher.html +0 -305
- data/doc/0.0.5/Rango/Form.html +0 -162
- data/doc/0.0.5/Rango/GemDependencyStrategy.html +0 -210
- data/doc/0.0.5/Rango/Generator.html +0 -93
- data/doc/0.0.5/Rango/GenericViews.html +0 -128
- data/doc/0.0.5/Rango/GitDependencyStrategy.html +0 -224
- data/doc/0.0.5/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/0.0.5/Rango/Handler.html +0 -474
- data/doc/0.0.5/Rango/Helpers.html +0 -1335
- data/doc/0.0.5/Rango/Hookable.html +0 -202
- data/doc/0.0.5/Rango/ImportMixin.html +0 -755
- data/doc/0.0.5/Rango/Logger.html +0 -920
- data/doc/0.0.5/Rango/Mini.html +0 -117
- data/doc/0.0.5/Rango/ModelForm.html +0 -42
- data/doc/0.0.5/Rango/Project.html +0 -516
- data/doc/0.0.5/Rango/RenderMixin.html +0 -23
- data/doc/0.0.5/Rango/Request.html +0 -1177
- data/doc/0.0.5/Rango/Route.html +0 -751
- data/doc/0.0.5/Rango/Router.html +0 -42
- data/doc/0.0.5/Rango/Router/Dispatcher.html +0 -311
- data/doc/0.0.5/Rango/RouterStrategy.html +0 -258
- data/doc/0.0.5/Rango/Session.html +0 -23
- data/doc/0.0.5/Rango/Settings.html +0 -23
- data/doc/0.0.5/Rango/Settings/Erubis.html +0 -23
- data/doc/0.0.5/Rango/Settings/Framework.html +0 -254
- data/doc/0.0.5/Rango/Settings/Haml.html +0 -23
- data/doc/0.0.5/Rango/Settings/Template.html +0 -23
- data/doc/0.0.5/Rango/SimpleTemplate.html +0 -187
- data/doc/0.0.5/Rango/StrategyMixin.html +0 -261
- data/doc/0.0.5/Rango/Tasks.html +0 -219
- data/doc/0.0.5/Rango/Template.html +0 -95
- data/doc/0.0.5/Rango/Template/Adapter.html +0 -90
- data/doc/0.0.5/Rango/Templates.html +0 -116
- data/doc/0.0.5/Rango/Templates/Adapter.html +0 -128
- data/doc/0.0.5/Rango/Templates/Template.html +0 -636
- data/doc/0.0.5/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/0.0.5/RangoThor.html +0 -205
- data/doc/0.0.5/String.html +0 -307
- data/doc/0.0.5/Time.html +0 -193
- data/doc/0.0.5/TimeDSL.html +0 -601
- data/doc/0.0.5/all-methods.html +0 -2092
- data/doc/0.0.5/all-namespaces.html +0 -126
- data/doc/0.0.5/app.js +0 -18
- data/doc/0.0.5/index.html +0 -18
- data/doc/0.0.5/jquery.js +0 -11
- data/doc/0.0.5/readme.html +0 -36
- data/doc/0.0.5/style.css +0 -68
- data/doc/0.0.5/syntax_highlight.css +0 -21
- data/doc/head/Array.html +0 -354
- data/doc/head/AttributeMixin.html +0 -697
- data/doc/head/Class.html +0 -102
- data/doc/head/ColoredString.html +0 -476
- data/doc/head/Enumerable.html +0 -256
- data/doc/head/File.html +0 -909
- data/doc/head/Hash.html +0 -1586
- data/doc/head/Kernel.html +0 -956
- data/doc/head/OS.html +0 -740
- data/doc/head/Object.html +0 -466
- data/doc/head/ObjectSpace.html +0 -184
- data/doc/head/Path.html +0 -2499
- data/doc/head/Range.html +0 -190
- data/doc/head/Rango.html +0 -379
- data/doc/head/Rango/ApplicationMixin.html +0 -396
- data/doc/head/Rango/Bundling.html +0 -23
- data/doc/head/Rango/Bundling/RequireStrategy.html +0 -283
- data/doc/head/Rango/Bundling/Strategy.html +0 -703
- data/doc/head/Rango/CLI.html +0 -23
- data/doc/head/Rango/CLI/Generator.html +0 -762
- data/doc/head/Rango/CLI/Templater.html +0 -258
- data/doc/head/Rango/CallableStrategy.html +0 -300
- data/doc/head/Rango/Chainable.html +0 -181
- data/doc/head/Rango/Configurable.html +0 -199
- data/doc/head/Rango/Controller.html +0 -962
- data/doc/head/Rango/ControllerMixin.html +0 -860
- data/doc/head/Rango/ControllerStrategy.html +0 -264
- data/doc/head/Rango/DependencyStrategy.html +0 -116
- data/doc/head/Rango/Dispatcher.html +0 -305
- data/doc/head/Rango/Form.html +0 -162
- data/doc/head/Rango/GemDependencyStrategy.html +0 -210
- data/doc/head/Rango/Generator.html +0 -93
- data/doc/head/Rango/GenericViews.html +0 -128
- data/doc/head/Rango/GitDependencyStrategy.html +0 -224
- data/doc/head/Rango/GithubDependencyStrategy.html +0 -118
- data/doc/head/Rango/Handler.html +0 -474
- data/doc/head/Rango/Helpers.html +0 -1335
- data/doc/head/Rango/Hookable.html +0 -202
- data/doc/head/Rango/ImportMixin.html +0 -755
- data/doc/head/Rango/Logger.html +0 -920
- data/doc/head/Rango/Mini.html +0 -117
- data/doc/head/Rango/ModelForm.html +0 -42
- data/doc/head/Rango/Project.html +0 -516
- data/doc/head/Rango/RenderMixin.html +0 -23
- data/doc/head/Rango/Request.html +0 -1177
- data/doc/head/Rango/Route.html +0 -751
- data/doc/head/Rango/Router.html +0 -42
- data/doc/head/Rango/Router/Dispatcher.html +0 -311
- data/doc/head/Rango/RouterStrategy.html +0 -258
- data/doc/head/Rango/Session.html +0 -23
- data/doc/head/Rango/Settings.html +0 -23
- data/doc/head/Rango/Settings/Erubis.html +0 -23
- data/doc/head/Rango/Settings/Framework.html +0 -254
- data/doc/head/Rango/Settings/Haml.html +0 -23
- data/doc/head/Rango/Settings/Template.html +0 -23
- data/doc/head/Rango/SimpleTemplate.html +0 -187
- data/doc/head/Rango/StrategyMixin.html +0 -261
- data/doc/head/Rango/Tasks.html +0 -219
- data/doc/head/Rango/Template.html +0 -95
- data/doc/head/Rango/Template/Adapter.html +0 -90
- data/doc/head/Rango/Templates.html +0 -116
- data/doc/head/Rango/Templates/Adapter.html +0 -128
- data/doc/head/Rango/Templates/Template.html +0 -636
- data/doc/head/Rango/Templates/TemplateHelpers.html +0 -328
- data/doc/head/RangoThor.html +0 -205
- data/doc/head/String.html +0 -307
- data/doc/head/Time.html +0 -193
- data/doc/head/TimeDSL.html +0 -601
- data/doc/head/all-methods.html +0 -2092
- data/doc/head/all-namespaces.html +0 -126
- data/doc/head/app.js +0 -18
- data/doc/head/index.html +0 -18
- data/doc/head/jquery.js +0 -11
- data/doc/head/readme.html +0 -36
- data/doc/head/style.css +0 -68
- data/doc/head/syntax_highlight.css +0 -21
- data/doc/versions/0.0.1/Rango.html +0 -1025
- data/doc/versions/0.0.1/Rango/CallableStrategy.html +0 -166
- data/doc/versions/0.0.1/Rango/ControllerStrategy.html +0 -180
- data/doc/versions/0.0.1/Rango/Route.html +0 -340
- data/doc/versions/0.0.1/Rango/Router.html +0 -502
- data/doc/versions/0.0.1/Rango/RouterStrategy.html +0 -94
- data/doc/versions/0.0.1/Rango/Template.html +0 -28
- data/doc/versions/0.0.1/Rango/Template/Adapter.html +0 -90
- data/doc/versions/0.0.1/all-methods.html +0 -228
- data/doc/versions/0.0.1/all-namespaces.html +0 -36
- data/doc/versions/0.0.1/app.js +0 -18
- data/doc/versions/0.0.1/index.html +0 -18
- data/doc/versions/0.0.1/jquery.js +0 -11
- data/doc/versions/0.0.1/readme.html +0 -137
- data/doc/versions/0.0.1/style.css +0 -68
- data/doc/versions/0.0.1/syntax_highlight.css +0 -21
- data/examples/TODO +0 -0
- data/examples/flat/basic.ru +0 -31
- data/examples/flat/generic_views.ru +0 -16
- data/examples/flat/info.ru +0 -18
- data/examples/flat/simple_controller.ru +0 -1
- data/examples/flat/templates/about/author.html.haml +0 -1
- data/examples/flat/templates/about/contact.html.haml +0 -0
- data/examples/flat/templates/base.html.haml +0 -0
- data/examples/flat/templates/info.html.haml +0 -25
- data/examples/twitter/Thorfile +0 -12
- data/examples/twitter/config.ru +0 -48
- data/examples/twitter/development.db +0 -0
- data/examples/twitter/factories.rb +0 -19
- data/examples/twitter/init.rb +0 -15
- data/examples/twitter/media/hello-static.txt +0 -0
- data/examples/twitter/models.rb +0 -13
- data/examples/twitter/run.rb +0 -8
- data/examples/twitter/settings.rb +0 -5
- data/examples/twitter/templates/base.html.haml +0 -9
- data/examples/twitter/templates/index.html.haml +0 -4
- data/examples/twitter/templates/show.html.haml +0 -4
- data/examples/twitter/templates/timeline.html.haml +0 -10
- data/examples/twitter/views.rb +0 -40
- data/lib/rango/orm/tasks/datamapper.thor +0 -41
- data/lib/rango/orm/tasks/sequel.thor +0 -0
- data/rango-0.0.6.pre.gem +0 -0
- data/rango.gemspec +0 -48
- data/rango.pre.gemspec +0 -48
- data/runcoderun.sh +0 -19
- data/script/erubis +0 -11
- data/script/rackup +0 -2
- data/script/rake2thor +0 -86
- data/script/spec +0 -12
- data/script/thor +0 -12
- data/stubs/project/content/Rakefile +0 -9
- data/support/Rango.tmbundle/Commands/Documentation for current word.tmCommand +0 -22
- data/support/Rango.tmbundle/Commands/Got to import.tmCommand +0 -23
- data/support/Rango.tmbundle/Commands/Rango console.tmCommand +0 -22
- data/support/Rango.tmbundle/Commands/Rango server.tmCommand +0 -22
- data/support/Rango.tmbundle/Commands/Read documentation.tmCommand +0 -22
- data/support/Rango.tmbundle/Snippets/Method with yardoc.tmSnippet +0 -20
- data/support/Rango.tmbundle/Snippets/Project_configure.tmSnippet +0 -18
- data/support/Rango.tmbundle/Snippets/Project_import.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Project_logger_debug.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Project_logger_error.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Project_logger_fatal.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Project_logger_inspect.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Project_logger_warn.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_dependency.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_import.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_logger_debug.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_logger_error.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_logger_fatal.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_logger_inspect.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/Rango_logger_warn.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/controller.tmSnippet +0 -28
- data/support/Rango.tmbundle/Snippets/doc.tmSnippet +0 -20
- data/support/Rango.tmbundle/Snippets/match.tmSnippet +0 -16
- data/support/Rango.tmbundle/Snippets/thor task.tmSnippet +0 -19
- data/support/Rango.tmbundle/info.plist +0 -37
- data/support/hooks/commit-msg +0 -13
- data/support/hooks/post-commit +0 -4
- data/support/hooks/pre-commit +0 -4
- data/support/hooks/pre-rebase +0 -169
- data/support/hooks/prepare-commit-msg +0 -36
- data/tasks/benchmark.thor +0 -15
- data/tasks/hooks.thor +0 -26
- data/tasks/package.thor +0 -31
- data/tasks/prerelease.thor +0 -34
- data/tasks/release.thor +0 -85
- data/tasks/repair.thor +0 -64
- data/tasks/spec.thor +0 -41
- data/tasks/stats.thor +0 -82
- data/tasks/system.thor +0 -158
- data/tasks/yardoc.thor +0 -16
- data/vendor/abstract/ChangeLog +0 -3
- data/vendor/abstract/README.txt +0 -57
- data/vendor/abstract/abstract.gemspec +0 -48
- data/vendor/abstract/doc/classes/Kernel.html +0 -134
- data/vendor/abstract/doc/classes/Kernel.src/M000002.html +0 -24
- data/vendor/abstract/doc/classes/Module.html +0 -140
- data/vendor/abstract/doc/classes/Module.src/M000001.html +0 -20
- data/vendor/abstract/doc/created.rid +0 -1
- data/vendor/abstract/doc/files/README_txt.html +0 -173
- data/vendor/abstract/doc/files/lib/abstract_rb.html +0 -137
- data/vendor/abstract/doc/fr_class_index.html +0 -28
- data/vendor/abstract/doc/fr_file_index.html +0 -28
- data/vendor/abstract/doc/fr_method_index.html +0 -28
- data/vendor/abstract/doc/index.html +0 -24
- data/vendor/abstract/doc/rdoc-style.css +0 -208
- data/vendor/abstract/lib/abstract.rb +0 -75
- data/vendor/abstract/setup.rb +0 -1331
- data/vendor/abstract/test/test.rb +0 -91
- data/vendor/cli/CHANGELOG +0 -2
- data/vendor/cli/LICENSE +0 -20
- data/vendor/cli/README.textile +0 -0
- data/vendor/cli/Rakefile +0 -61
- data/vendor/cli/cli.gemspec +0 -42
- data/vendor/cli/deps.rip +0 -5
- data/vendor/cli/lib/cli.rb +0 -33
- data/vendor/cli/script/spec +0 -12
- data/vendor/cli/spec/cli_spec.rb +0 -56
- data/vendor/cli/spec/spec_helper.rb +0 -18
- data/vendor/erubis/CHANGES.txt +0 -717
- data/vendor/erubis/MIT-LICENSE +0 -20
- data/vendor/erubis/README.txt +0 -102
- data/vendor/erubis/benchmark/Makefile +0 -6
- data/vendor/erubis/benchmark/bench.rb +0 -314
- data/vendor/erubis/benchmark/bench_context.yaml +0 -141
- data/vendor/erubis/benchmark/templates/_footer.html +0 -4
- data/vendor/erubis/benchmark/templates/_header.html +0 -52
- data/vendor/erubis/benchmark/templates/bench_erb.rhtml +0 -29
- data/vendor/erubis/benchmark/templates/bench_erubis.rhtml +0 -29
- data/vendor/erubis/benchmark/templates/bench_eruby.rhtml +0 -29
- data/vendor/erubis/bin/erubis +0 -11
- data/vendor/erubis/contrib/erubis +0 -11
- data/vendor/erubis/contrib/erubis-run.rb +0 -132
- data/vendor/erubis/contrib/inline-require +0 -153
- data/vendor/erubis/doc-api/classes/ActionView.html +0 -105
- data/vendor/erubis/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +0 -181
- data/vendor/erubis/doc-api/classes/ERB.html +0 -101
- data/vendor/erubis/doc-api/classes/Erubis.html +0 -353
- data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEnhancer.html +0 -175
- data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/ArrayEnhancer.html +0 -174
- data/vendor/erubis/doc-api/classes/Erubis/ArrayEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/Basic.html +0 -112
- data/vendor/erubis/doc-api/classes/Erubis/Basic/Converter.html +0 -327
- data/vendor/erubis/doc-api/classes/Erubis/Basic/Engine.html +0 -130
- data/vendor/erubis/doc-api/classes/Erubis/BiPatternEnhancer.html +0 -215
- data/vendor/erubis/doc-api/classes/Erubis/BiPatternEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/CGenerator.html +0 -386
- data/vendor/erubis/doc-api/classes/Erubis/CommandOptionError.html +0 -113
- data/vendor/erubis/doc-api/classes/Erubis/Context.html +0 -344
- data/vendor/erubis/doc-api/classes/Erubis/Converter.html +0 -283
- data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEnhancer.html +0 -150
- data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/Ec.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/Ejava.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/Ejavascript.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/Engine.html +0 -305
- data/vendor/erubis/doc-api/classes/Erubis/Eperl.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/Ephp.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/ErboutEnhancer.html +0 -175
- data/vendor/erubis/doc-api/classes/Erubis/ErboutEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/ErubisError.html +0 -117
- data/vendor/erubis/doc-api/classes/Erubis/Eruby.html +0 -132
- data/vendor/erubis/doc-api/classes/Erubis/EscapeEnhancer.html +0 -165
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEc.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEjava.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEjavascript.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEperl.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEphp.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEruby.html +0 -127
- data/vendor/erubis/doc-api/classes/Erubis/EscapedEscheme.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/Escheme.html +0 -126
- data/vendor/erubis/doc-api/classes/Erubis/Evaluator.html +0 -212
- data/vendor/erubis/doc-api/classes/Erubis/FastEruby.html +0 -131
- data/vendor/erubis/doc-api/classes/Erubis/Generator.html +0 -416
- data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEnhancer.html +0 -267
- data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/Helpers.html +0 -116
- data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +0 -787
- data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper.html +0 -349
- data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +0 -164
- data/vendor/erubis/doc-api/classes/Erubis/InterpolationEnhancer.html +0 -306
- data/vendor/erubis/doc-api/classes/Erubis/InterpolationEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/JavaGenerator.html +0 -359
- data/vendor/erubis/doc-api/classes/Erubis/JavascriptGenerator.html +0 -386
- data/vendor/erubis/doc-api/classes/Erubis/Main.html +0 -340
- data/vendor/erubis/doc-api/classes/Erubis/NoCodeEnhancer.html +0 -249
- data/vendor/erubis/doc-api/classes/Erubis/NoCodeEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/NoTextEnhancer.html +0 -159
- data/vendor/erubis/doc-api/classes/Erubis/NoTextEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/NotSupportedError.html +0 -119
- data/vendor/erubis/doc-api/classes/Erubis/OptimizedEruby.html +0 -163
- data/vendor/erubis/doc-api/classes/Erubis/OptimizedGenerator.html +0 -439
- data/vendor/erubis/doc-api/classes/Erubis/OptimizedXmlEruby.html +0 -163
- data/vendor/erubis/doc-api/classes/Erubis/PI.html +0 -124
- data/vendor/erubis/doc-api/classes/Erubis/PI/Converter.html +0 -266
- data/vendor/erubis/doc-api/classes/Erubis/PI/Ec.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/Ejava.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/Ejavascript.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/Engine.html +0 -122
- data/vendor/erubis/doc-api/classes/Erubis/PI/Eperl.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/Ephp.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/Eruby.html +0 -155
- data/vendor/erubis/doc-api/classes/Erubis/PI/Escheme.html +0 -166
- data/vendor/erubis/doc-api/classes/Erubis/PI/TinyEruby.html +0 -293
- data/vendor/erubis/doc-api/classes/Erubis/PercentLineEnhancer.html +0 -179
- data/vendor/erubis/doc-api/classes/Erubis/PercentLineEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/PerlGenerator.html +0 -344
- data/vendor/erubis/doc-api/classes/Erubis/PhpGenerator.html +0 -350
- data/vendor/erubis/doc-api/classes/Erubis/PreprocessingEruby.html +0 -183
- data/vendor/erubis/doc-api/classes/Erubis/PreprocessingHelper.html +0 -212
- data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEnhancer.html +0 -212
- data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/PrintOutEnhancer.html +0 -244
- data/vendor/erubis/doc-api/classes/Erubis/PrintOutEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +0 -121
- data/vendor/erubis/doc-api/classes/Erubis/RubyEvaluator.html +0 -227
- data/vendor/erubis/doc-api/classes/Erubis/RubyGenerator.html +0 -327
- data/vendor/erubis/doc-api/classes/Erubis/SchemeGenerator.html +0 -382
- data/vendor/erubis/doc-api/classes/Erubis/SimplifiedEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/SimplifyEnhancer.html +0 -191
- data/vendor/erubis/doc-api/classes/Erubis/StdoutEnhancer.html +0 -173
- data/vendor/erubis/doc-api/classes/Erubis/StdoutEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +0 -121
- data/vendor/erubis/doc-api/classes/Erubis/StringBufferEnhancer.html +0 -174
- data/vendor/erubis/doc-api/classes/Erubis/StringBufferEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/StringIOEruby.html +0 -120
- data/vendor/erubis/doc-api/classes/Erubis/TinyEruby.html +0 -299
- data/vendor/erubis/doc-api/classes/Erubis/XmlEruby.html +0 -130
- data/vendor/erubis/doc-api/classes/Erubis/XmlHelper.html +0 -255
- data/vendor/erubis/doc-api/created.rid +0 -1
- data/vendor/erubis/doc-api/files/README_txt.html +0 -247
- data/vendor/erubis/doc-api/files/erubis/context_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/converter_rb.html +0 -114
- data/vendor/erubis/doc-api/files/erubis/engine/ec_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/ejava_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/ejavascript_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/enhanced_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/eperl_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/ephp_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/eruby_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/escheme_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/engine/optimized_rb.html +0 -114
- data/vendor/erubis/doc-api/files/erubis/engine_rb.html +0 -117
- data/vendor/erubis/doc-api/files/erubis/enhancer_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/error_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/evaluator_rb.html +0 -115
- data/vendor/erubis/doc-api/files/erubis/generator_rb.html +0 -114
- data/vendor/erubis/doc-api/files/erubis/helper_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/helpers/rails_form_helper_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/helpers/rails_helper_rb.html +0 -116
- data/vendor/erubis/doc-api/files/erubis/local-setting_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis/main_rb.html +0 -127
- data/vendor/erubis/doc-api/files/erubis/preprocessing_rb.html +0 -114
- data/vendor/erubis/doc-api/files/erubis/tiny_rb.html +0 -107
- data/vendor/erubis/doc-api/files/erubis_rb.html +0 -118
- data/vendor/erubis/doc-api/fr_class_index.html +0 -122
- data/vendor/erubis/doc-api/fr_file_index.html +0 -51
- data/vendor/erubis/doc-api/fr_method_index.html +0 -248
- data/vendor/erubis/doc-api/index.html +0 -24
- data/vendor/erubis/doc-api/rdoc-style.css +0 -208
- data/vendor/erubis/doc/docstyle.css +0 -188
- data/vendor/erubis/doc/users-guide.html +0 -3285
- data/vendor/erubis/erubis.gemspec +0 -66
- data/vendor/erubis/examples/basic/Makefile +0 -53
- data/vendor/erubis/examples/basic/example.ec +0 -42
- data/vendor/erubis/examples/basic/example.ejava +0 -45
- data/vendor/erubis/examples/basic/example.ejs +0 -16
- data/vendor/erubis/examples/basic/example.eperl +0 -16
- data/vendor/erubis/examples/basic/example.ephp +0 -17
- data/vendor/erubis/examples/basic/example.eruby +0 -15
- data/vendor/erubis/examples/basic/example.escheme +0 -26
- data/vendor/erubis/examples/pi/Makefile +0 -54
- data/vendor/erubis/examples/pi/example.ec +0 -42
- data/vendor/erubis/examples/pi/example.ejava +0 -45
- data/vendor/erubis/examples/pi/example.ejs +0 -16
- data/vendor/erubis/examples/pi/example.eperl +0 -16
- data/vendor/erubis/examples/pi/example.ephp +0 -17
- data/vendor/erubis/examples/pi/example.eruby +0 -15
- data/vendor/erubis/examples/pi/example.escheme +0 -26
- data/vendor/erubis/lib/erubis.rb +0 -73
- data/vendor/erubis/lib/erubis/context.rb +0 -84
- data/vendor/erubis/lib/erubis/converter.rb +0 -358
- data/vendor/erubis/lib/erubis/engine.rb +0 -121
- data/vendor/erubis/lib/erubis/engine/ec.rb +0 -118
- data/vendor/erubis/lib/erubis/engine/ejava.rb +0 -111
- data/vendor/erubis/lib/erubis/engine/ejavascript.rb +0 -120
- data/vendor/erubis/lib/erubis/engine/enhanced.rb +0 -122
- data/vendor/erubis/lib/erubis/engine/eperl.rb +0 -96
- data/vendor/erubis/lib/erubis/engine/ephp.rb +0 -100
- data/vendor/erubis/lib/erubis/engine/eruby.rb +0 -125
- data/vendor/erubis/lib/erubis/engine/escheme.rb +0 -115
- data/vendor/erubis/lib/erubis/engine/optimized.rb +0 -128
- data/vendor/erubis/lib/erubis/enhancer.rb +0 -681
- data/vendor/erubis/lib/erubis/error.rb +0 -24
- data/vendor/erubis/lib/erubis/evaluator.rb +0 -89
- data/vendor/erubis/lib/erubis/generator.rb +0 -86
- data/vendor/erubis/lib/erubis/helper.rb +0 -48
- data/vendor/erubis/lib/erubis/helpers/rails_form_helper.rb +0 -198
- data/vendor/erubis/lib/erubis/helpers/rails_helper.rb +0 -325
- data/vendor/erubis/lib/erubis/local-setting.rb +0 -10
- data/vendor/erubis/lib/erubis/main.rb +0 -491
- data/vendor/erubis/lib/erubis/preprocessing.rb +0 -59
- data/vendor/erubis/lib/erubis/tiny.rb +0 -146
- data/vendor/erubis/setup.rb +0 -1331
- data/vendor/erubis/test/assert-text-equal.rb +0 -45
- data/vendor/erubis/test/assert-text-equal.rbc +0 -0
- data/vendor/erubis/test/data/users-guide/Example.ejava +0 -55
- data/vendor/erubis/test/data/users-guide/array_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/arraybuffer_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/bipattern-example.rhtml +0 -4
- data/vendor/erubis/test/data/users-guide/bipattern_example.result +0 -6
- data/vendor/erubis/test/data/users-guide/context.rb +0 -6
- data/vendor/erubis/test/data/users-guide/context.yaml +0 -8
- data/vendor/erubis/test/data/users-guide/def_method.rb +0 -14
- data/vendor/erubis/test/data/users-guide/def_method.result +0 -3
- data/vendor/erubis/test/data/users-guide/escape_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/example.ec +0 -27
- data/vendor/erubis/test/data/users-guide/example.ejs +0 -20
- data/vendor/erubis/test/data/users-guide/example.eperl +0 -18
- data/vendor/erubis/test/data/users-guide/example.ephp +0 -18
- data/vendor/erubis/test/data/users-guide/example.eruby +0 -6
- data/vendor/erubis/test/data/users-guide/example.escheme +0 -28
- data/vendor/erubis/test/data/users-guide/example1.eruby +0 -6
- data/vendor/erubis/test/data/users-guide/example1.rb +0 -17
- data/vendor/erubis/test/data/users-guide/example1.result +0 -16
- data/vendor/erubis/test/data/users-guide/example10.rb +0 -4
- data/vendor/erubis/test/data/users-guide/example10.result +0 -17
- data/vendor/erubis/test/data/users-guide/example10.xhtml +0 -14
- data/vendor/erubis/test/data/users-guide/example10_x.result +0 -17
- data/vendor/erubis/test/data/users-guide/example11.php +0 -20
- data/vendor/erubis/test/data/users-guide/example11.result +0 -23
- data/vendor/erubis/test/data/users-guide/example11.rhtml +0 -21
- data/vendor/erubis/test/data/users-guide/example11_C.result +0 -10
- data/vendor/erubis/test/data/users-guide/example11_N.result +0 -16
- data/vendor/erubis/test/data/users-guide/example11_U.result +0 -16
- data/vendor/erubis/test/data/users-guide/example11_php.result +0 -15
- data/vendor/erubis/test/data/users-guide/example1_x.result +0 -9
- data/vendor/erubis/test/data/users-guide/example2.eruby +0 -7
- data/vendor/erubis/test/data/users-guide/example2.rb +0 -10
- data/vendor/erubis/test/data/users-guide/example2.result +0 -27
- data/vendor/erubis/test/data/users-guide/example2_trim.result +0 -10
- data/vendor/erubis/test/data/users-guide/example2_x.result +0 -10
- data/vendor/erubis/test/data/users-guide/example3.eruby +0 -6
- data/vendor/erubis/test/data/users-guide/example3.rb +0 -10
- data/vendor/erubis/test/data/users-guide/example31.result +0 -22
- data/vendor/erubis/test/data/users-guide/example32.result +0 -4
- data/vendor/erubis/test/data/users-guide/example3_e.result +0 -8
- data/vendor/erubis/test/data/users-guide/example4.eruby +0 -3
- data/vendor/erubis/test/data/users-guide/example4.rb +0 -11
- data/vendor/erubis/test/data/users-guide/example4.result +0 -10
- data/vendor/erubis/test/data/users-guide/example4_x.result +0 -5
- data/vendor/erubis/test/data/users-guide/example5.eruby +0 -6
- data/vendor/erubis/test/data/users-guide/example5.rb +0 -16
- data/vendor/erubis/test/data/users-guide/example5.result +0 -7
- data/vendor/erubis/test/data/users-guide/example6.rb +0 -12
- data/vendor/erubis/test/data/users-guide/example6.result +0 -7
- data/vendor/erubis/test/data/users-guide/example7.eruby +0 -8
- data/vendor/erubis/test/data/users-guide/example71.result +0 -13
- data/vendor/erubis/test/data/users-guide/example72.result +0 -13
- data/vendor/erubis/test/data/users-guide/example8.eruby +0 -6
- data/vendor/erubis/test/data/users-guide/example8_ruby.result +0 -7
- data/vendor/erubis/test/data/users-guide/example8_yaml.result +0 -7
- data/vendor/erubis/test/data/users-guide/example9.eruby +0 -3
- data/vendor/erubis/test/data/users-guide/example9.rb +0 -8
- data/vendor/erubis/test/data/users-guide/example9.result +0 -9
- data/vendor/erubis/test/data/users-guide/example91.result +0 -5
- data/vendor/erubis/test/data/users-guide/example92.result +0 -4
- data/vendor/erubis/test/data/users-guide/example_c.result +0 -29
- data/vendor/erubis/test/data/users-guide/example_java.result +0 -56
- data/vendor/erubis/test/data/users-guide/example_js.result +0 -22
- data/vendor/erubis/test/data/users-guide/example_perl.result +0 -20
- data/vendor/erubis/test/data/users-guide/example_php.result +0 -19
- data/vendor/erubis/test/data/users-guide/example_scheme.result +0 -30
- data/vendor/erubis/test/data/users-guide/example_scheme_display.result +0 -29
- data/vendor/erubis/test/data/users-guide/fasteruby.rb +0 -11
- data/vendor/erubis/test/data/users-guide/fasteruby.result +0 -38
- data/vendor/erubis/test/data/users-guide/fasteruby.rhtml +0 -15
- data/vendor/erubis/test/data/users-guide/headerfooter-example.eruby +0 -9
- data/vendor/erubis/test/data/users-guide/headerfooter-example2.rb +0 -8
- data/vendor/erubis/test/data/users-guide/headerfooter-example2.rhtml +0 -10
- data/vendor/erubis/test/data/users-guide/headerfooter_example.result +0 -11
- data/vendor/erubis/test/data/users-guide/headerfooter_example2.result +0 -13
- data/vendor/erubis/test/data/users-guide/interpolation_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/main_program1.rb +0 -8
- data/vendor/erubis/test/data/users-guide/main_program1.result +0 -6
- data/vendor/erubis/test/data/users-guide/main_program2.rb +0 -8
- data/vendor/erubis/test/data/users-guide/main_program2.result +0 -6
- data/vendor/erubis/test/data/users-guide/nocode-example.eruby +0 -14
- data/vendor/erubis/test/data/users-guide/nocode-php.result +0 -20
- data/vendor/erubis/test/data/users-guide/nocode_example.result +0 -15
- data/vendor/erubis/test/data/users-guide/normal-eruby-test.eruby +0 -9
- data/vendor/erubis/test/data/users-guide/normal_eruby_test.result +0 -11
- data/vendor/erubis/test/data/users-guide/notext-example.eruby +0 -14
- data/vendor/erubis/test/data/users-guide/notext-example.php +0 -19
- data/vendor/erubis/test/data/users-guide/notext-php.result +0 -20
- data/vendor/erubis/test/data/users-guide/notext_example.result +0 -16
- data/vendor/erubis/test/data/users-guide/percentline-example.rhtml +0 -4
- data/vendor/erubis/test/data/users-guide/percentline_example.result +0 -7
- data/vendor/erubis/test/data/users-guide/printenable_example.result +0 -4
- data/vendor/erubis/test/data/users-guide/printenabled-example.eruby +0 -3
- data/vendor/erubis/test/data/users-guide/printenabled-example.rb +0 -8
- data/vendor/erubis/test/data/users-guide/printstatement_example.result +0 -8
- data/vendor/erubis/test/data/users-guide/simplify_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/stdout_exmple.result +0 -9
- data/vendor/erubis/test/data/users-guide/stringbuffer_example.result +0 -9
- data/vendor/erubis/test/data/users-guide/tail_260.result +0 -4
- data/vendor/erubis/test/data/users-guide/tailnewline.rhtml +0 -3
- data/vendor/erubis/test/data/users-guide/template1.rhtml +0 -4
- data/vendor/erubis/test/data/users-guide/template2.rhtml +0 -4
- data/vendor/erubis/test/hoge.rb +0 -5
- data/vendor/erubis/test/test-engines.rb +0 -370
- data/vendor/erubis/test/test-engines.rbc +0 -0
- data/vendor/erubis/test/test-enhancers.rb +0 -571
- data/vendor/erubis/test/test-erubis.rb +0 -884
- data/vendor/erubis/test/test-erubis.rbc +0 -0
- data/vendor/erubis/test/test-main.rb +0 -674
- data/vendor/erubis/test/test-users-guide.rb +0 -58
- data/vendor/erubis/test/test-users-guide.rbc +0 -0
- data/vendor/erubis/test/test.rb +0 -30
- data/vendor/erubis/test/test.rbc +0 -0
- data/vendor/erubis/test/testutil.rb +0 -101
- data/vendor/erubis/test/testutil.rbc +0 -0
- data/vendor/extlib/History.txt +0 -77
- data/vendor/extlib/LICENSE +0 -47
- data/vendor/extlib/README +0 -0
- data/vendor/extlib/Rakefile +0 -133
- data/vendor/extlib/benchmarks/camel_case.rb +0 -45
- data/vendor/extlib/benchmarks/to_const_path.rb +0 -65
- data/vendor/extlib/benchmarks/to_const_string.rb +0 -91
- data/vendor/extlib/lib/extlib.rb +0 -50
- data/vendor/extlib/lib/extlib/array.rb +0 -36
- data/vendor/extlib/lib/extlib/assertions.rb +0 -8
- data/vendor/extlib/lib/extlib/blank.rb +0 -89
- data/vendor/extlib/lib/extlib/boolean.rb +0 -11
- data/vendor/extlib/lib/extlib/byte_array.rb +0 -6
- data/vendor/extlib/lib/extlib/class.rb +0 -177
- data/vendor/extlib/lib/extlib/datetime.rb +0 -29
- data/vendor/extlib/lib/extlib/dictionary.rb +0 -433
- data/vendor/extlib/lib/extlib/hash.rb +0 -442
- data/vendor/extlib/lib/extlib/hook.rb +0 -401
- data/vendor/extlib/lib/extlib/inflection.rb +0 -440
- data/vendor/extlib/lib/extlib/lazy_array.rb +0 -451
- data/vendor/extlib/lib/extlib/lazy_module.rb +0 -18
- data/vendor/extlib/lib/extlib/logger.rb +0 -198
- data/vendor/extlib/lib/extlib/mash.rb +0 -155
- data/vendor/extlib/lib/extlib/module.rb +0 -47
- data/vendor/extlib/lib/extlib/nil.rb +0 -5
- data/vendor/extlib/lib/extlib/numeric.rb +0 -5
- data/vendor/extlib/lib/extlib/object.rb +0 -175
- data/vendor/extlib/lib/extlib/object_space.rb +0 -13
- data/vendor/extlib/lib/extlib/pathname.rb +0 -20
- data/vendor/extlib/lib/extlib/pooling.rb +0 -235
- data/vendor/extlib/lib/extlib/rubygems.rb +0 -38
- data/vendor/extlib/lib/extlib/simple_set.rb +0 -66
- data/vendor/extlib/lib/extlib/string.rb +0 -176
- data/vendor/extlib/lib/extlib/struct.rb +0 -17
- data/vendor/extlib/lib/extlib/symbol.rb +0 -21
- data/vendor/extlib/lib/extlib/tasks/release.rb +0 -15
- data/vendor/extlib/lib/extlib/time.rb +0 -43
- data/vendor/extlib/lib/extlib/version.rb +0 -3
- data/vendor/extlib/lib/extlib/virtual_file.rb +0 -10
- data/vendor/extlib/spec/array_spec.rb +0 -39
- data/vendor/extlib/spec/blank_spec.rb +0 -85
- data/vendor/extlib/spec/byte_array_spec.rb +0 -7
- data/vendor/extlib/spec/class_spec.rb +0 -157
- data/vendor/extlib/spec/datetime_spec.rb +0 -22
- data/vendor/extlib/spec/hash_spec.rb +0 -537
- data/vendor/extlib/spec/hook_spec.rb +0 -1234
- data/vendor/extlib/spec/inflection/plural_spec.rb +0 -564
- data/vendor/extlib/spec/inflection/singular_spec.rb +0 -497
- data/vendor/extlib/spec/inflection_extras_spec.rb +0 -110
- data/vendor/extlib/spec/lazy_array_spec.rb +0 -1957
- data/vendor/extlib/spec/lazy_module_spec.rb +0 -38
- data/vendor/extlib/spec/mash_spec.rb +0 -311
- data/vendor/extlib/spec/module_spec.rb +0 -70
- data/vendor/extlib/spec/object_space_spec.rb +0 -9
- data/vendor/extlib/spec/object_spec.rb +0 -114
- data/vendor/extlib/spec/pooling_spec.rb +0 -511
- data/vendor/extlib/spec/simple_set_spec.rb +0 -57
- data/vendor/extlib/spec/spec.opts +0 -3
- data/vendor/extlib/spec/spec_helper.rb +0 -10
- data/vendor/extlib/spec/string_spec.rb +0 -221
- data/vendor/extlib/spec/struct_spec.rb +0 -12
- data/vendor/extlib/spec/symbol_spec.rb +0 -8
- data/vendor/extlib/spec/time_spec.rb +0 -29
- data/vendor/extlib/spec/try_call_spec.rb +0 -73
- data/vendor/extlib/spec/try_dup_spec.rb +0 -45
- data/vendor/extlib/spec/virtual_file_spec.rb +0 -21
- data/vendor/media-path/CHANGELOG +0 -3
- data/vendor/media-path/LICENSE +0 -20
- data/vendor/media-path/README.textile +0 -40
- data/vendor/media-path/Rakefile +0 -61
- data/vendor/media-path/TODO.txt +0 -6
- data/vendor/media-path/deps.rip +0 -5
- data/vendor/media-path/lib/media-path.rb +0 -269
- data/vendor/media-path/media-path.gemspec +0 -38
- data/vendor/media-path/script/spec +0 -14
- data/vendor/media-path/spec/media-path_spec.rb +0 -158
- data/vendor/media-path/spec/stubs/blog/public/js/moo.js +0 -0
- data/vendor/rack/COPYING +0 -18
- data/vendor/rack/KNOWN-ISSUES +0 -18
- data/vendor/rack/README +0 -364
- data/vendor/rack/Rakefile +0 -164
- data/vendor/rack/bin/rackup +0 -2
- data/vendor/rack/contrib/rack_logo.svg +0 -111
- data/vendor/rack/example/lobster.ru +0 -4
- data/vendor/rack/example/protectedlobster.rb +0 -14
- data/vendor/rack/example/protectedlobster.ru +0 -8
- data/vendor/rack/lib/rack.rb +0 -87
- data/vendor/rack/lib/rack/adapter/camping.rb +0 -22
- data/vendor/rack/lib/rack/auth/abstract/handler.rb +0 -37
- data/vendor/rack/lib/rack/auth/abstract/request.rb +0 -37
- data/vendor/rack/lib/rack/auth/basic.rb +0 -58
- data/vendor/rack/lib/rack/auth/digest/md5.rb +0 -124
- data/vendor/rack/lib/rack/auth/digest/nonce.rb +0 -51
- data/vendor/rack/lib/rack/auth/digest/params.rb +0 -55
- data/vendor/rack/lib/rack/auth/digest/request.rb +0 -40
- data/vendor/rack/lib/rack/auth/openid.rb +0 -487
- data/vendor/rack/lib/rack/builder.rb +0 -78
- data/vendor/rack/lib/rack/cascade.rb +0 -41
- data/vendor/rack/lib/rack/chunked.rb +0 -49
- data/vendor/rack/lib/rack/commonlogger.rb +0 -52
- data/vendor/rack/lib/rack/conditionalget.rb +0 -47
- data/vendor/rack/lib/rack/content_length.rb +0 -29
- data/vendor/rack/lib/rack/content_type.rb +0 -23
- data/vendor/rack/lib/rack/deflater.rb +0 -96
- data/vendor/rack/lib/rack/directory.rb +0 -153
- data/vendor/rack/lib/rack/file.rb +0 -88
- data/vendor/rack/lib/rack/handler.rb +0 -88
- data/vendor/rack/lib/rack/handler/cgi.rb +0 -61
- data/vendor/rack/lib/rack/handler/evented_mongrel.rb +0 -8
- data/vendor/rack/lib/rack/handler/fastcgi.rb +0 -90
- data/vendor/rack/lib/rack/handler/lsws.rb +0 -63
- data/vendor/rack/lib/rack/handler/mongrel.rb +0 -91
- data/vendor/rack/lib/rack/handler/scgi.rb +0 -62
- data/vendor/rack/lib/rack/handler/swiftiplied_mongrel.rb +0 -8
- data/vendor/rack/lib/rack/handler/thin.rb +0 -18
- data/vendor/rack/lib/rack/handler/webrick.rb +0 -71
- data/vendor/rack/lib/rack/head.rb +0 -19
- data/vendor/rack/lib/rack/lint.rb +0 -546
- data/vendor/rack/lib/rack/lobster.rb +0 -65
- data/vendor/rack/lib/rack/lock.rb +0 -16
- data/vendor/rack/lib/rack/methodoverride.rb +0 -27
- data/vendor/rack/lib/rack/mime.rb +0 -205
- data/vendor/rack/lib/rack/mock.rb +0 -189
- data/vendor/rack/lib/rack/recursive.rb +0 -57
- data/vendor/rack/lib/rack/reloader.rb +0 -109
- data/vendor/rack/lib/rack/request.rb +0 -248
- data/vendor/rack/lib/rack/response.rb +0 -149
- data/vendor/rack/lib/rack/rewindable_input.rb +0 -100
- data/vendor/rack/lib/rack/server.rb +0 -189
- data/vendor/rack/lib/rack/session/abstract/id.rb +0 -140
- data/vendor/rack/lib/rack/session/cookie.rb +0 -90
- data/vendor/rack/lib/rack/session/memcache.rb +0 -109
- data/vendor/rack/lib/rack/session/pool.rb +0 -100
- data/vendor/rack/lib/rack/showexceptions.rb +0 -349
- data/vendor/rack/lib/rack/showstatus.rb +0 -106
- data/vendor/rack/lib/rack/static.rb +0 -38
- data/vendor/rack/lib/rack/urlmap.rb +0 -55
- data/vendor/rack/lib/rack/utils.rb +0 -590
- data/vendor/rack/test/cgi/lighttpd.conf +0 -20
- data/vendor/rack/test/cgi/test +0 -9
- data/vendor/rack/test/cgi/test.fcgi +0 -8
- data/vendor/rack/test/cgi/test.ru +0 -6
- data/vendor/rack/test/multipart/binary +0 -0
- data/vendor/rack/test/multipart/empty +0 -10
- data/vendor/rack/test/multipart/file1.txt +0 -1
- data/vendor/rack/test/multipart/ie +0 -6
- data/vendor/rack/test/multipart/nested +0 -10
- data/vendor/rack/test/multipart/none +0 -9
- data/vendor/rack/test/multipart/semicolon +0 -6
- data/vendor/rack/test/multipart/text +0 -10
- data/vendor/rack/test/rackup/config.ru +0 -31
- data/vendor/rack/test/spec_rack_auth_basic.rb +0 -73
- data/vendor/rack/test/spec_rack_auth_digest.rb +0 -226
- data/vendor/rack/test/spec_rack_auth_openid.rb +0 -84
- data/vendor/rack/test/spec_rack_builder.rb +0 -84
- data/vendor/rack/test/spec_rack_camping.rb +0 -51
- data/vendor/rack/test/spec_rack_cascade.rb +0 -48
- data/vendor/rack/test/spec_rack_cgi.rb +0 -89
- data/vendor/rack/test/spec_rack_chunked.rb +0 -62
- data/vendor/rack/test/spec_rack_commonlogger.rb +0 -61
- data/vendor/rack/test/spec_rack_conditionalget.rb +0 -41
- data/vendor/rack/test/spec_rack_content_length.rb +0 -43
- data/vendor/rack/test/spec_rack_content_type.rb +0 -30
- data/vendor/rack/test/spec_rack_deflater.rb +0 -127
- data/vendor/rack/test/spec_rack_directory.rb +0 -61
- data/vendor/rack/test/spec_rack_fastcgi.rb +0 -89
- data/vendor/rack/test/spec_rack_file.rb +0 -75
- data/vendor/rack/test/spec_rack_handler.rb +0 -43
- data/vendor/rack/test/spec_rack_head.rb +0 -30
- data/vendor/rack/test/spec_rack_lint.rb +0 -523
- data/vendor/rack/test/spec_rack_lobster.rb +0 -45
- data/vendor/rack/test/spec_rack_lock.rb +0 -38
- data/vendor/rack/test/spec_rack_methodoverride.rb +0 -60
- data/vendor/rack/test/spec_rack_mock.rb +0 -243
- data/vendor/rack/test/spec_rack_mongrel.rb +0 -189
- data/vendor/rack/test/spec_rack_recursive.rb +0 -77
- data/vendor/rack/test/spec_rack_request.rb +0 -510
- data/vendor/rack/test/spec_rack_response.rb +0 -218
- data/vendor/rack/test/spec_rack_rewindable_input.rb +0 -118
- data/vendor/rack/test/spec_rack_session_cookie.rb +0 -82
- data/vendor/rack/test/spec_rack_session_memcache.rb +0 -250
- data/vendor/rack/test/spec_rack_session_pool.rb +0 -172
- data/vendor/rack/test/spec_rack_showexceptions.rb +0 -21
- data/vendor/rack/test/spec_rack_showstatus.rb +0 -72
- data/vendor/rack/test/spec_rack_static.rb +0 -37
- data/vendor/rack/test/spec_rack_thin.rb +0 -91
- data/vendor/rack/test/spec_rack_urlmap.rb +0 -185
- data/vendor/rack/test/spec_rack_utils.rb +0 -488
- data/vendor/rack/test/spec_rack_webrick.rb +0 -130
- data/vendor/rack/test/spec_rackup.rb +0 -154
- data/vendor/rack/test/testrequest.rb +0 -72
- data/vendor/rack/test/unregistered_handler/rack/handler/unregistered.rb +0 -7
- data/vendor/rack/test/unregistered_handler/rack/handler/unregistered_long_one.rb +0 -7
- data/vendor/rspec/History.rdoc +0 -1510
- data/vendor/rspec/License.txt +0 -22
- data/vendor/rspec/Manifest.txt +0 -383
- data/vendor/rspec/README.rdoc +0 -55
- data/vendor/rspec/Rakefile +0 -145
- data/vendor/rspec/Ruby1.9.rdoc +0 -31
- data/vendor/rspec/TODO.txt +0 -17
- data/vendor/rspec/Upgrade.rdoc +0 -199
- data/vendor/rspec/bin/autospec +0 -4
- data/vendor/rspec/bin/spec +0 -5
- data/vendor/rspec/cucumber.yml +0 -5
- data/vendor/rspec/examples/failing/README.txt +0 -11
- data/vendor/rspec/examples/failing/diffing_spec.rb +0 -36
- data/vendor/rspec/examples/failing/failing_implicit_docstrings_example.rb +0 -17
- data/vendor/rspec/examples/failing/failure_in_after.rb +0 -10
- data/vendor/rspec/examples/failing/failure_in_before.rb +0 -10
- data/vendor/rspec/examples/failing/mocking_example.rb +0 -38
- data/vendor/rspec/examples/failing/mocking_with_flexmock.rb +0 -26
- data/vendor/rspec/examples/failing/mocking_with_mocha.rb +0 -25
- data/vendor/rspec/examples/failing/mocking_with_rr.rb +0 -27
- data/vendor/rspec/examples/failing/partial_mock_example.rb +0 -18
- data/vendor/rspec/examples/failing/pending_example.rb +0 -7
- data/vendor/rspec/examples/failing/predicate_example.rb +0 -32
- data/vendor/rspec/examples/failing/raising_example.rb +0 -47
- data/vendor/rspec/examples/failing/syntax_error_example.rb +0 -7
- data/vendor/rspec/examples/failing/team_spec.rb +0 -41
- data/vendor/rspec/examples/failing/timeout_behaviour.rb +0 -5
- data/vendor/rspec/examples/passing/custom_formatter.rb +0 -11
- data/vendor/rspec/examples/passing/custom_matchers.rb +0 -54
- data/vendor/rspec/examples/passing/dynamic_spec.rb +0 -7
- data/vendor/rspec/examples/passing/file_accessor.rb +0 -18
- data/vendor/rspec/examples/passing/file_accessor_spec.rb +0 -37
- data/vendor/rspec/examples/passing/filtered_formatter.rb +0 -17
- data/vendor/rspec/examples/passing/filtered_formatter_example.rb +0 -31
- data/vendor/rspec/examples/passing/greeter_spec.rb +0 -30
- data/vendor/rspec/examples/passing/helper_method_example.rb +0 -12
- data/vendor/rspec/examples/passing/implicit_docstrings_example.rb +0 -16
- data/vendor/rspec/examples/passing/io_processor.rb +0 -8
- data/vendor/rspec/examples/passing/io_processor_spec.rb +0 -20
- data/vendor/rspec/examples/passing/mocking_example.rb +0 -25
- data/vendor/rspec/examples/passing/multi_threaded_example_group_runner.rb +0 -26
- data/vendor/rspec/examples/passing/nested_classes_example.rb +0 -35
- data/vendor/rspec/examples/passing/options_example.rb +0 -29
- data/vendor/rspec/examples/passing/options_formatter.rb +0 -20
- data/vendor/rspec/examples/passing/partial_mock_example.rb +0 -27
- data/vendor/rspec/examples/passing/pending_example.rb +0 -18
- data/vendor/rspec/examples/passing/predicate_example.rb +0 -25
- data/vendor/rspec/examples/passing/shared_example_group_example.rb +0 -79
- data/vendor/rspec/examples/passing/shared_stack_examples.rb +0 -36
- data/vendor/rspec/examples/passing/simple_matcher_example.rb +0 -29
- data/vendor/rspec/examples/passing/stack.rb +0 -36
- data/vendor/rspec/examples/passing/stack_spec.rb +0 -63
- data/vendor/rspec/examples/passing/stack_spec_with_nested_example_groups.rb +0 -66
- data/vendor/rspec/examples/passing/stubbing_example.rb +0 -67
- data/vendor/rspec/examples/passing/yielding_example.rb +0 -31
- data/vendor/rspec/examples/ruby1.9.compatibility/access_to_constants_spec.rb +0 -85
- data/vendor/rspec/features-pending/cli/conditional_exclusion.feature +0 -39
- data/vendor/rspec/features-pending/heckle/heckle.feature +0 -56
- data/vendor/rspec/features/before_and_after_blocks/before_and_after_blocks.feature +0 -167
- data/vendor/rspec/features/command_line/line_number_option.feature +0 -56
- data/vendor/rspec/features/command_line/line_number_option_with_example_with_no_name.feature +0 -22
- data/vendor/rspec/features/example_groups/define_example_attribute.feature +0 -41
- data/vendor/rspec/features/example_groups/example_group_with_should_methods.feature +0 -29
- data/vendor/rspec/features/example_groups/implicit_docstrings.feature +0 -59
- data/vendor/rspec/features/example_groups/nested_groups.feature +0 -32
- data/vendor/rspec/features/expectations/customized_message.feature +0 -54
- data/vendor/rspec/features/expectations/expect_change.feature +0 -65
- data/vendor/rspec/features/expectations/expect_error.feature +0 -44
- data/vendor/rspec/features/extensions/custom_example_group.feature +0 -19
- data/vendor/rspec/features/formatters/custom_formatter.feature +0 -30
- data/vendor/rspec/features/interop/examples_and_tests_together.feature +0 -84
- data/vendor/rspec/features/interop/rspec_output.feature +0 -25
- data/vendor/rspec/features/interop/test_but_not_test_unit.feature +0 -26
- data/vendor/rspec/features/interop/test_case_with_should_methods.feature +0 -46
- data/vendor/rspec/features/load_paths/add_lib_to_load_path.feature +0 -20
- data/vendor/rspec/features/load_paths/add_spec_to_load_path.feature +0 -20
- data/vendor/rspec/features/matchers/define_diffable_matcher.feature +0 -26
- data/vendor/rspec/features/matchers/define_matcher.feature +0 -179
- data/vendor/rspec/features/matchers/define_matcher_outside_rspec.feature +0 -38
- data/vendor/rspec/features/matchers/define_matcher_with_fluent_interface.feature +0 -27
- data/vendor/rspec/features/matchers/define_wrapped_matcher.feature +0 -29
- data/vendor/rspec/features/matchers/match_unless_raises.feature +0 -60
- data/vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature +0 -39
- data/vendor/rspec/features/mock_framework_integration/use_flexmock.feature +0 -27
- data/vendor/rspec/features/mock_framework_integration/use_mocha.feature +0 -27
- data/vendor/rspec/features/mock_framework_integration/use_rr.feature +0 -27
- data/vendor/rspec/features/mocks/block_local_expectations.feature +0 -62
- data/vendor/rspec/features/mocks/mix_stubs_and_mocks.feature +0 -22
- data/vendor/rspec/features/mocks/stub_implementation.feature +0 -26
- data/vendor/rspec/features/pending/pending_examples.feature +0 -81
- data/vendor/rspec/features/runner/specify_line_number.feature +0 -32
- data/vendor/rspec/features/spec_helper/spec_helper.feature +0 -25
- data/vendor/rspec/features/step_definitions/running_rspec_steps.rb +0 -43
- data/vendor/rspec/features/subject/explicit_subject.feature +0 -31
- data/vendor/rspec/features/subject/implicit_subject.feature +0 -43
- data/vendor/rspec/features/support/env.rb +0 -82
- data/vendor/rspec/features/support/matchers/smart_match.rb +0 -12
- data/vendor/rspec/geminstaller.yml +0 -28
- data/vendor/rspec/init.rb +0 -9
- data/vendor/rspec/lib/autotest/discover.rb +0 -3
- data/vendor/rspec/lib/autotest/rspec.rb +0 -54
- data/vendor/rspec/lib/spec.rb +0 -8
- data/vendor/rspec/lib/spec/adapters/mock_frameworks/flexmock.rb +0 -24
- data/vendor/rspec/lib/spec/adapters/mock_frameworks/mocha.rb +0 -25
- data/vendor/rspec/lib/spec/adapters/mock_frameworks/rr.rb +0 -22
- data/vendor/rspec/lib/spec/adapters/mock_frameworks/rspec.rb +0 -21
- data/vendor/rspec/lib/spec/autorun.rb +0 -3
- data/vendor/rspec/lib/spec/deprecation.rb +0 -40
- data/vendor/rspec/lib/spec/dsl.rb +0 -1
- data/vendor/rspec/lib/spec/dsl/main.rb +0 -92
- data/vendor/rspec/lib/spec/example.rb +0 -164
- data/vendor/rspec/lib/spec/example/args_and_options.rb +0 -27
- data/vendor/rspec/lib/spec/example/before_and_after_hooks.rb +0 -93
- data/vendor/rspec/lib/spec/example/errors.rb +0 -25
- data/vendor/rspec/lib/spec/example/example_group.rb +0 -10
- data/vendor/rspec/lib/spec/example/example_group_factory.rb +0 -82
- data/vendor/rspec/lib/spec/example/example_group_hierarchy.rb +0 -53
- data/vendor/rspec/lib/spec/example/example_group_methods.rb +0 -282
- data/vendor/rspec/lib/spec/example/example_group_proxy.rb +0 -61
- data/vendor/rspec/lib/spec/example/example_matcher.rb +0 -43
- data/vendor/rspec/lib/spec/example/example_methods.rb +0 -152
- data/vendor/rspec/lib/spec/example/example_proxy.rb +0 -41
- data/vendor/rspec/lib/spec/example/module_reopening_fix.rb +0 -43
- data/vendor/rspec/lib/spec/example/pending.rb +0 -18
- data/vendor/rspec/lib/spec/example/predicate_matchers.rb +0 -46
- data/vendor/rspec/lib/spec/example/shared_example_group.rb +0 -59
- data/vendor/rspec/lib/spec/example/subject.rb +0 -108
- data/vendor/rspec/lib/spec/expectations.rb +0 -35
- data/vendor/rspec/lib/spec/expectations/errors.rb +0 -12
- data/vendor/rspec/lib/spec/expectations/extensions.rb +0 -1
- data/vendor/rspec/lib/spec/expectations/extensions/kernel.rb +0 -52
- data/vendor/rspec/lib/spec/expectations/fail_with.rb +0 -45
- data/vendor/rspec/lib/spec/expectations/handler.rb +0 -50
- data/vendor/rspec/lib/spec/extensions/instance_exec.rb +0 -31
- data/vendor/rspec/lib/spec/interop/test.rb +0 -44
- data/vendor/rspec/lib/spec/interop/test/unit/autorunner.rb +0 -6
- data/vendor/rspec/lib/spec/interop/test/unit/testcase.rb +0 -56
- data/vendor/rspec/lib/spec/interop/test/unit/testresult.rb +0 -6
- data/vendor/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +0 -34
- data/vendor/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +0 -61
- data/vendor/rspec/lib/spec/matchers.rb +0 -195
- data/vendor/rspec/lib/spec/matchers/be.rb +0 -211
- data/vendor/rspec/lib/spec/matchers/be_close.rb +0 -32
- data/vendor/rspec/lib/spec/matchers/be_instance_of.rb +0 -26
- data/vendor/rspec/lib/spec/matchers/be_kind_of.rb +0 -26
- data/vendor/rspec/lib/spec/matchers/change.rb +0 -151
- data/vendor/rspec/lib/spec/matchers/compatibility.rb +0 -14
- data/vendor/rspec/lib/spec/matchers/dsl.rb +0 -20
- data/vendor/rspec/lib/spec/matchers/eql.rb +0 -42
- data/vendor/rspec/lib/spec/matchers/equal.rb +0 -53
- data/vendor/rspec/lib/spec/matchers/errors.rb +0 -5
- data/vendor/rspec/lib/spec/matchers/exist.rb +0 -16
- data/vendor/rspec/lib/spec/matchers/generated_descriptions.rb +0 -36
- data/vendor/rspec/lib/spec/matchers/has.rb +0 -35
- data/vendor/rspec/lib/spec/matchers/have.rb +0 -152
- data/vendor/rspec/lib/spec/matchers/include.rb +0 -44
- data/vendor/rspec/lib/spec/matchers/match.rb +0 -21
- data/vendor/rspec/lib/spec/matchers/match_array.rb +0 -71
- data/vendor/rspec/lib/spec/matchers/matcher.rb +0 -102
- data/vendor/rspec/lib/spec/matchers/method_missing.rb +0 -9
- data/vendor/rspec/lib/spec/matchers/operator_matcher.rb +0 -78
- data/vendor/rspec/lib/spec/matchers/pretty.rb +0 -37
- data/vendor/rspec/lib/spec/matchers/raise_error.rb +0 -129
- data/vendor/rspec/lib/spec/matchers/respond_to.rb +0 -71
- data/vendor/rspec/lib/spec/matchers/satisfy.rb +0 -47
- data/vendor/rspec/lib/spec/matchers/simple_matcher.rb +0 -133
- data/vendor/rspec/lib/spec/matchers/throw_symbol.rb +0 -104
- data/vendor/rspec/lib/spec/matchers/wrap_expectation.rb +0 -55
- data/vendor/rspec/lib/spec/mocks.rb +0 -200
- data/vendor/rspec/lib/spec/mocks/argument_expectation.rb +0 -51
- data/vendor/rspec/lib/spec/mocks/argument_matchers.rb +0 -237
- data/vendor/rspec/lib/spec/mocks/error_generator.rb +0 -92
- data/vendor/rspec/lib/spec/mocks/errors.rb +0 -10
- data/vendor/rspec/lib/spec/mocks/example_methods.rb +0 -69
- data/vendor/rspec/lib/spec/mocks/extensions.rb +0 -1
- data/vendor/rspec/lib/spec/mocks/extensions/object.rb +0 -3
- data/vendor/rspec/lib/spec/mocks/framework.rb +0 -15
- data/vendor/rspec/lib/spec/mocks/message_expectation.rb +0 -343
- data/vendor/rspec/lib/spec/mocks/methods.rb +0 -89
- data/vendor/rspec/lib/spec/mocks/mock.rb +0 -71
- data/vendor/rspec/lib/spec/mocks/order_group.rb +0 -29
- data/vendor/rspec/lib/spec/mocks/proxy.rb +0 -245
- data/vendor/rspec/lib/spec/mocks/space.rb +0 -28
- data/vendor/rspec/lib/spec/rake/spectask.rb +0 -230
- data/vendor/rspec/lib/spec/rake/verify_rcov.rb +0 -52
- data/vendor/rspec/lib/spec/ruby.rb +0 -9
- data/vendor/rspec/lib/spec/runner.rb +0 -66
- data/vendor/rspec/lib/spec/runner/backtrace_tweaker.rb +0 -77
- data/vendor/rspec/lib/spec/runner/class_and_arguments_parser.rb +0 -14
- data/vendor/rspec/lib/spec/runner/command_line.rb +0 -15
- data/vendor/rspec/lib/spec/runner/configuration.rb +0 -194
- data/vendor/rspec/lib/spec/runner/differs/default.rb +0 -93
- data/vendor/rspec/lib/spec/runner/differs/load-diff-lcs.rb +0 -12
- data/vendor/rspec/lib/spec/runner/drb_command_line.rb +0 -26
- data/vendor/rspec/lib/spec/runner/example_group_runner.rb +0 -58
- data/vendor/rspec/lib/spec/runner/extensions/kernel.rb +0 -9
- data/vendor/rspec/lib/spec/runner/formatter/base_formatter.rb +0 -139
- data/vendor/rspec/lib/spec/runner/formatter/base_text_formatter.rb +0 -142
- data/vendor/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +0 -25
- data/vendor/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +0 -20
- data/vendor/rspec/lib/spec/runner/formatter/html_formatter.rb +0 -338
- data/vendor/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +0 -47
- data/vendor/rspec/lib/spec/runner/formatter/no_op_method_missing.rb +0 -21
- data/vendor/rspec/lib/spec/runner/formatter/profile_formatter.rb +0 -47
- data/vendor/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +0 -33
- data/vendor/rspec/lib/spec/runner/formatter/silent_formatter.rb +0 -10
- data/vendor/rspec/lib/spec/runner/formatter/snippet_extractor.rb +0 -52
- data/vendor/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +0 -33
- data/vendor/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +0 -16
- data/vendor/rspec/lib/spec/runner/heckle_runner.rb +0 -72
- data/vendor/rspec/lib/spec/runner/heckle_runner_unsupported.rb +0 -10
- data/vendor/rspec/lib/spec/runner/line_number_query.rb +0 -78
- data/vendor/rspec/lib/spec/runner/option_parser.rb +0 -223
- data/vendor/rspec/lib/spec/runner/options.rb +0 -400
- data/vendor/rspec/lib/spec/runner/reporter.rb +0 -171
- data/vendor/rspec/lib/spec/stubs/cucumber.rb +0 -5
- data/vendor/rspec/lib/spec/test/unit.rb +0 -10
- data/vendor/rspec/lib/spec/version.rb +0 -14
- data/vendor/rspec/resources/helpers/cmdline.rb +0 -8
- data/vendor/rspec/resources/rake/examples.rake +0 -7
- data/vendor/rspec/resources/rake/examples_with_rcov.rake +0 -9
- data/vendor/rspec/resources/rake/failing_examples_with_html.rake +0 -9
- data/vendor/rspec/resources/rake/verify_rcov.rake +0 -7
- data/vendor/rspec/spec/README.jruby +0 -15
- data/vendor/rspec/spec/autotest/autotest_helper.rb +0 -8
- data/vendor/rspec/spec/autotest/autotest_matchers.rb +0 -38
- data/vendor/rspec/spec/autotest/discover_spec.rb +0 -8
- data/vendor/rspec/spec/autotest/failed_results_re_spec.rb +0 -31
- data/vendor/rspec/spec/autotest/rspec_spec.rb +0 -126
- data/vendor/rspec/spec/ruby_forker.rb +0 -13
- data/vendor/rspec/spec/spec.opts +0 -6
- data/vendor/rspec/spec/spec/dsl/main_spec.rb +0 -95
- data/vendor/rspec/spec/spec/example/example_group_class_definition_spec.rb +0 -51
- data/vendor/rspec/spec/spec/example/example_group_factory_spec.rb +0 -180
- data/vendor/rspec/spec/spec/example/example_group_methods_spec.rb +0 -759
- data/vendor/rspec/spec/spec/example/example_group_proxy_spec.rb +0 -107
- data/vendor/rspec/spec/spec/example/example_group_spec.rb +0 -643
- data/vendor/rspec/spec/spec/example/example_matcher_spec.rb +0 -86
- data/vendor/rspec/spec/spec/example/example_methods_spec.rb +0 -162
- data/vendor/rspec/spec/spec/example/example_proxy_spec.rb +0 -57
- data/vendor/rspec/spec/spec/example/helper_method_spec.rb +0 -24
- data/vendor/rspec/spec/spec/example/nested_example_group_spec.rb +0 -71
- data/vendor/rspec/spec/spec/example/pending_module_spec.rb +0 -58
- data/vendor/rspec/spec/spec/example/predicate_matcher_spec.rb +0 -41
- data/vendor/rspec/spec/spec/example/shared_example_group_spec.rb +0 -257
- data/vendor/rspec/spec/spec/example/subclassing_example_group_spec.rb +0 -25
- data/vendor/rspec/spec/spec/example/subject_spec.rb +0 -103
- data/vendor/rspec/spec/spec/expectations/differs/default_spec.rb +0 -194
- data/vendor/rspec/spec/spec/expectations/extensions/kernel_spec.rb +0 -45
- data/vendor/rspec/spec/spec/expectations/fail_with_spec.rb +0 -96
- data/vendor/rspec/spec/spec/expectations/handler_spec.rb +0 -206
- data/vendor/rspec/spec/spec/expectations/wrap_expectation_spec.rb +0 -30
- data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +0 -13
- data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +0 -10
- data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_various_names.rb +0 -22
- data/vendor/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +0 -38
- data/vendor/rspec/spec/spec/interop/test/unit/spec_spec.rb +0 -48
- data/vendor/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +0 -18
- data/vendor/rspec/spec/spec/interop/test/unit/testcase_spec.rb +0 -50
- data/vendor/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +0 -9
- data/vendor/rspec/spec/spec/matchers/be_close_spec.rb +0 -50
- data/vendor/rspec/spec/spec/matchers/be_instance_of_spec.rb +0 -36
- data/vendor/rspec/spec/spec/matchers/be_kind_of_spec.rb +0 -33
- data/vendor/rspec/spec/spec/matchers/be_spec.rb +0 -419
- data/vendor/rspec/spec/spec/matchers/change_spec.rb +0 -349
- data/vendor/rspec/spec/spec/matchers/compatibility_spec.rb +0 -28
- data/vendor/rspec/spec/spec/matchers/description_generation_spec.rb +0 -160
- data/vendor/rspec/spec/spec/matchers/dsl_spec.rb +0 -34
- data/vendor/rspec/spec/spec/matchers/eql_spec.rb +0 -33
- data/vendor/rspec/spec/spec/matchers/equal_spec.rb +0 -57
- data/vendor/rspec/spec/spec/matchers/exist_spec.rb +0 -65
- data/vendor/rspec/spec/spec/matchers/has_spec.rb +0 -190
- data/vendor/rspec/spec/spec/matchers/have_spec.rb +0 -396
- data/vendor/rspec/spec/spec/matchers/include_spec.rb +0 -88
- data/vendor/rspec/spec/spec/matchers/match_array_spec.rb +0 -108
- data/vendor/rspec/spec/spec/matchers/match_spec.rb +0 -57
- data/vendor/rspec/spec/spec/matchers/matcher_methods_spec.rb +0 -63
- data/vendor/rspec/spec/spec/matchers/matcher_spec.rb +0 -273
- data/vendor/rspec/spec/spec/matchers/matchers_spec.rb +0 -2
- data/vendor/rspec/spec/spec/matchers/operator_matcher_spec.rb +0 -191
- data/vendor/rspec/spec/spec/matchers/raise_error_spec.rb +0 -333
- data/vendor/rspec/spec/spec/matchers/respond_to_spec.rb +0 -116
- data/vendor/rspec/spec/spec/matchers/satisfy_spec.rb +0 -36
- data/vendor/rspec/spec/spec/matchers/simple_matcher_spec.rb +0 -93
- data/vendor/rspec/spec/spec/matchers/throw_symbol_spec.rb +0 -96
- data/vendor/rspec/spec/spec/mocks/and_yield_spec.rb +0 -117
- data/vendor/rspec/spec/spec/mocks/any_number_of_times_spec.rb +0 -36
- data/vendor/rspec/spec/spec/mocks/argument_expectation_spec.rb +0 -23
- data/vendor/rspec/spec/spec/mocks/argument_matchers_spec.rb +0 -19
- data/vendor/rspec/spec/spec/mocks/at_least_spec.rb +0 -97
- data/vendor/rspec/spec/spec/mocks/at_most_spec.rb +0 -93
- data/vendor/rspec/spec/spec/mocks/bug_report_10260_spec.rb +0 -8
- data/vendor/rspec/spec/spec/mocks/bug_report_10263_spec.rb +0 -27
- data/vendor/rspec/spec/spec/mocks/bug_report_11545_spec.rb +0 -32
- data/vendor/rspec/spec/spec/mocks/bug_report_15719_spec.rb +0 -30
- data/vendor/rspec/spec/spec/mocks/bug_report_496_spec.rb +0 -19
- data/vendor/rspec/spec/spec/mocks/bug_report_600_spec.rb +0 -22
- data/vendor/rspec/spec/spec/mocks/bug_report_7611_spec.rb +0 -19
- data/vendor/rspec/spec/spec/mocks/bug_report_7805_spec.rb +0 -22
- data/vendor/rspec/spec/spec/mocks/bug_report_8165_spec.rb +0 -31
- data/vendor/rspec/spec/spec/mocks/bug_report_8302_spec.rb +0 -26
- data/vendor/rspec/spec/spec/mocks/bug_report_830_spec.rb +0 -21
- data/vendor/rspec/spec/spec/mocks/double_spec.rb +0 -12
- data/vendor/rspec/spec/spec/mocks/failing_argument_matchers_spec.rb +0 -95
- data/vendor/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +0 -90
- data/vendor/rspec/spec/spec/mocks/hash_not_including_matcher_spec.rb +0 -67
- data/vendor/rspec/spec/spec/mocks/mock_ordering_spec.rb +0 -94
- data/vendor/rspec/spec/spec/mocks/mock_space_spec.rb +0 -54
- data/vendor/rspec/spec/spec/mocks/mock_spec.rb +0 -594
- data/vendor/rspec/spec/spec/mocks/multiple_return_value_spec.rb +0 -113
- data/vendor/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +0 -53
- data/vendor/rspec/spec/spec/mocks/null_object_mock_spec.rb +0 -54
- data/vendor/rspec/spec/spec/mocks/once_counts_spec.rb +0 -53
- data/vendor/rspec/spec/spec/mocks/options_hash_spec.rb +0 -35
- data/vendor/rspec/spec/spec/mocks/partial_mock_spec.rb +0 -164
- data/vendor/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +0 -66
- data/vendor/rspec/spec/spec/mocks/passing_argument_matchers_spec.rb +0 -145
- data/vendor/rspec/spec/spec/mocks/precise_counts_spec.rb +0 -52
- data/vendor/rspec/spec/spec/mocks/record_messages_spec.rb +0 -26
- data/vendor/rspec/spec/spec/mocks/stub_chain_spec.rb +0 -42
- data/vendor/rspec/spec/spec/mocks/stub_implementation_spec.rb +0 -31
- data/vendor/rspec/spec/spec/mocks/stub_spec.rb +0 -203
- data/vendor/rspec/spec/spec/mocks/stubbed_message_expectations_spec.rb +0 -26
- data/vendor/rspec/spec/spec/mocks/twice_counts_spec.rb +0 -67
- data/vendor/rspec/spec/spec/mocks/unstub_spec.rb +0 -127
- data/vendor/rspec/spec/spec/package/bin_spec_spec.rb +0 -16
- data/vendor/rspec/spec/spec/rake/spectask_spec.rb +0 -150
- data/vendor/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +0 -23
- data/vendor/rspec/spec/spec/runner/command_line_spec.rb +0 -162
- data/vendor/rspec/spec/spec/runner/configuration_spec.rb +0 -320
- data/vendor/rspec/spec/spec/runner/drb_command_line_spec.rb +0 -107
- data/vendor/rspec/spec/spec/runner/empty_file.txt +0 -0
- data/vendor/rspec/spec/spec/runner/example_group_runner_spec.rb +0 -26
- data/vendor/rspec/spec/spec/runner/examples.txt +0 -2
- data/vendor/rspec/spec/spec/runner/failed.txt +0 -3
- data/vendor/rspec/spec/spec/runner/formatter/base_formatter_spec.rb +0 -30
- data/vendor/rspec/spec/spec/runner/formatter/base_text_formatter_spec.rb +0 -113
- data/vendor/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +0 -45
- data/vendor/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +0 -33
- data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +0 -377
- data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +0 -377
- data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.7.html +0 -377
- data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.9.1.html +0 -377
- data/vendor/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +0 -118
- data/vendor/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +0 -305
- data/vendor/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +0 -70
- data/vendor/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +0 -149
- data/vendor/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +0 -18
- data/vendor/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +0 -159
- data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6-jruby.html +0 -371
- data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +0 -371
- data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.7.html +0 -371
- data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.9.1.html +0 -371
- data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatter_spec.rb +0 -106
- data/vendor/rspec/spec/spec/runner/heckle_runner_spec.rb +0 -78
- data/vendor/rspec/spec/spec/runner/heckler_spec.rb +0 -20
- data/vendor/rspec/spec/spec/runner/line_number_query/line_number_query_fixture.rb +0 -70
- data/vendor/rspec/spec/spec/runner/line_number_query_spec.rb +0 -129
- data/vendor/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +0 -51
- data/vendor/rspec/spec/spec/runner/option_parser_spec.rb +0 -545
- data/vendor/rspec/spec/spec/runner/options_spec.rb +0 -547
- data/vendor/rspec/spec/spec/runner/output_one_time_fixture.rb +0 -7
- data/vendor/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +0 -7
- data/vendor/rspec/spec/spec/runner/output_one_time_spec.rb +0 -15
- data/vendor/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +0 -123
- data/vendor/rspec/spec/spec/runner/reporter_spec.rb +0 -244
- data/vendor/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
- data/vendor/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
- data/vendor/rspec/spec/spec/runner/resources/a_spec.rb +0 -1
- data/vendor/rspec/spec/spec/runner/resources/custom_example_group_runner.rb +0 -14
- data/vendor/rspec/spec/spec/runner/resources/utf8_encoded.rb +0 -8
- data/vendor/rspec/spec/spec/runner/spec.opts +0 -2
- data/vendor/rspec/spec/spec/runner/spec_drb.opts +0 -2
- data/vendor/rspec/spec/spec/runner/spec_spaced.opts +0 -2
- data/vendor/rspec/spec/spec/runner_spec.rb +0 -13
- data/vendor/rspec/spec/spec_helper.rb +0 -112
- data/vendor/rspec/spec/support/macros.rb +0 -29
- data/vendor/rspec/spec/support/spec_classes.rb +0 -133
- data/vendor/rubyexts/CHANGELOG +0 -2
- data/vendor/rubyexts/LICENSE +0 -20
- data/vendor/rubyexts/README.textile +0 -0
- data/vendor/rubyexts/Rakefile +0 -61
- data/vendor/rubyexts/TODO.txt +0 -6
- data/vendor/rubyexts/lib/rubyexts.rb +0 -102
- data/vendor/rubyexts/lib/rubyexts/array.rb +0 -20
- data/vendor/rubyexts/lib/rubyexts/attribute.rb +0 -151
- data/vendor/rubyexts/lib/rubyexts/capture_io.rb +0 -32
- data/vendor/rubyexts/lib/rubyexts/class.rb +0 -177
- data/vendor/rubyexts/lib/rubyexts/colored_string.rb +0 -103
- data/vendor/rubyexts/lib/rubyexts/enumerable.rb +0 -30
- data/vendor/rubyexts/lib/rubyexts/file.rb +0 -84
- data/vendor/rubyexts/lib/rubyexts/hash.rb +0 -147
- data/vendor/rubyexts/lib/rubyexts/kernel.rb +0 -91
- data/vendor/rubyexts/lib/rubyexts/module.rb +0 -53
- data/vendor/rubyexts/lib/rubyexts/object.rb +0 -56
- data/vendor/rubyexts/lib/rubyexts/object_space.rb +0 -16
- data/vendor/rubyexts/lib/rubyexts/os.rb +0 -89
- data/vendor/rubyexts/lib/rubyexts/platform.rb +0 -27
- data/vendor/rubyexts/lib/rubyexts/random.rb +0 -25
- data/vendor/rubyexts/lib/rubyexts/string.rb +0 -92
- data/vendor/rubyexts/lib/rubyexts/time.rb +0 -15
- data/vendor/rubyexts/lib/rubyexts/time_dsl.rb +0 -62
- data/vendor/rubyexts/lib/rubyexts/try_dup.rb +0 -43
- data/vendor/rubyexts/lib/rubyexts/unique_array.rb +0 -16
- data/vendor/rubyexts/rubyexts.gemspec +0 -36
- data/vendor/rubyexts/script/spec +0 -12
- data/vendor/rubyexts/spec/rubyexts/array_spec.rb +0 -19
- data/vendor/rubyexts/spec/rubyexts/attribute_spec.rb +0 -37
- data/vendor/rubyexts/spec/rubyexts/class_spec.rb +0 -1
- data/vendor/rubyexts/spec/rubyexts/cli_spec.rb +0 -0
- data/vendor/rubyexts/spec/rubyexts/colored_string_spec.rb +0 -9
- data/vendor/rubyexts/spec/rubyexts/enumerable_spec.rb +0 -52
- data/vendor/rubyexts/spec/rubyexts/file_spec.rb +0 -78
- data/vendor/rubyexts/spec/rubyexts/hash_spec.rb +0 -91
- data/vendor/rubyexts/spec/rubyexts/kernel_spec.rb +0 -9
- data/vendor/rubyexts/spec/rubyexts/module_spec.rb +0 -0
- data/vendor/rubyexts/spec/rubyexts/object_space_spec.rb +0 -17
- data/vendor/rubyexts/spec/rubyexts/object_spec.rb +0 -57
- data/vendor/rubyexts/spec/rubyexts/os_spec.rb +0 -121
- data/vendor/rubyexts/spec/rubyexts/platform_spec.rb +0 -0
- data/vendor/rubyexts/spec/rubyexts/random_spec.rb +0 -31
- data/vendor/rubyexts/spec/rubyexts/string_spec.rb +0 -23
- data/vendor/rubyexts/spec/rubyexts/time_dsl_spec.rb +0 -88
- data/vendor/rubyexts/spec/rubyexts/time_spec.rb +0 -11
- data/vendor/rubyexts/spec/rubyexts/unique_array_spec.rb +0 -0
- data/vendor/rubyexts/spec/rubyexts_spec.rb +0 -182
- data/vendor/rubyexts/spec/spec.opts +0 -5
- data/vendor/rubyexts/spec/spec_helper.rb +0 -16
- data/vendor/simple-templater/CHANGELOG +0 -10
- data/vendor/simple-templater/LICENSE +0 -20
- data/vendor/simple-templater/README.textile +0 -136
- data/vendor/simple-templater/Rakefile +0 -61
- data/vendor/simple-templater/TODO.txt +0 -15
- data/vendor/simple-templater/bin/simple-templater +0 -66
- data/vendor/simple-templater/deps.rip +0 -7
- data/vendor/simple-templater/lib/simple-templater.rb +0 -97
- data/vendor/simple-templater/lib/simple-templater/argv_parsing.rb +0 -27
- data/vendor/simple-templater/lib/simple-templater/builder.rb +0 -134
- data/vendor/simple-templater/lib/simple-templater/discoverer.rb +0 -20
- data/vendor/simple-templater/lib/simple-templater/discoverers/gems.rb +0 -79
- data/vendor/simple-templater/lib/simple-templater/discoverers/plain.rb +0 -1
- data/vendor/simple-templater/lib/simple-templater/discoverers/rip.rb +0 -1
- data/vendor/simple-templater/lib/simple-templater/dsl.rb +0 -27
- data/vendor/simple-templater/lib/simple-templater/generator.rb +0 -129
- data/vendor/simple-templater/lib/simple-templater/generator_set.rb +0 -45
- data/vendor/simple-templater/lib/simple-templater/helpers.rb +0 -34
- data/vendor/simple-templater/lib/simple-templater/hooks/hook.rb +0 -76
- data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/git_repository.rb +0 -25
- data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/github.rb +0 -20
- data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/full_name.rb +0 -17
- data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/github.rb +0 -25
- data/vendor/simple-templater/script/spec +0 -14
- data/vendor/simple-templater/simple-templater.gemspec +0 -45
- data/vendor/simple-templater/simple-templater.scope +0 -6
- data/vendor/simple-templater/spec/simple-templater/argv_parsing_spec.rb +0 -41
- data/vendor/simple-templater/spec/simple-templater/builder_spec.rb +0 -1
- data/vendor/simple-templater/spec/simple-templater/discoverers/gems_spec.rb +0 -0
- data/vendor/simple-templater/spec/simple-templater/discoverers/plain_spec.rb +0 -0
- data/vendor/simple-templater/spec/simple-templater/discoverers/rip_spec.rb +0 -0
- data/vendor/simple-templater/spec/simple-templater/generator_set_spec.rb +0 -55
- data/vendor/simple-templater/spec/simple-templater/generator_spec.rb +0 -30
- data/vendor/simple-templater/spec/simple-templater/helpers_spec.rb +0 -81
- data/vendor/simple-templater/spec/simple-templater/hooks/hook_spec.rb +0 -100
- data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/git_repository_spec.rb +0 -25
- data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/github_spec.rb +0 -8
- data/vendor/simple-templater/spec/simple-templater_spec.rb +0 -112
- data/vendor/simple-templater/spec/spec.opts +0 -5
- data/vendor/simple-templater/spec/spec_helper.rb +0 -19
- data/vendor/simple-templater/spec/stubs/gems/cache/test_generator-0.0.1.gem +0 -0
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-generator.scope +0 -8
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-templater.scope +0 -8
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%1_test.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%_test.rb +0 -0
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/README.textile +0 -3
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/script.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%1_test.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%_test.rb +0 -0
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/README.textile +0 -3
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/script.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/test_generator.gemspec +0 -19
- data/vendor/simple-templater/spec/stubs/gems/specifications/test_generator-0.0.1.gemspec +0 -28
- data/vendor/simple-templater/spec/stubs/simple-templater.scope +0 -8
- data/vendor/simple-templater/spec/stubs/test_generator/simple-templater.scope +0 -8
- data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%1_test.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%_test.rb +0 -0
- data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/README.textile +0 -3
- data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/script.rb.rbt +0 -1
- data/vendor/simple-templater/spec/stubs/test_generator/test_generator-0.0.1.gem +0 -0
- data/vendor/simple-templater/spec/stubs/test_generator/test_generator.gemspec +0 -19
- data/vendor/simple-templater/stubs/project/content/%name%.gemspec.rbt +0 -37
- data/vendor/simple-templater/stubs/project/content/CHANGELOG +0 -2
- data/vendor/simple-templater/stubs/project/content/LICENSE.rbt +0 -20
- data/vendor/simple-templater/stubs/project/content/README.textile.rbt +0 -19
- data/vendor/simple-templater/stubs/project/content/Rakefile +0 -39
- data/vendor/simple-templater/stubs/project/content/TODO.txt +0 -0
- data/vendor/simple-templater/stubs/project/content/bin/%name%.rbt +0 -14
- data/vendor/simple-templater/stubs/project/content/deps.rip +0 -5
- data/vendor/simple-templater/stubs/project/content/lib/%name%.rb.rbt +0 -5
- data/vendor/simple-templater/stubs/project/content/spec/%name%_spec.rb.rbt +0 -10
- data/vendor/simple-templater/stubs/project/content/spec/spec.opts +0 -5
- data/vendor/simple-templater/stubs/project/content/spec/spec_helper.rb.rbt +0 -11
- data/vendor/simple-templater/stubs/project/metadata.yml +0 -3
- data/vendor/simple-templater/stubs/project/postprocess.rb +0 -13
- data/vendor/simple-templater/stubs/project/setup.rb +0 -13
- data/vendor/simple-templater/stubs/stub/content/metadata.yml.rbt +0 -3
- data/vendor/simple-templater/stubs/stub/content/postprocess.rb +0 -11
- data/vendor/simple-templater/stubs/stub/content/setup.rb +0 -10
- data/vendor/simple-templater/stubs/stub/metadata.yml +0 -3
- data/vendor/simple-templater/stubs/stub/postprocess.rb +0 -9
- data/vendor/simple-templater/stubs/stub/setup.rb +0 -15
- data/vendor/simple-templater/vendor/abstract/ChangeLog +0 -3
- data/vendor/simple-templater/vendor/abstract/README.txt +0 -57
- data/vendor/simple-templater/vendor/abstract/abstract.gemspec +0 -48
- data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.html +0 -134
- data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.src/M000002.html +0 -24
- data/vendor/simple-templater/vendor/abstract/doc/classes/Module.html +0 -140
- data/vendor/simple-templater/vendor/abstract/doc/classes/Module.src/M000001.html +0 -20
- data/vendor/simple-templater/vendor/abstract/doc/created.rid +0 -1
- data/vendor/simple-templater/vendor/abstract/doc/files/README_txt.html +0 -173
- data/vendor/simple-templater/vendor/abstract/doc/files/lib/abstract_rb.html +0 -137
- data/vendor/simple-templater/vendor/abstract/doc/fr_class_index.html +0 -28
- data/vendor/simple-templater/vendor/abstract/doc/fr_file_index.html +0 -28
- data/vendor/simple-templater/vendor/abstract/doc/fr_method_index.html +0 -28
- data/vendor/simple-templater/vendor/abstract/doc/index.html +0 -24
- data/vendor/simple-templater/vendor/abstract/doc/rdoc-style.css +0 -208
- data/vendor/simple-templater/vendor/abstract/lib/abstract.rb +0 -75
- data/vendor/simple-templater/vendor/abstract/setup.rb +0 -1331
- data/vendor/simple-templater/vendor/abstract/test/test.rb +0 -91
- data/vendor/thor/CHANGELOG.rdoc +0 -82
- data/vendor/thor/LICENSE +0 -20
- data/vendor/thor/README.rdoc +0 -234
- data/vendor/thor/Thorfile +0 -63
- data/vendor/thor/bin/rake2thor +0 -86
- data/vendor/thor/bin/thor +0 -7
- data/vendor/thor/lib/thor.rb +0 -242
- data/vendor/thor/lib/thor/actions.rb +0 -273
- data/vendor/thor/lib/thor/actions/create_file.rb +0 -103
- data/vendor/thor/lib/thor/actions/directory.rb +0 -93
- data/vendor/thor/lib/thor/actions/empty_directory.rb +0 -134
- data/vendor/thor/lib/thor/actions/file_manipulation.rb +0 -219
- data/vendor/thor/lib/thor/actions/inject_into_file.rb +0 -101
- data/vendor/thor/lib/thor/base.rb +0 -517
- data/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +0 -75
- data/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -100
- data/vendor/thor/lib/thor/error.rb +0 -27
- data/vendor/thor/lib/thor/group.rb +0 -263
- data/vendor/thor/lib/thor/invocation.rb +0 -178
- data/vendor/thor/lib/thor/parser.rb +0 -4
- data/vendor/thor/lib/thor/parser/argument.rb +0 -67
- data/vendor/thor/lib/thor/parser/arguments.rb +0 -145
- data/vendor/thor/lib/thor/parser/option.rb +0 -132
- data/vendor/thor/lib/thor/parser/options.rb +0 -142
- data/vendor/thor/lib/thor/rake_compat.rb +0 -66
- data/vendor/thor/lib/thor/runner.rb +0 -299
- data/vendor/thor/lib/thor/shell.rb +0 -78
- data/vendor/thor/lib/thor/shell/basic.rb +0 -219
- data/vendor/thor/lib/thor/shell/color.rb +0 -108
- data/vendor/thor/lib/thor/task.rb +0 -122
- data/vendor/thor/lib/thor/util.rb +0 -251
- data/vendor/thor/lib/thor/version.rb +0 -3
- data/vendor/thor/spec/actions/create_file_spec.rb +0 -170
- data/vendor/thor/spec/actions/directory_spec.rb +0 -130
- data/vendor/thor/spec/actions/empty_directory_spec.rb +0 -91
- data/vendor/thor/spec/actions/file_manipulation_spec.rb +0 -249
- data/vendor/thor/spec/actions/inject_into_file_spec.rb +0 -106
- data/vendor/thor/spec/actions_spec.rb +0 -291
- data/vendor/thor/spec/base_spec.rb +0 -236
- data/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +0 -43
- data/vendor/thor/spec/core_ext/ordered_hash_spec.rb +0 -115
- data/vendor/thor/spec/fixtures/application.rb +0 -2
- data/vendor/thor/spec/fixtures/bundle/execute.rb +0 -6
- data/vendor/thor/spec/fixtures/bundle/main.thor +0 -1
- data/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +0 -1
- data/vendor/thor/spec/fixtures/doc/README +0 -3
- data/vendor/thor/spec/fixtures/doc/config.rb +0 -1
- data/vendor/thor/spec/fixtures/group.thor +0 -83
- data/vendor/thor/spec/fixtures/invoke.thor +0 -112
- data/vendor/thor/spec/fixtures/script.thor +0 -126
- data/vendor/thor/spec/fixtures/task.thor +0 -10
- data/vendor/thor/spec/group_spec.rb +0 -177
- data/vendor/thor/spec/invocation_spec.rb +0 -107
- data/vendor/thor/spec/parser/argument_spec.rb +0 -47
- data/vendor/thor/spec/parser/arguments_spec.rb +0 -64
- data/vendor/thor/spec/parser/option_spec.rb +0 -212
- data/vendor/thor/spec/parser/options_spec.rb +0 -255
- data/vendor/thor/spec/rake_compat_spec.rb +0 -68
- data/vendor/thor/spec/runner_spec.rb +0 -204
- data/vendor/thor/spec/shell/basic_spec.rb +0 -211
- data/vendor/thor/spec/shell/color_spec.rb +0 -41
- data/vendor/thor/spec/shell_spec.rb +0 -25
- data/vendor/thor/spec/spec.opts +0 -1
- data/vendor/thor/spec/spec_helper.rb +0 -52
- data/vendor/thor/spec/task_spec.rb +0 -88
- data/vendor/thor/spec/thor_spec.rb +0 -234
- data/vendor/thor/spec/util_spec.rb +0 -196
@@ -1,130 +0,0 @@
|
|
1
|
-
require 'test/spec'
|
2
|
-
|
3
|
-
require 'rack/handler/webrick'
|
4
|
-
require 'rack/lint'
|
5
|
-
require 'rack/response'
|
6
|
-
require 'testrequest'
|
7
|
-
|
8
|
-
Thread.abort_on_exception = true
|
9
|
-
|
10
|
-
context "Rack::Handler::WEBrick" do
|
11
|
-
include TestRequest::Helpers
|
12
|
-
|
13
|
-
setup do
|
14
|
-
@server = WEBrick::HTTPServer.new(:Host => @host='0.0.0.0',
|
15
|
-
:Port => @port=9202,
|
16
|
-
:Logger => WEBrick::Log.new(nil, WEBrick::BasicLog::WARN),
|
17
|
-
:AccessLog => [])
|
18
|
-
@server.mount "/test", Rack::Handler::WEBrick,
|
19
|
-
Rack::Lint.new(TestRequest.new)
|
20
|
-
Thread.new { @server.start }
|
21
|
-
trap(:INT) { @server.shutdown }
|
22
|
-
end
|
23
|
-
|
24
|
-
specify "should respond" do
|
25
|
-
lambda {
|
26
|
-
GET("/test")
|
27
|
-
}.should.not.raise
|
28
|
-
end
|
29
|
-
|
30
|
-
specify "should be a WEBrick" do
|
31
|
-
GET("/test")
|
32
|
-
status.should.be 200
|
33
|
-
response["SERVER_SOFTWARE"].should =~ /WEBrick/
|
34
|
-
response["HTTP_VERSION"].should.equal "HTTP/1.1"
|
35
|
-
response["SERVER_PROTOCOL"].should.equal "HTTP/1.1"
|
36
|
-
response["SERVER_PORT"].should.equal "9202"
|
37
|
-
response["SERVER_NAME"].should.equal "0.0.0.0"
|
38
|
-
end
|
39
|
-
|
40
|
-
specify "should have rack headers" do
|
41
|
-
GET("/test")
|
42
|
-
response["rack.version"].should.equal [1,0]
|
43
|
-
response["rack.multithread"].should.be true
|
44
|
-
response["rack.multiprocess"].should.be false
|
45
|
-
response["rack.run_once"].should.be false
|
46
|
-
end
|
47
|
-
|
48
|
-
specify "should have CGI headers on GET" do
|
49
|
-
GET("/test")
|
50
|
-
response["REQUEST_METHOD"].should.equal "GET"
|
51
|
-
response["SCRIPT_NAME"].should.equal "/test"
|
52
|
-
response["REQUEST_PATH"].should.equal "/"
|
53
|
-
response["PATH_INFO"].should.be.nil
|
54
|
-
response["QUERY_STRING"].should.equal ""
|
55
|
-
response["test.postdata"].should.equal ""
|
56
|
-
|
57
|
-
GET("/test/foo?quux=1")
|
58
|
-
response["REQUEST_METHOD"].should.equal "GET"
|
59
|
-
response["SCRIPT_NAME"].should.equal "/test"
|
60
|
-
response["REQUEST_PATH"].should.equal "/"
|
61
|
-
response["PATH_INFO"].should.equal "/foo"
|
62
|
-
response["QUERY_STRING"].should.equal "quux=1"
|
63
|
-
|
64
|
-
GET("/test/foo%25encoding?quux=1")
|
65
|
-
response["REQUEST_METHOD"].should.equal "GET"
|
66
|
-
response["SCRIPT_NAME"].should.equal "/test"
|
67
|
-
response["REQUEST_PATH"].should.equal "/"
|
68
|
-
response["PATH_INFO"].should.equal "/foo%25encoding"
|
69
|
-
response["QUERY_STRING"].should.equal "quux=1"
|
70
|
-
end
|
71
|
-
|
72
|
-
specify "should have CGI headers on POST" do
|
73
|
-
POST("/test", {"rack-form-data" => "23"}, {'X-test-header' => '42'})
|
74
|
-
status.should.equal 200
|
75
|
-
response["REQUEST_METHOD"].should.equal "POST"
|
76
|
-
response["SCRIPT_NAME"].should.equal "/test"
|
77
|
-
response["REQUEST_PATH"].should.equal "/"
|
78
|
-
response["QUERY_STRING"].should.equal ""
|
79
|
-
response["HTTP_X_TEST_HEADER"].should.equal "42"
|
80
|
-
response["test.postdata"].should.equal "rack-form-data=23"
|
81
|
-
end
|
82
|
-
|
83
|
-
specify "should support HTTP auth" do
|
84
|
-
GET("/test", {:user => "ruth", :passwd => "secret"})
|
85
|
-
response["HTTP_AUTHORIZATION"].should.equal "Basic cnV0aDpzZWNyZXQ="
|
86
|
-
end
|
87
|
-
|
88
|
-
specify "should set status" do
|
89
|
-
GET("/test?secret")
|
90
|
-
status.should.equal 403
|
91
|
-
response["rack.url_scheme"].should.equal "http"
|
92
|
-
end
|
93
|
-
|
94
|
-
specify "should correctly set cookies" do
|
95
|
-
@server.mount "/cookie-test", Rack::Handler::WEBrick,
|
96
|
-
Rack::Lint.new(lambda { |req|
|
97
|
-
res = Rack::Response.new
|
98
|
-
res.set_cookie "one", "1"
|
99
|
-
res.set_cookie "two", "2"
|
100
|
-
res.finish
|
101
|
-
})
|
102
|
-
|
103
|
-
Net::HTTP.start(@host, @port) { |http|
|
104
|
-
res = http.get("/cookie-test")
|
105
|
-
res.code.to_i.should.equal 200
|
106
|
-
res.get_fields("set-cookie").should.equal ["one=1", "two=2"]
|
107
|
-
}
|
108
|
-
end
|
109
|
-
|
110
|
-
specify "should provide a .run" do
|
111
|
-
block_ran = false
|
112
|
-
catch(:done) {
|
113
|
-
Rack::Handler::WEBrick.run(lambda {},
|
114
|
-
{:Port => 9210,
|
115
|
-
:Logger => WEBrick::Log.new(nil, WEBrick::BasicLog::WARN),
|
116
|
-
:AccessLog => []}) { |server|
|
117
|
-
block_ran = true
|
118
|
-
server.should.be.kind_of WEBrick::HTTPServer
|
119
|
-
@s = server
|
120
|
-
throw :done
|
121
|
-
}
|
122
|
-
}
|
123
|
-
block_ran.should.be true
|
124
|
-
@s.shutdown
|
125
|
-
end
|
126
|
-
|
127
|
-
teardown do
|
128
|
-
@server.shutdown
|
129
|
-
end
|
130
|
-
end
|
@@ -1,154 +0,0 @@
|
|
1
|
-
require 'test/spec'
|
2
|
-
require 'testrequest'
|
3
|
-
require 'rack/server'
|
4
|
-
require 'open3'
|
5
|
-
|
6
|
-
begin
|
7
|
-
require "mongrel"
|
8
|
-
|
9
|
-
context "rackup" do
|
10
|
-
include TestRequest::Helpers
|
11
|
-
|
12
|
-
def run_rackup(*args)
|
13
|
-
options = args.last.is_a?(Hash) ? args.pop : {}
|
14
|
-
flags = args.first
|
15
|
-
@host = options[:host] || "0.0.0.0"
|
16
|
-
@port = options[:port] || 9292
|
17
|
-
|
18
|
-
Dir.chdir("#{root}/test/rackup") do
|
19
|
-
@in, @rackup, @err = Open3.popen3("#{Gem.ruby} -S #{rackup} #{flags}")
|
20
|
-
end
|
21
|
-
|
22
|
-
return if options[:port] == false
|
23
|
-
|
24
|
-
# Wait until the server is available
|
25
|
-
begin
|
26
|
-
GET("/")
|
27
|
-
rescue
|
28
|
-
sleep 0.05
|
29
|
-
retry
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
def output
|
34
|
-
@rackup.read
|
35
|
-
end
|
36
|
-
|
37
|
-
after do
|
38
|
-
# This doesn't actually return a response, so we rescue
|
39
|
-
GET "/die" rescue nil
|
40
|
-
|
41
|
-
Dir["#{root}/**/*.pid"].each do |file|
|
42
|
-
File.delete(file)
|
43
|
-
end
|
44
|
-
|
45
|
-
File.delete("#{root}/log_output") if File.exist?("#{root}/log_output")
|
46
|
-
end
|
47
|
-
|
48
|
-
specify "rackup" do
|
49
|
-
run_rackup
|
50
|
-
response["PATH_INFO"].should.equal '/'
|
51
|
-
response["test.$DEBUG"].should.be false
|
52
|
-
response["test.$EVAL"].should.be nil
|
53
|
-
response["test.$VERBOSE"].should.be false
|
54
|
-
response["test.Ping"].should.be nil
|
55
|
-
response["SERVER_SOFTWARE"].should.not =~ /webrick/
|
56
|
-
end
|
57
|
-
|
58
|
-
specify "rackup --help" do
|
59
|
-
run_rackup "--help", :port => false
|
60
|
-
output.should.match /--port/
|
61
|
-
end
|
62
|
-
|
63
|
-
specify "rackup --port" do
|
64
|
-
run_rackup "--port 9000", :port => 9000
|
65
|
-
response["SERVER_PORT"].should.equal "9000"
|
66
|
-
end
|
67
|
-
|
68
|
-
specify "rackup --debug" do
|
69
|
-
run_rackup "--debug"
|
70
|
-
response["test.$DEBUG"].should.be true
|
71
|
-
end
|
72
|
-
|
73
|
-
specify "rackup --eval" do
|
74
|
-
run_rackup %{--eval "BUKKIT = 'BUKKIT'"}
|
75
|
-
response["test.$EVAL"].should.equal "BUKKIT"
|
76
|
-
end
|
77
|
-
|
78
|
-
specify "rackup --warn" do
|
79
|
-
run_rackup %{--warn}
|
80
|
-
response["test.$VERBOSE"].should.be true
|
81
|
-
end
|
82
|
-
|
83
|
-
specify "rackup --include" do
|
84
|
-
run_rackup %{--include /foo/bar}
|
85
|
-
response["test.$LOAD_PATH"].should.include "/foo/bar"
|
86
|
-
end
|
87
|
-
|
88
|
-
specify "rackup --require" do
|
89
|
-
run_rackup %{--require ping}
|
90
|
-
response["test.Ping"].should.equal "constant"
|
91
|
-
end
|
92
|
-
|
93
|
-
specify "rackup --server" do
|
94
|
-
run_rackup %{--server webrick}
|
95
|
-
response["SERVER_SOFTWARE"].should =~ /webrick/i
|
96
|
-
end
|
97
|
-
|
98
|
-
specify "rackup --host" do
|
99
|
-
run_rackup %{--host 127.0.0.1}, :host => "127.0.0.1"
|
100
|
-
response["REMOTE_ADDR"].should.equal "127.0.0.1"
|
101
|
-
end
|
102
|
-
|
103
|
-
specify "rackup --daemonize --pid" do
|
104
|
-
run_rackup %{--daemonize --pid testing.pid}
|
105
|
-
status.should.be 200
|
106
|
-
@rackup.should.be.eof?
|
107
|
-
Dir["#{root}/**/testing.pid"].should.not.be.empty?
|
108
|
-
end
|
109
|
-
|
110
|
-
specify "rackup --pid" do
|
111
|
-
run_rackup %{--pid testing.pid}
|
112
|
-
status.should.be 200
|
113
|
-
Dir["#{root}/**/testing.pid"].should.not.be.empty?
|
114
|
-
end
|
115
|
-
|
116
|
-
specify "rackup --version" do
|
117
|
-
run_rackup %{--version}, :port => false
|
118
|
-
output.should =~ /1.0/
|
119
|
-
end
|
120
|
-
|
121
|
-
specify "rackup --env development includes lint" do
|
122
|
-
run_rackup
|
123
|
-
GET("/broken_lint")
|
124
|
-
status.should.be 500
|
125
|
-
end
|
126
|
-
|
127
|
-
specify "rackup --env deployment does not include lint" do
|
128
|
-
run_rackup %{--env deployment}
|
129
|
-
GET("/broken_lint")
|
130
|
-
status.should.be 200
|
131
|
-
end
|
132
|
-
|
133
|
-
specify "rackup --env none does not include lint" do
|
134
|
-
run_rackup %{--env none}
|
135
|
-
GET("/broken_lint")
|
136
|
-
status.should.be 200
|
137
|
-
end
|
138
|
-
|
139
|
-
specify "rackup --env deployment does log" do
|
140
|
-
run_rackup %{--env deployment}
|
141
|
-
log = File.read(response["test.stderr"])
|
142
|
-
log.should.be.empty?
|
143
|
-
end
|
144
|
-
|
145
|
-
specify "rackup --env none does not log" do
|
146
|
-
run_rackup %{--env none}
|
147
|
-
GET("/")
|
148
|
-
log = File.read(response["test.stderr"])
|
149
|
-
log.should.be.empty?
|
150
|
-
end
|
151
|
-
end
|
152
|
-
rescue LoadError
|
153
|
-
$stderr.puts "Skipping rackup --server tests (mongrel is required). `gem install thin` and try again."
|
154
|
-
end
|
@@ -1,72 +0,0 @@
|
|
1
|
-
require 'yaml'
|
2
|
-
require 'net/http'
|
3
|
-
|
4
|
-
class TestRequest
|
5
|
-
def call(env)
|
6
|
-
status = env["QUERY_STRING"] =~ /secret/ ? 403 : 200
|
7
|
-
env["test.postdata"] = env["rack.input"].read
|
8
|
-
body = env.to_yaml
|
9
|
-
size = body.respond_to?(:bytesize) ? body.bytesize : body.size
|
10
|
-
[status, {"Content-Type" => "text/yaml", "Content-Length" => size.to_s}, [body]]
|
11
|
-
end
|
12
|
-
|
13
|
-
module Helpers
|
14
|
-
attr_reader :status, :response
|
15
|
-
|
16
|
-
ROOT = File.expand_path(File.dirname(__FILE__) + "/..")
|
17
|
-
ENV["RUBYOPT"] = "-I#{ROOT}/lib -rubygems"
|
18
|
-
|
19
|
-
def root
|
20
|
-
ROOT
|
21
|
-
end
|
22
|
-
|
23
|
-
def rackup
|
24
|
-
"#{ROOT}/bin/rackup"
|
25
|
-
end
|
26
|
-
|
27
|
-
def GET(path, header={})
|
28
|
-
Net::HTTP.start(@host, @port) { |http|
|
29
|
-
user = header.delete(:user)
|
30
|
-
passwd = header.delete(:passwd)
|
31
|
-
|
32
|
-
get = Net::HTTP::Get.new(path, header)
|
33
|
-
get.basic_auth user, passwd if user && passwd
|
34
|
-
http.request(get) { |response|
|
35
|
-
@status = response.code.to_i
|
36
|
-
begin
|
37
|
-
@response = YAML.load(response.body)
|
38
|
-
rescue ArgumentError
|
39
|
-
@response = nil
|
40
|
-
end
|
41
|
-
}
|
42
|
-
}
|
43
|
-
end
|
44
|
-
|
45
|
-
def POST(path, formdata={}, header={})
|
46
|
-
Net::HTTP.start(@host, @port) { |http|
|
47
|
-
user = header.delete(:user)
|
48
|
-
passwd = header.delete(:passwd)
|
49
|
-
|
50
|
-
post = Net::HTTP::Post.new(path, header)
|
51
|
-
post.form_data = formdata
|
52
|
-
post.basic_auth user, passwd if user && passwd
|
53
|
-
http.request(post) { |response|
|
54
|
-
@status = response.code.to_i
|
55
|
-
@response = YAML.load(response.body)
|
56
|
-
}
|
57
|
-
}
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
class StreamingRequest
|
63
|
-
def self.call(env)
|
64
|
-
[200, {"Content-Type" => "text/plain"}, new]
|
65
|
-
end
|
66
|
-
|
67
|
-
def each
|
68
|
-
yield "hello there!\n"
|
69
|
-
sleep 5
|
70
|
-
yield "that is all.\n"
|
71
|
-
end
|
72
|
-
end
|
data/vendor/rspec/History.rdoc
DELETED
@@ -1,1510 +0,0 @@
|
|
1
|
-
=== development (in git)
|
2
|
-
|
3
|
-
* enhancements
|
4
|
-
* added match_unless_raises to matcher DSL
|
5
|
-
* supports easy wrapping of t/u assertions in matchers
|
6
|
-
* thanks to Chad Fowler and Glenn Vanderburg for the name
|
7
|
-
* and_yield provides configurable eval_context
|
8
|
-
* Eric Meyer & David Chelimsky
|
9
|
-
|
10
|
-
* bug fixes
|
11
|
-
* don't define top-level context() method when running in IRB (#899)
|
12
|
-
* remove Ruby warning for uninitialized ivar (Bryan Helmkamp - #892)
|
13
|
-
* fully qualify reference to Default (Alex Sharp - #895)
|
14
|
-
|
15
|
-
=== Version 1.2.9 / 2009-10-05
|
16
|
-
|
17
|
-
* enhancements
|
18
|
-
* manage backtrace-ignore patterns with Spec::Runner.configure (Martin
|
19
|
-
Emde). Closes #870.
|
20
|
-
* friendly mock argument expectation failure message (Tim Harper). Closes
|
21
|
-
#868.
|
22
|
-
* added double() as alias for stub() and mock()
|
23
|
-
* failure messages for doubles, mocks and stubs use the right name
|
24
|
-
* add let() method to assign memoized attributes (suggestion from Stuart
|
25
|
-
Halloway). Closes #857.
|
26
|
-
* add its method so you can say:
|
27
|
-
describe Array do
|
28
|
-
its(:length) { should == 0 }
|
29
|
-
(Stephen Touset). Closes #833
|
30
|
-
* spec command automatically uses spec/spec.opts if it is present
|
31
|
-
(suggestion from Yehuda Katz)
|
32
|
-
* rspec now adds PROJECT_ROOT/lib and PROJECT_ROOT/spec to the load path
|
33
|
-
* determines PROJECT_ROOT by recursing up until it finds a directory
|
34
|
-
that has a ./spec directory (thanks to Scott Taylor)
|
35
|
-
* supports require 'spec_helper'
|
36
|
-
* supports running specs from the PROJECT_ROOT or any directory
|
37
|
-
below it
|
38
|
-
* closes #733
|
39
|
-
* better handling of determining test names in test/unit/interop mode
|
40
|
-
* Joe Ferris
|
41
|
-
* closes #854
|
42
|
-
|
43
|
-
* bug fixes
|
44
|
-
|
45
|
-
* Fixed problem with colorized output when writing to a file
|
46
|
-
* Corey Ehmke
|
47
|
-
* closes #777
|
48
|
-
|
49
|
-
* not really a bug fix or enhancement
|
50
|
-
* temporarily moved heckle feature to features-pending (waiting to see what
|
51
|
-
happens with
|
52
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=26786&group_id=1513&atid=5921)
|
53
|
-
|
54
|
-
=== Version 1.2.8 / 2009-07-16
|
55
|
-
|
56
|
-
* enhancements
|
57
|
-
* better messages for should[_not] be_nil (Chad Humphries and Rob Sanheim)
|
58
|
-
* should and should_not accept optional custom message
|
59
|
-
(suggestion from Rob Sanheim)
|
60
|
-
* result.should be_nil, "expected result to be nil"
|
61
|
-
* added 'spec/stubs/cucumber' to plug RSpec's stubbing framework into
|
62
|
-
Cucumber scenarios.
|
63
|
-
* added unstub method to remove a stub mid-example (Scott Taylor). Closes
|
64
|
-
#853.
|
65
|
-
* add more readable diff when expected and actual are hashes (Ryan Bigg).
|
66
|
-
Closes #848.
|
67
|
-
|
68
|
-
* bug fixes
|
69
|
-
* fixed --line option for ruby 1.9.1
|
70
|
-
* fix stub_chain conflict between two chains starting with the same message
|
71
|
-
(Mike Rohland). Closes #846.
|
72
|
-
|
73
|
-
=== Version 1.2.7 / 2009-06-22
|
74
|
-
|
75
|
-
* enhancments
|
76
|
-
* added support for fakes using obj.stub(:method) { # implementation }
|
77
|
-
* allow subject { self } (Jarmo Pertman). Closes #816.
|
78
|
-
* friendly error message when a matcher returns nil on a failure message
|
79
|
-
* add ruby_cmd option to SpecTask (Rick DeNatale). Closes #823.
|
80
|
-
* also added missing specs for SpecTask - thanks Rick!
|
81
|
-
* add support for generating matchers with fluent interfaces with the
|
82
|
-
Matcher DSL
|
83
|
-
|
84
|
-
* bug fixes
|
85
|
-
* NegativeOperatorMatcher now returns false (Wesley Beary). Closes #812.
|
86
|
-
* derive MockExpectationError from Exception rather than StandardError
|
87
|
-
(Kerry Buckley). Closes #830.
|
88
|
-
* fix bug where multi-line failure messages weren't getting picked up by
|
89
|
-
autotest (Jarmo Pertman). Closes #832.
|
90
|
-
* --line_number now works for it { should xxx } format (assist from Fred
|
91
|
-
Lee)
|
92
|
-
* warn instead of raise when there is no description supplied for an
|
93
|
-
example. Closes #840.
|
94
|
-
|
95
|
-
=== Version 1.2.6 / 2009-04-30
|
96
|
-
|
97
|
-
* bug fixes
|
98
|
-
* gem actually built with spec executable
|
99
|
-
|
100
|
-
=== Version 1.2.5 / 2009-04-29
|
101
|
-
|
102
|
-
* enhancements
|
103
|
-
|
104
|
-
* name argument to mock/stub is now optional (closes #782)
|
105
|
-
* you can do mock(:foo => "woo", :bar => "car")
|
106
|
-
* expect { this_block }.to change{this.expression}.from(old_value).to(new_value)
|
107
|
-
* expect { this_block }.to raise_error
|
108
|
-
* better failiure messages for equal matcher (James Byrne). Closes #804.
|
109
|
-
* add stub_chain method
|
110
|
-
* also alias_method :stub, :stub!, so you can stub with less bang
|
111
|
-
* added options to example_group_proxy
|
112
|
-
|
113
|
-
* bug fixes
|
114
|
-
|
115
|
-
* ensure correct handling of ordered message expectations with duplicate
|
116
|
-
expectations (NigelThorne). Closes #793.
|
117
|
-
* get matcher backwards compat working w/ ruby 19
|
118
|
-
* don't define instance_exec unless it is not defined
|
119
|
-
* was doing a version check, but turns out that didn't cover alternative
|
120
|
-
implementations like JRuby
|
121
|
-
* fix bug where in some circumstances, loading lib/spec/interop/test.rb
|
122
|
-
raised an error (tsechingho). Closes #803.
|
123
|
-
* make sure specs only run against spec server when using drb (patch from Chuck Grindel). Closes #797.
|
124
|
-
* remove deprecation warning in example_pending when using FailingExamplesFormatter. Closes #794.
|
125
|
-
* Access explicit subject from nested groups of arbitrary depth. Closes #756.
|
126
|
-
|
127
|
-
=== Version 1.2.4 / 2009-04-13
|
128
|
-
|
129
|
-
* bug fix
|
130
|
-
|
131
|
-
* just one - update the manifest
|
132
|
-
|
133
|
-
=== Version 1.2.3 / 2009-04-13
|
134
|
-
|
135
|
-
* deprecations
|
136
|
-
|
137
|
-
* BaseFormatter#add_example_group (use #example_group_started instead)
|
138
|
-
* ExampleGroupProxy#backtrace (use #location instead)
|
139
|
-
* ExampleProxy#backtrace (use #location instead)
|
140
|
-
* BaseFormatter#example_pending now expects two arguments. The third
|
141
|
-
argument is deprecated.
|
142
|
-
* ExampleGroupProxy#filtered_description. This was only used in one place
|
143
|
-
internally, and was a confusing solution to the problem. If you've got a
|
144
|
-
custom formatter that uses it, you can just use
|
145
|
-
ExampleGroupProxy#description and modify it directly.
|
146
|
-
* predicate_matchers (use the new Matcher DSL instead)
|
147
|
-
* Spec::Matchers.create (use Spec::Matchers.define instead)
|
148
|
-
|
149
|
-
* enhancements
|
150
|
-
|
151
|
-
* support for specifying single examples with colon syntax. Closes #712.
|
152
|
-
(Ben Mabey)
|
153
|
-
* you can now say "spec some_spec.rb:12" in addition to "spec some_spec.rb
|
154
|
-
--line 12"
|
155
|
-
* run specs locally with --drb if no drb server is running. Closes #780.
|
156
|
-
* still prints "No server running" to stderr
|
157
|
-
|
158
|
-
* bug fixes
|
159
|
-
|
160
|
-
* support expectations on DelegateClass (Clifford T. Matthews). Closes #48.
|
161
|
-
* Fixed match_array blows up if elements can't be sorted (Jeff Dean). Closes #779.
|
162
|
-
|
163
|
-
=== Version 1.2.2 / 2009-03-22
|
164
|
-
|
165
|
-
Bug-fix release (fixes regression introduced in 1.2.1)
|
166
|
-
|
167
|
-
* bug fixes
|
168
|
-
|
169
|
-
* fixed bug in which spec_parser raised an error for custom example group
|
170
|
-
base classes
|
171
|
-
|
172
|
-
=== Version 1.2.1 / 2009-03-22
|
173
|
-
|
174
|
-
This is a bug-fix release, recommended for anybody who has already upgraded to
|
175
|
-
rspec-1.2.0.
|
176
|
-
|
177
|
-
See Upgrade.rdoc for information about upgrading to rspec-1.2.1
|
178
|
-
|
179
|
-
* enhancements
|
180
|
-
|
181
|
-
* matchers, including the new DSL, easily added to your test/unit tests
|
182
|
-
* added support for 0 to n args in matcher DSL
|
183
|
-
* restored loading rubygems when necessary
|
184
|
-
* if you really don't want to use rubygems, you
|
185
|
-
can set an NO_RUBYGEMS environment
|
186
|
-
variable, and RSpec won't force it on you.
|
187
|
-
* added -u/--debugger option (Rick DeNatale) #262.
|
188
|
-
* just add "debugger" anywhere in your code and run spec path/to/code --debugger
|
189
|
-
* rename ExampleDescription to ExampleProxy
|
190
|
-
* pass ExampleProxy to example_started(). Closes #738, #743
|
191
|
-
* thanks to Tobias Grimm (Eclipse) fort the patch and Roman Chernyatchik
|
192
|
-
(JetBrains, RubyMine) for the assist
|
193
|
-
|
194
|
-
* bug fixes
|
195
|
-
|
196
|
-
* subject (implicit or explicit) is now properly inherited by nested groups. Closes #744.
|
197
|
-
|
198
|
-
=== Version 1.2.0 / 2009-03-15
|
199
|
-
|
200
|
-
* warnings:
|
201
|
-
|
202
|
-
* If you use the ruby command to run specs instead of the spec command, you'll
|
203
|
-
need to require 'spec/autorun' or they won't run. This won't affect you if
|
204
|
-
you use the spec command or the Spec::Rake::SpecTask that ships with RSpec.
|
205
|
-
|
206
|
-
* require 'spec/test/unit' to invoke test/unit interop if you're using
|
207
|
-
RSpec's core (this is handled implicitly with spec-rails)
|
208
|
-
|
209
|
-
* setup and teardown are gone - use before and after instead
|
210
|
-
|
211
|
-
* you can still use setup and teardown if you're using
|
212
|
-
Test::Unit::TestCase as the base ExampleGroup class (which is implicit
|
213
|
-
in rspec-rails)
|
214
|
-
|
215
|
-
* The matcher protocol has been improved. The old protocol is still
|
216
|
-
supported, so as long as you're not monkey patching rspec's built-in
|
217
|
-
matchers, or using extension libraries that do, this should not affect
|
218
|
-
you. If you run into trouble, you'll just need to change:
|
219
|
-
|
220
|
-
failure_message => failure_message_for_should
|
221
|
-
negative_failure_message => failure_message_for_should_not
|
222
|
-
|
223
|
-
* All references to rubygems have been removed from within rspec's code.
|
224
|
-
|
225
|
-
* NOTE that they have been restored in 1.2.1, above
|
226
|
-
|
227
|
-
* See http://gist.github.com/54177 for rationale and suggestions on
|
228
|
-
alternative approaches to loading rubygems
|
229
|
-
|
230
|
-
* deprecations
|
231
|
-
|
232
|
-
* BaseTextFormatter#colourize - use colorize_failure instead.
|
233
|
-
* BaseTextFormatter#magenta - use red instead.
|
234
|
-
|
235
|
-
* enhancements
|
236
|
-
|
237
|
-
* cleaner integration with with heckle-1.4.2
|
238
|
-
* allow registering example groups with a path-like key (Pat Maddox)
|
239
|
-
* start DRb service at "druby://localhost:0" (Hongli Lai) - See http://redmine.ruby-lang.org/issues/show/496
|
240
|
-
* consistent reporting of errors as failures
|
241
|
-
* added spec/test/unit as more intuitive path to loading test/unit interop lib
|
242
|
-
* added explicit autorun feature for running specs with ruby command
|
243
|
-
* added handling for does_not_match? for matchers that want to know the context in which they were called
|
244
|
-
* lots of ruby 1.9.1 compatibility fixes from Chad Humprhies
|
245
|
-
* improved feedback from be_kind_of/be_a_kind_of/be_instance_of/be_an_instance_of (Jakub Šťastný)
|
246
|
-
* added --format silent (l) option, which is now the default when running --heckle (Bob Aman)
|
247
|
-
* sexy new custom matcher creation (Corey Haines & David Chelimsky - initial concept by Yehuda Katz)
|
248
|
-
* improved matcher protocol - old one is still supported, but new one is cleaner and prefered
|
249
|
-
|
250
|
-
* bug fixes
|
251
|
-
|
252
|
-
* support delegating operator matchers to subject with should_not
|
253
|
-
* all arguments are included if --drb is specified in spec.opts (Neil Buckley). Closes #671.
|
254
|
-
* added --autospec option hack (used internally) to get --color to work when using --drb and autospec.
|
255
|
-
* Fixed mock framework failure message bug in which similar calls were excluded from the output
|
256
|
-
* cryptic error message on change.rb when the from value is wrong (Michael Murray). Closes #706.
|
257
|
-
|
258
|
-
=== Version 1.1.12 / 2009-01-11
|
259
|
-
|
260
|
-
WARNING: there was a stub/mock bug in 1.1.11 that allowed a structure that was
|
261
|
-
not intended:
|
262
|
-
|
263
|
-
obj.stub!(:msg)
|
264
|
-
obj.msg
|
265
|
-
obj.should_receive(:msg)
|
266
|
-
|
267
|
-
That would pass in 1.1.11, but should not have been allowed to, since the
|
268
|
-
message is received before the expectation is set. This was reported (#637)
|
269
|
-
and fixed for release 1.1.12, but may cause unexpected failures if you had
|
270
|
-
examples set up as above.
|
271
|
-
|
272
|
-
WARNING: mock.should_receive(:msg).with(an_instance_of(klass)) now correctly uses instance_of? instead of kind_of?. This may break some existing code examples, but the fix is to just use kind_of instead of an_instance_of
|
273
|
-
|
274
|
-
* 3 deprecations
|
275
|
-
|
276
|
-
* deprecated ExampleMethods#implementation_backtrace - use ExampleMethods#backtrace instead
|
277
|
-
* deprecated ExampleGroupMethods#example_group_backtrace - use ExampleGroupMethods#backtrace instead
|
278
|
-
* deprecated Spec::Example::BehaviourRunner class (likely that nobody is using this)
|
279
|
-
|
280
|
-
* 6 major enhancements
|
281
|
-
|
282
|
-
* it { should matcher } - support for implicit receiver of #should (Joe Ferris of thoughtbot)
|
283
|
-
* subject { ... } - works in conjunction with implicit receiver of #should
|
284
|
-
* wrap_expectation (for wrapping multiple expectations and/or t/u assertions)
|
285
|
-
* added array.should =~ [1,2,3] # passes if array contains exactly the same elements in any order (Jeff Dean and Pat Maddox)
|
286
|
-
* hash_including mock argument matcher can now accept just keys, key/value pairs, or both (David Krmpotic)
|
287
|
-
* added hash_not_including mock argument matcher (David Krmpotic). Closes #634.
|
288
|
-
|
289
|
-
* 9 minor enhancements
|
290
|
-
|
291
|
-
* should throw_symbol accepts an optional argument: should throw_symbol(:sym, arg)
|
292
|
-
* fixed --line for jruby (Zach Moazeni)
|
293
|
-
* assorted small changes to support Ruby 1.9 (got a way to go)
|
294
|
-
* removed all instances of class << self - I do know who I am
|
295
|
-
* SpecParser can't handle backtrace paths with colons (John-Mason P. Shackelford). Closes #505.
|
296
|
-
* html formatter (and subsequently the textmate formatter) header fills in completely when running a single example
|
297
|
-
* config.include now accepts an array of types (config.include(Helpers, :type => [:view, :controller]))
|
298
|
-
* added be_a and be_an expectation matchers
|
299
|
-
* added instance_of and kind_of mock argument matchers
|
300
|
-
|
301
|
-
* 9 bug fixes
|
302
|
-
|
303
|
-
* fixed bug where {:a => 1, :b => 2}.should include(:a, :b) failed (Yossef Mendelssohn)
|
304
|
-
* only try to load Test::Unit if Test::Unit is defined (not just Test)
|
305
|
-
* Allow stubs on parent and child classes simultaneously (Jim Lindley). Fixes #600.
|
306
|
-
* BaseTextFormatter will now create the directory in a WHERE string (Adam Anderson). Fixes #616.
|
307
|
-
* Removed incorrect -S flag on autospec commands. Added explicit spec command for ruby to run, guarantee running rspec (raggi). Closes #507.
|
308
|
-
* Check whether test/unit has really been loaded before calling a method it defines (Brian Donovan). Closes #503.
|
309
|
-
* Fix spec_path for shared groups (Zach Dennis). Closes #615.
|
310
|
-
* stubbed message expectation not verified if it has been called *before* the expectation (Matthias Hennemeyer). Closes #637.
|
311
|
-
* stubs calculate return value by executing block passed to #and_return (hint from Aisha Fenton). Closes #642.
|
312
|
-
|
313
|
-
=== Version 1.1.11 / 2008-10-24
|
314
|
-
|
315
|
-
* 1 major enhancement
|
316
|
-
|
317
|
-
* eliminate ALL gem dependencies (as they were causing trouble for people on different platforms/environments)
|
318
|
-
|
319
|
-
=== Version 1.1.10 / 2008-10-24
|
320
|
-
|
321
|
-
* 1 minor enhancement
|
322
|
-
|
323
|
-
* hash.should include(:key => 'value') #when you don't care about the whole hash
|
324
|
-
|
325
|
-
* 2 bug fixes
|
326
|
-
|
327
|
-
* fix --help output (had inaccurate info about 'nested' formatter)
|
328
|
-
* eliminate spicycode-rcov dev dependency for rubygems < 1.3
|
329
|
-
|
330
|
-
=== Version 1.1.9 / 2008-10-20
|
331
|
-
|
332
|
-
WARNING: This release removes implicit inclusion of modules in example groups.
|
333
|
-
This means that if you have 'describe MyModule do', MyModule will not be
|
334
|
-
included in the group.
|
335
|
-
|
336
|
-
* 2 major enhancements
|
337
|
-
|
338
|
-
* Add extend to configuration (thanks to advice from Chad Fowler)
|
339
|
-
* Modules are no longer implicitly included in example groups
|
340
|
-
|
341
|
-
* 4 minor enhancements
|
342
|
-
|
343
|
-
* mingw indicates windows too (thanks to Luis Lavena for the tip)
|
344
|
-
* improved output for partial mock expecation failures
|
345
|
-
* it_should_behave_like now accepts n names of shared groups
|
346
|
-
* eliminated redundant inclusion/extension of ExampleGroupMethods
|
347
|
-
|
348
|
-
* 6 bug fixes
|
349
|
-
|
350
|
-
* spec command with no arguments prints help
|
351
|
-
* fixed typo in help. Fixes #73.
|
352
|
-
* fixed bug where should_receive..and_yield after similar stub added the args_to_yield to the stub's original args_to_yield (Pat Maddox)
|
353
|
-
* fixed bug where rspec-autotest (autospec) was loading non-spec files in spec directory. Fixes #559.
|
354
|
-
* fixed bug where should_not_receive was reporting twice
|
355
|
-
* fixed bug where rspec tries to run examples just because it is required (even if there are no examples loaded). Fixes #575.
|
356
|
-
|
357
|
-
=== Version 1.1.8 / 2008-10-03
|
358
|
-
|
359
|
-
* 2 bug fixes
|
360
|
-
|
361
|
-
* restore colorized output in linux and windows w/ autotest (Tim Pope). Fixes #413.
|
362
|
-
* autospec no longer hangs on windows. Fixes #554.
|
363
|
-
|
364
|
-
=== Version 1.1.7 / 2008-10-02
|
365
|
-
|
366
|
-
* no changes since 1.1.6, but releasing rspec-1.1.7 to align versions with rspec-rails-1.1.7
|
367
|
-
|
368
|
-
=== Version 1.1.6 / 2008-10-02
|
369
|
-
|
370
|
-
* 2 bug fixes
|
371
|
-
|
372
|
-
* fixed bug where negative message expectations following stubs resulted in false (negative) positives (Mathias Meyer). Closes #548.
|
373
|
-
* fixed bug where Not Yet Implemented examples report incorrect caller (Scott Taylor). Closes #547.
|
374
|
-
|
375
|
-
* 1 minor enhancement
|
376
|
-
|
377
|
-
* removed deprecated mock argument constraint symbols
|
378
|
-
|
379
|
-
=== Version 1.1.5 / 2008-09-28
|
380
|
-
|
381
|
-
IMPORTANT: use the new 'autospec' command instead of 'autotest'. We changed
|
382
|
-
the way autotest discovers rspec so the autotest executable won't
|
383
|
-
automatically load rspec anymore. This allows rspec to live side by side other
|
384
|
-
spec frameworks without always co-opting autotest through autotest's discovery
|
385
|
-
mechanism.
|
386
|
-
|
387
|
-
ALSO IMPORTANT: $rspec_options is gone. If you were using this for anything
|
388
|
-
(like your own runners), use Spec::Runner.options instead.
|
389
|
-
|
390
|
-
ADDITIONALLY IMPORTANT: If you have any custom formatters, you'll need to
|
391
|
-
modify #example_pending to accept three arguments instead of just two. See the
|
392
|
-
rdoc for Spec::Runner::Formatter::BaseFormatter#example_pending for more
|
393
|
-
information.
|
394
|
-
|
395
|
-
* Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
|
396
|
-
* Added additional characters to be escaped in step strings (patch from Jake Cahoon). Closes #417.
|
397
|
-
* Disable color codes on STDOUT when STDOUT.tty? is false (patch from Tim Pope). Closes #413.
|
398
|
-
* mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser). Closes #230.
|
399
|
-
* a step definition with no block is treated as pending
|
400
|
-
* make sure consolidate_failures only grabs _spec files. Closes #369
|
401
|
-
* Simplifying ExampleGroupMethods#registration_backtrace. (From Wilson Bilkovich - http://metaclass.org/2008/6/7/calling-in-the-dark)
|
402
|
-
* Use 127.0.0.1 instead of localhost for drb (thanks Ola Bini)
|
403
|
-
* html story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #300
|
404
|
-
* plain text story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #439
|
405
|
-
* quiet deprecation warning on inflector - patch from RSL. Closes #430
|
406
|
-
* added autospec executable
|
407
|
-
* added configurable messages to simple_matcher
|
408
|
-
* should and should_not return true on success
|
409
|
-
* use hoe for build/release
|
410
|
-
* bye, bye translator
|
411
|
-
* autotest/rspec uses ruby command instead of spec command (no need for spec command unless loading directories)
|
412
|
-
* Avoid 'invalid option -O' in autotest (patch from Jonathan del Strother). Closes #486.
|
413
|
-
* Fix: Unimplemented step with new line throws error (patch from Ben Mabey). Closes #494.
|
414
|
-
* Only use color codes on tty; override for autospec (patch from Tim Pope). Closes #413.
|
415
|
-
* Warn when setting mock expectations on nil (patch from Ben Mabey). Closes #521.
|
416
|
-
* Support argument constraints as values in the hash_including contstraint. Thanks to Pirkka Hartikainen for failing code examples and the fix. Buttons up #501.
|
417
|
-
* mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser)
|
418
|
-
* Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
|
419
|
-
* Add 2nd arg to respond_to? to align w/ core Ruby rdoc: http://www.ruby-doc.org/core/classes/Object.html#M000604
|
420
|
-
* quiet backtrace tweaker filters individual lines out of multiline (ala Rails) error messages (Pat Maddox)
|
421
|
-
* added ability to stub multiple methods in one stub! call (Pat Maddox)
|
422
|
-
* story progress bar formatter and more colourful summaries from the plain text story formatter (Joseph Wilk)
|
423
|
-
* Avoid ruby invocation errors when autotesting (Jonathan del Strother)
|
424
|
-
* added mock('foo').as_null_object
|
425
|
-
* add file and line number to pending_example for formatters (Scott Taylor)
|
426
|
-
* return last stubbed value for mock expectation with no explicit return (Pat Maddox)
|
427
|
-
* Fixed bug when should_receive(:foo).any_number_of_times is called after similar stub (Pat Maddox)
|
428
|
-
* Warning messages now issued when expectations are set on nil (Ben Mabey)
|
429
|
-
|
430
|
-
=== Version 1.1.4
|
431
|
-
|
432
|
-
Maintenance release.
|
433
|
-
|
434
|
-
Note: we've removed the metaclass method from Object. There were some
|
435
|
-
generated specs that used it, and they will now break. Just replace the
|
436
|
-
metaclass call with (class << self; self; end) and all will be well.
|
437
|
-
|
438
|
-
* added hash_including mock argument matcher. Closes #332 (patch from Rick DeNatale)
|
439
|
-
* pending steps print out yellow in stories (patch from Kyle Hargraves)
|
440
|
-
* Deprecation warnings for specs that assume auto-inclusion of modules. Closes #326 (patch from Scott Taylor)
|
441
|
-
* mock.should_not_receive(:anything) fails fast (once again)
|
442
|
-
* Patch from Antti Tarvainen to stop files from being loaded repeatedly when running heckle. Closes #333.
|
443
|
-
* Fixed bug in which session object in example was not the same instance used in the controller. Closes #331.
|
444
|
-
* Applied patch from Antti Tarvainen to fix bug where heckle runs rspec runs heckle runs rspec etc. Closes #280.
|
445
|
-
* Applied patch from Zach Dennis to merge :steps functionality to :steps_for. Closes #324.
|
446
|
-
* Applied patch from Ryan Davis to add eval of block passed to raise_error matcher. Closes #321.
|
447
|
-
* alias :context :describe in example_group_methods. Closes #312.
|
448
|
-
* Applied patch from Ben Mabey to make the Story runner exit with a non-0 exit code on failing stories. Closes #228.
|
449
|
-
* Applied patch from Coda Hale to get the :red hook called in autotest. Closes #279.
|
450
|
-
* Applied patch from Patrick Ritchie to support --drb in spec.opts. Closes #274, #293.
|
451
|
-
* Moved metaclass method from Object to an internal module which gets included where it is needed.
|
452
|
-
* Applied patch from Dayo Esho: and_yield clobbers return value from block. Closes #217.
|
453
|
-
* Applied patch from Bob Cotton: ExampleGroupFactory.default resets previously registered types. Closes #222.
|
454
|
-
* Applied patch from Mike Williams to support the lib directory in rails apps with the Textmate Alternate File command. Closes #276.
|
455
|
-
* ExampleGroupMethods#xspecify aliases #xit
|
456
|
-
* A SharedExampleGroup can be created within another ExampleGroup.
|
457
|
-
* Applied patch from Bob Cotton: Nested ExampleGroups do not have a spec_path. Closes #224.
|
458
|
-
* Add before_suite and after_suite callbacks to ExampleGroupMethods and Options. Closes #210.
|
459
|
-
* The after(:suite) callback lambda is passed a boolean representing whether the suite passed or failed
|
460
|
-
* Added NestedTextFormatter. Closes #366.
|
461
|
-
* decoupled mock framework from global extensions used by rspec - supports use of flexmock or mocha w/ rails
|
462
|
-
* Applied patch from Roman Chernyatchik to allow the user to pass in the ruby version into spectask. Closes #325, #370
|
463
|
-
|
464
|
-
=== Version 1.1.3
|
465
|
-
|
466
|
-
Maintenance release.
|
467
|
-
Notice to autotest users: you must also upgrade to ZenTest-3.9.0.
|
468
|
-
|
469
|
-
* Tightened up exceptions list in autotest/rails_spec. Closes #264.
|
470
|
-
* Applied patch from Ryan Davis for ZenTest-3.9.0 compatibility
|
471
|
-
* Applied patch from Kero to add step_upcoming to story listeners. Closes #253.
|
472
|
-
* Fixed bug where the wrong named error was not always caught by "should raise_error"
|
473
|
-
* Applied patch from Luis Lavena: No coloured output on Windows due missing RUBYOPT. Closes #244.
|
474
|
-
* Applied patch from Craig Demyanovich to add support for "should_not render_template" to rspec_on_rails. Closes #241.
|
475
|
-
* Added --pattern (-p for short) option to control what files get loaded. Defaults to '**/*_spec.rb'
|
476
|
-
* Exit with non-0 exit code if examples *or tests* (in test/unit interop mode) fail. Closes #203.
|
477
|
-
* Moved at_exit hook to a method in Spec::Runner which only runs if specs get loaded. Closes #242.
|
478
|
-
* Applied patch from kakutani ensuring that base_view_path gets cleared after each view example. Closes #235.
|
479
|
-
* More tweaks to regexp step names
|
480
|
-
* Fixed focused specs in nested ExampleGroups. Closes #225.
|
481
|
-
|
482
|
-
=== Version 1.1.2
|
483
|
-
|
484
|
-
Minor bug fixes/enhancements.
|
485
|
-
Notice to autotest users: you must also upgrade to ZenTest-3.8.0.
|
486
|
-
|
487
|
-
* RSpec's Autotest subclasses compatible with ZenTest-3.8.0 (thanks to Ryan Davis for making it easier on Autotest subs).
|
488
|
-
* Applied patch from idl to add spec/lib to rake stats. Closes #226.
|
489
|
-
* calling setup_fixtures and teardown_fixtures for Rails >= r8570. Closes #219.
|
490
|
-
* Applied patch from Josh Knowles using ActiveSupport's Inflector (when available) to make 'should have' read a bit better. Closes #197.
|
491
|
-
* Fixed regression in 1.1 that caused failing examples to fail to generate their own names. Closes #209.
|
492
|
-
* Applied doc patch from Jens Krämer for capturing content_for
|
493
|
-
* Applied patch from Alexander Lang to clean up story steps after each story. Closes #198.
|
494
|
-
* Applied patch from Josh Knowles to support 'string_or_response.should have_text(...)'. Closes #193.
|
495
|
-
* Applied patch from Ian Dees to quiet the Story Runner backtrace. Closes #183.
|
496
|
-
* Complete support for defining steps with regexp 'names'.
|
497
|
-
|
498
|
-
=== Version 1.1.1
|
499
|
-
|
500
|
-
Bug fix release.
|
501
|
-
|
502
|
-
* Fix regression in 1.1.0 that caused transactions to not get rolled back between examples.
|
503
|
-
* Applied patch from Bob Cotton to reintroduce ExampleGroup.description_options. Closes LH[#186]
|
504
|
-
|
505
|
-
=== Version 1.1.0
|
506
|
-
|
507
|
-
The "tell me a story and go nest yourself" release.
|
508
|
-
|
509
|
-
* Applied patch from Mike Vincent to handle generators rails > 2.0.1. Closes LH[#181]
|
510
|
-
* Formatter.pending signature changed so it gets passed an ExampleGroup instance instead of the name ( LH[#180])
|
511
|
-
* Fixed LH[#180] Spec::Rails::Example::ModelExampleGroup and friends show up in rspec/rails output
|
512
|
-
* Spec::Rails no longer loads ActiveRecord extensions if it's disabled in config/boot.rb
|
513
|
-
* Applied LH[#178] small annoyances running specs with warnings enabled (Patch from Mikko Lehtonen)
|
514
|
-
* Tighter integration with Rails fixtures. Take advantage of fixture caching to get performance improvements (Thanks to Pat Maddox, Nick Kallen, Jonathan Barnes, and Curtis)
|
515
|
-
|
516
|
-
=== Version 1.1.0-RC1
|
517
|
-
|
518
|
-
Textmate Bundle users - this release adds a new RSpec bundle that highlights describe, it, before and after and
|
519
|
-
provides navigation to descriptions and examples (rather than classes and methods). When you first install this,
|
520
|
-
it is going to try to hijack all of your .rb files. All you need to do is open a .rb file that does not end with
|
521
|
-
'spec.rb' and change the bundle selection from RSpec to Ruby. TextMate will do the right thing from then on.
|
522
|
-
|
523
|
-
Shortcuts for tab-activated snippets all follow the TextMate convention of 2 or 3 letters of the first word, followed by the first letter of each subsequent word. So "should have_at_least" would be triggered by shhal.
|
524
|
-
|
525
|
-
We reduced the scope for running spec directories, files, a single file or individual spec in TextMate to source.ruby.rspec. This allowed us to restore the standard Ruby shortcuts:
|
526
|
-
|
527
|
-
CMD-R runs all the specs in one file
|
528
|
-
CMD-SHIFT-R runs an individual spec
|
529
|
-
CMD-OPT-R runs any files or directories selected in the TextMate drawer
|
530
|
-
|
531
|
-
rspec_on_rails users - don't forget to run script/generate rspec
|
532
|
-
|
533
|
-
* Added shared_examples_for method, which you can (should) use instead of describe Foo, :shared => true
|
534
|
-
* Applied LH[#168] Fix describe Object, "description contains a # in it" (Patch from Martin Emde)
|
535
|
-
* Applied LH[#15] Reverse loading of ActionView::Base helper modules (Patch from Mark Van Holstyn)
|
536
|
-
* Applied LH[#149] Update contribute page to point towards lighthouse (Patch from Josh Knowles)
|
537
|
-
* Applied LH[#142] verify_rcov fails with latest rcov (Patch from Kyle Hargraves)
|
538
|
-
* Applied LH[#10] Allow stubs to yield and return values (Patch from Pat Maddox)
|
539
|
-
* Fixed LH[#139] version.rb in trunk missing svn last changed number
|
540
|
-
* Applied LH[#14] Adding support for by_at_least/by_at_most in Change matcher (Patch from Saimon Moore)
|
541
|
-
* Applied LH[#12] Fix for TM when switching to alternate file (Patch from Trevor Squires)
|
542
|
-
* Applied LH[#133] ExampleMatcher should match against before(:all) (Patch from Bob Cotton)
|
543
|
-
* Applied LH[#134] Only load spec inside spec_helper.rb (Patch from Mark Van Holstyn)
|
544
|
-
* RSpec now bails immediately if there are examples with identical names.
|
545
|
-
* Applied LH[#132] Plain Text stories should support Given and Given: (Patch from Jarkko Laine)
|
546
|
-
* Applied patch from Pat Maddox: Story Mediator - the glue that binds the plain text story parser with the rest of the system
|
547
|
-
* Applied LH[#16] Have SimpleMatchers expose their description for specdocs (Patch from Bryan Helmkamp)
|
548
|
-
* Stories now support --colour
|
549
|
-
* Changed the DSL modules to Example (i.e. Spec::Example instead of Spec::DSL)
|
550
|
-
* Applied [#15608] Story problem if parenthesis used in Given, When, Then or And (Patch from Sinclair Bain)
|
551
|
-
* Applied [#15659] GivenScenario fails when it is a RailsStory (Patch from Nathan Sutton)
|
552
|
-
* Fixed [#15639] rcov exclusion configuration. (Spec::Rails projects can configure rcov with spec/rcov.opts)
|
553
|
-
* The rdoc formatter (--format rdoc) is gone. It was buggy and noone was using it.
|
554
|
-
* Changed Spec::DSL::Behaviour to Spec::DSL::ExampleGroup
|
555
|
-
* Changed Spec::DSL::SharedBehaviour to Spec::DSL::SharedExampleGroup
|
556
|
-
* Applied [#14023] Small optimization for heavily proxied objects. (Patch from Ian Leitch)
|
557
|
-
* Applied [#13943] ProfileFormatter (Top 10 slowest examples) (Patch from Ian Leitch)
|
558
|
-
* Fixed [#15232] heckle is not working correctly in trunk (as of r2801)
|
559
|
-
* Applied [#14399] Show pending reasons in HTML report (Patch from Bryan Helmkamp)
|
560
|
-
* Discovered fixed: [#10263] mock "leak" when setting an expectation in a block passed to mock#should_receive
|
561
|
-
* Fixed [#14671] Spec::DSL::ExampleRunner gives "NO NAME because of --dry-run" for every example for 'rake spec:doc'
|
562
|
-
* Fixed [#14543] rspec_scaffold broken with Rails 2.0
|
563
|
-
* Removed Patch [#10577] Rails with Oracle breaks 0.9.2 - was no longer necessary since we moved describe to the Main object (instead of Object)
|
564
|
-
* Fixed [#14527] specs run twice on rails 1.2.4 and rspec/rspec_on_rails trunk
|
565
|
-
* Applied [#14043] Change output ordering to show pending before errors (Patch from Mike Mangino)
|
566
|
-
* Applied [#14095] Don't have ./script/generate rspec create previous_failures.txt (Patch from Bryan Helmkamp)
|
567
|
-
* Applied [#14254] Improved error handling for Object#should and Object#should_not (Patch from Antti Tarvainen)
|
568
|
-
* Applied [#14186] Remove dead code from message_expecation.rb (Patch from Antti Tarvainen)
|
569
|
-
* Applied [#14183] Tiny improvement on mock_spec.rb (Patch from Antti Tarvainen)
|
570
|
-
* Applied [#14208] Fix to Mock#method_missing raising NameErrors instead of MockExpectationErrors (Patch from Antti Tarvainen)
|
571
|
-
* Applied [#14255] Fixed examples in mock_spec.rb and shared_behaviour_spec.rb (Patch from Antti Tarvainen)
|
572
|
-
* Applied [#14362] partially mocking objects that define == can blow up (Patch from Pat Maddox)
|
573
|
-
* test_ methods with an arity of 0 defined in a describe block or Example object will be run as an Example, providing a seamless transition from Test::Unit
|
574
|
-
* Removed BehaviourRunner
|
575
|
-
* Fixed [#13969] Spec Failures on Trunk w/ Autotest
|
576
|
-
* Applied [#14156] False positives with should_not (Patch from Antti Tarvainen)
|
577
|
-
* Applied [#14170] route_for and params_from internal specs fixed (Patch from Antti Tarvainen)
|
578
|
-
* Fixed [#14166] Cannot build trunk
|
579
|
-
* Applied [#14142] Fix for bug #11602: Nested #have_tag specifications fails on the wrong line number (Patch from Antti Tarvainen)
|
580
|
-
* Removed warn_if_no_files argument and feature
|
581
|
-
* Steps (Given/When/Then) with no blocks are treated as pending
|
582
|
-
* Applied [#13913] Scenario should treat no code block as pending (Patch from Evan Light)
|
583
|
-
* Fixed [#13370] Weird mock expectation error (Patch from Mike Mangino)
|
584
|
-
* Applied [#13952] Fix for performance regression introduced in r2096 (Patch from Ian Leitch)
|
585
|
-
* Applied [#13881] Dynamically include Helpers that are included on ActionView::Base (Patch from Brandon Keepers)
|
586
|
-
* Applied [#13833] ActionView::Helpers::JavaScriptMacrosHelper removed after 1.2.3 (Patch from Yurii Rashkovskii)
|
587
|
-
* Applied [#13814] RSpec on Rails w/ fixture-scenarios (Patch from Shintaro Kakutani)
|
588
|
-
* Add ability to define Example subclass instead of using describe
|
589
|
-
* Applied Patch from James Edward Gray II to improve syntax highlighting in TextMate
|
590
|
-
* Fixed [#13579] NoMethodError not raised for missing helper methods
|
591
|
-
* Fixed [#13713] form helper method 'select' can not be called when calling custom helper methods from specs
|
592
|
-
* Example subclasses Test::Unit::TestCase
|
593
|
-
* Added stub_everything method to create a stub that will return itself for any message it doesn't understand
|
594
|
-
* Added stories directory with stories/all.rb and stories/helper.rb when you script/generate rspec
|
595
|
-
* Applied [#13554] Add "And" so you can say Given... And... When... Then... And...
|
596
|
-
* Applied [#11254] RSpec syntax coloring and function pop-up integration in TextMate (Patch from Wincent Colaiuta)
|
597
|
-
* Applied [#13143] ActionView::Helpers::RecordIdentificationHelper should be included if present (Patch from Jay Levitt)
|
598
|
-
* Applied [#13567] patch to allow stubs to yield consecutive values (Patch from Rupert Voelcker)
|
599
|
-
* Applied [#13559] reverse version of route_for (Patch from Rupert Voelcker)
|
600
|
-
* Added [#13532] /lib specs should get base EvalContext
|
601
|
-
* Applied [#13451] Add a null_object option to mock_model (Patch from James Deville)
|
602
|
-
* Applied [#11919] Making non-implemented specs easy in textmate (Patch from Scott Taylor)
|
603
|
-
* Applied [#13274] ThrowSymbol recognized a NameError triggered by Kernel#method_missing as a thrown Symbol
|
604
|
-
* Applied [#12722] the alternate file command does not work in rails views due to scope (Patch from Carl Porth)
|
605
|
-
* Behaviour is now a Module that is used by Example class methods and SharedBehaviour
|
606
|
-
* Added ExampleDefinition
|
607
|
-
* Added story runner framework based on rbehave [#12628]
|
608
|
-
* Applied [#13336] Helper directory incorrect for rake stats in statsetup task (Patch from Curtis Miller)
|
609
|
-
* Applied [#13339] Add the ability for spec_parser to parse describes with :behaviour_type set (Patch from Will Leinweber and Dav Yaginuma)
|
610
|
-
* Fixed [#13271] incorrect behaviour with expect_render and stub_render
|
611
|
-
* Applied [#13129] Fix failing specs in spec_distributed (Patch from Bob Cotton)
|
612
|
-
* Applied [#13118] Rinda support for Spec::Distributed (Patch from Bob Cotton)
|
613
|
-
* Removed BehaviourEval
|
614
|
-
* Removed Behaviour#inherit
|
615
|
-
* Moved implementation of install_dependencies to example_rails_app
|
616
|
-
* Renamed RSPEC_DEPS to VENDOR_DEPS
|
617
|
-
* Added Example#not_implemented?
|
618
|
-
* You can now stub!(:msg).with(specific args)
|
619
|
-
* describe("A", Hash, "with one element") will generate description "A Hash with one element" (Tip from Ola Bini)
|
620
|
-
* Applied [#13016] [DOC] Point out that view specs render, well, a view (Patch from Jay Levitt)
|
621
|
-
* Applied [#13078] Develop rspec with autotest (Patch from Scott Taylor)
|
622
|
-
* Fixed [#13065] Named routes throw a NoMethodError in Helper specs (Patches from James Deville and Mike Mangino)
|
623
|
-
* Added (back) the verbose attribute in Spec::Rake::SpecTask
|
624
|
-
* Changed documentation to point at the new http svn URL, which is more accessible.
|
625
|
-
|
626
|
-
=== Version 1.0.8
|
627
|
-
|
628
|
-
Another bugfix release - this time to resolve the version mismatch
|
629
|
-
|
630
|
-
=== Version 1.0.7
|
631
|
-
|
632
|
-
Quick bugfix release to ensure that you don't have to have the rspec gem installed
|
633
|
-
in order to use autotest with rspec_on_rails.
|
634
|
-
|
635
|
-
* Fixed [#13015] autotest gives failure in 'spec_command' after upgrade 1.0.5 to 1.0.6
|
636
|
-
|
637
|
-
=== Version 1.0.6
|
638
|
-
|
639
|
-
The "holy cow, batman, it's been a long time since we released and there are a ton of bug
|
640
|
-
fixes, patches and even new features" release.
|
641
|
-
|
642
|
-
Warning: Spec::Rails users: In fixing 11508, we've removed the raise_controller_errors method. As long as you
|
643
|
-
follow the upgrade instructions and run 'script/generate rspec' you'll be fine, but if you skip this
|
644
|
-
step you need to manually go into spec_helper.rb and remove the call to that method (if present - it
|
645
|
-
might not be if you haven't upgraded in a while).
|
646
|
-
|
647
|
-
Warning: Implementors of custom formatters. Formatters will now be sent an Example object instead of just a
|
648
|
-
String for #example_started, #example_passed and #example_failed. In certain scenarios
|
649
|
-
(Spec::Ui with Spec::Distributed), the formatter must ask the Example for its sequence number instead of
|
650
|
-
keeping track of a sequence number internal to the formatter. Most of you shouldn't need to upgrade
|
651
|
-
your formatters though - the Example#to_s method returns the example name/description, so you should be
|
652
|
-
able to use the passed Example instance as if it were a String.
|
653
|
-
|
654
|
-
* Applied [#12986] Autotest Specs + Refactoring (Patch from Scott Tayler)
|
655
|
-
* Added a #close method to formatters, which allows them to gracefully close streams.
|
656
|
-
* Applied [#12935] Remove requirement that mocha must be installed as a gem when used as mocking framework. (Patch from Ryan Kinderman).
|
657
|
-
* Fixed [#12893] RSpec's Autotest should work with rspec's trunk
|
658
|
-
* Fixed [#12865] Partial mock error when object has an @options instance var
|
659
|
-
* Applied [#12701] Allow checking of content captured with content_for in view specs (Patch from Jens Kr�mer)
|
660
|
-
* Applied [#12817] Cannot include same shared behaviour when required with absolute paths (Patch from Ian Leitch)
|
661
|
-
* Applied [#12719] rspec_on_rails should not include pagination helper (Patch from Matthijs Langenberg)
|
662
|
-
* Fixed [#12714] helper spec not finding rails core helpers
|
663
|
-
* Applied [#12611] should_not redirect_to implementation (Patch from Yurii Rashkovskii)
|
664
|
-
* Applied [#12682] Not correctly aliasing original 'stub!' and 'should_receive' methods for ApplicationController (Patch from Matthijs Langenberg)
|
665
|
-
* Disabled controller.should_receive(:render) and controller.stub!(:render). Use expect_render or stub_render instead.
|
666
|
-
* Applied [#12484] Allow a Behaviour's Description to flow through to the Formatter (Patch from Bob Cotton)
|
667
|
-
* Fixed [#12448] The spec:plugins rake task from rspec_on_rails should ignore specs from the rspec_on_rails plugin
|
668
|
-
* Applied [#12300] rr integration (patch from Kyle Hargraves)
|
669
|
-
* Implemented [#12284] mock_with :rr (integration with RR mock framework: http://rubyforge.org/projects/pivotalrb/)
|
670
|
-
* Applied [#12237] (tiny) added full path to mate in switch_command (Patch from Carl Porth)
|
671
|
-
* Formatters will now be sent an Example object instead of just a String for certain methods
|
672
|
-
* All Spec::Rake::SpecTask attributes can now be procs, which allows for lazy evaluation.
|
673
|
-
* Changed the Spec::Ui interfaces slightly. See examples.
|
674
|
-
* Applied [#12174] mishandling of paths with spaces in spec_mate switch_command (Patch from Carl Porth)
|
675
|
-
* Implemented [#8315] File "Go to..." functionality
|
676
|
-
* Applied [#11917] Cleaner Spec::Ui error for failed Selenium connection (Patch from Ian Dees)
|
677
|
-
* Applied [#11888] rspec_on_rails spews out warnings when assert_select is used with an XML response (Patch from Ian Leitch)
|
678
|
-
* Applied [#12010] Nicer failure message formatting (Patch from Wincent Colaiuta)
|
679
|
-
* Applied [#12156] smooth open mate patch (Patch from Ienaga Eiji)
|
680
|
-
* Applied [#10577] Rails with Oracle breaks 0.9.2. (Patch from Sinclair Bain)
|
681
|
-
* Fixed [#12079] auto-generated example name incomplete: should have 1 error on ....]
|
682
|
-
* Applied [#12066] Docfix for mocks/mocks.page (Patch from Kyle Hargraves)
|
683
|
-
* Fixed [#11891] script/generate rspec_controller fails to create appropriate views (from templates) on edge rails
|
684
|
-
* Applied [#11921] Adds the correct controller_name from derived_controller_name() to the ViewExampleGroupController (Patch from Eloy Duran)
|
685
|
-
* Fixed [#11903] config.include with behaviour_type 'hash' does not work
|
686
|
-
* Examples without blocks and pending is now reported with a P instead of a *
|
687
|
-
* Pending blocks that now pass are rendered blue
|
688
|
-
* New behaviour for after: If an after block raises an error, the other ones will still run instead of bailing at the first.
|
689
|
-
* Made it possible to run spec from RSpec.tmbundle with --drb against a Rails spec_server.
|
690
|
-
* Applied [#11868] Add ability for pending to optionally hold a failing block and to fail when it passes (Patch from Bob Cotton)
|
691
|
-
* Fixed [#11843] watir_behaviour missing from spec_ui gem
|
692
|
-
* Added 'switch between source and spec file' command in Spec::Mate (based on code from Ruy Asan)
|
693
|
-
* Applied [#11509] Documentation - RSpec requires hpricot
|
694
|
-
* Applied [#11807] Daemonize spec_server and rake tasks to manage them. (patch from Kyosuke MOROHASHI)
|
695
|
-
* Added pending(message) method
|
696
|
-
* Fixed [#11777] should render_template doesn't check paths correctly
|
697
|
-
* Fixed [#11749] Use of 'rescue => e' does not catch all exceptions
|
698
|
-
* Fixed [#11793] should raise_error('with a message') does not work correctly
|
699
|
-
* Fixed [#11774] Mocks should respond to :kind_of? in the same way they respond to :is_a?
|
700
|
-
* Fixed [#11508] Exceptions are not raised for Controller Specs (removed experimental raise_controller_errors)
|
701
|
-
* Applied [#11615] Partial mock methods give ambiguous failures when given a method name as a String (Patch from Jay Phillips)
|
702
|
-
* Fixed [#11545] Rspec doesn't handle should_receive on ActiveRecord associations (Patch from Ian White)
|
703
|
-
* Fixed [#11514] configuration.use_transactional_fixtures is ALWAYS true, regardless of assignment
|
704
|
-
* Improved generated RESTful controller examples to cover both successful and unsuccessful POST and PUT
|
705
|
-
* Changed TextMate snippets for controllers to pass controller class names to #describe rather than controller_name.
|
706
|
-
* Changed TextMate snippets for mocks to use no_args() and any_args() instead of the deprecated Symbols.
|
707
|
-
* Applied [#11500] Documentation: no rails integration specs in 1.0
|
708
|
-
* Renamed SpecMate's shortcuts for running all examples and focused examples to avoid conflicts (CMD-d and CMD-i)
|
709
|
-
* Added a TextMate snippet for custom matchers, lifted from Geoffrey Grosenbach's RSpec peepcode show.
|
710
|
-
* The translator translates mock constraints to the new matchers that were introduced in 1.0.4
|
711
|
-
* Documented environment variables for Spec::Rake::SpecTask. Renamed SPECOPTS and RCOVOPTS to SPEC_OPTS and RCOV_OPTS.
|
712
|
-
* Fixed [#10534] Windows: undefined method 'controller_name'
|
713
|
-
|
714
|
-
=== Version 1.0.5
|
715
|
-
Bug fixes. Autotest plugin tweaks.
|
716
|
-
|
717
|
-
* Fixed [#11378] fix to 10814 broke drb (re-opened #10814)
|
718
|
-
* Fixed [#11223] Unable to access flash from rails helper specs
|
719
|
-
* Fixed [#11337] autotest runs specs redundantly
|
720
|
-
* Fixed [#11258] windows: autotest won't run
|
721
|
-
* Applied [#11253] Tweaks to autotest file mappings (Patch from Wincent Colaiuta)
|
722
|
-
* Applied [#11252] Should be able to re-load file containing shared behaviours without raising an exception (Patch from Wincent Colaiuta)
|
723
|
-
* Fixed [#11247] standalone autotest doesn't work because of unneeded autotest.rb
|
724
|
-
* Applied [#11221] Autotest support does not work w/o Rails Gem installed (Patch from Josh Knowles)
|
725
|
-
|
726
|
-
=== Version 1.0.4
|
727
|
-
The getting ready for JRuby release.
|
728
|
-
|
729
|
-
* Fixed [#11181] behaviour_type scoping of config.before(:each) is not working
|
730
|
-
* added mock argument constraint matchers (anything(), boolean(), an_instance_of(Type)) which work with rspec or mocha
|
731
|
-
* added mock argument constraint matchers (any_args(), no_args()) which only work with rspec
|
732
|
-
* deprecated rspec's symbol mock argument constraint matchers (:any_args, :no_args, :anything, :boolean, :numeric, :string)
|
733
|
-
* Added tarball of rspec_on_rails to the release build to support folks working behind a firewall that blocks svn access.
|
734
|
-
* Fixed [#11137] rspec incorrectly handles flash after resetting the session
|
735
|
-
* Fixed [#11143] Views code for ActionController::Base#render broke between 1.0.0 and 1.0.3 on Rails Edge r6731
|
736
|
-
* Added raise_controller_errors for controller examples in Spec::Rails
|
737
|
-
|
738
|
-
=== Version 1.0.3
|
739
|
-
Bug fixes.
|
740
|
-
|
741
|
-
* Fixed [#11104] Website uses old specify notation
|
742
|
-
* Applied [#11101] StringHelpers.starts_with?(prefix) assumes a string parameter for _prefix_
|
743
|
-
* Removed 'rescue nil' which was hiding errors in controller examples.
|
744
|
-
* Fixed [#11075] controller specs fail when using mocha without integrated_views
|
745
|
-
* Fixed problem with redirect_to failing incorrectly against edge rails.
|
746
|
-
* Fixed [#11082] RspecResourceGenerator should be RspecScaffoldGenerator
|
747
|
-
* Fixed [#10959] Focused Examples do not work for Behaviour defined with constant with modules
|
748
|
-
|
749
|
-
=== Version 1.0.2
|
750
|
-
This is just to align the version numbers in rspec and rspec_on_rails.
|
751
|
-
|
752
|
-
=== Version 1.0.1
|
753
|
-
This is a maintenance release with mostly cleaning up, and one minor enhancement -
|
754
|
-
Modules are automatically included when described directly.
|
755
|
-
|
756
|
-
* Renamed Spec::Rails' rspec_resource generator to rspec_scaffold.
|
757
|
-
* Removed Spec::Rails' be_feed matcher since it's based on assert_select_feed which is not part of Rails (despite that docs for assert_select_encoded says it is).
|
758
|
-
* describe(SomeModule) will include that module in the examples. Like for Spec::Rails helpers, but now also in core.
|
759
|
-
* Header in HTML report will be yellow instead of red if there is one failed example
|
760
|
-
* Applied [#10951] Odd instance variable name in rspec_model template (patch from Kyle Hargraves)
|
761
|
-
* Improved integration with autotest (Patches from Ryan Davis and David Goodland)
|
762
|
-
* Some small fixes to make all specs run on JRuby.
|
763
|
-
|
764
|
-
=== Version 1.0.0
|
765
|
-
The stake in the ground release. This represents a commitment to the API as it is. No significant
|
766
|
-
backwards compatibility changes in the API are expected after this release.
|
767
|
-
|
768
|
-
* Fixed [#10923] have_text matcher does not support should_not
|
769
|
-
* Fixed [#10673] should > and should >= broken
|
770
|
-
* Applied [#10921] Allow verify_rcov to accept greater than threshold coverage %'s via configuration
|
771
|
-
* Applied [#10920] Added support for not implemented examples (Patch from Chad Humphries and Ken Barker)
|
772
|
-
* Patch to allow not implemented examples. This works by not providing a block to the example. (Patch from Chad Humphries, Ken Barker)
|
773
|
-
* Yanked support for Rails 1.1.6 in Spec::Rails
|
774
|
-
* RSpec.tmbundle uses CMD-SHIFT-R to run focused examples now.
|
775
|
-
* Spec::Rails now bundles a spec:rcov task by default (suggestion from Kurt Schrader)
|
776
|
-
* Fixed [#10814] Runner loads shared code, test cases require them again
|
777
|
-
* Fixed [#10753] Global before and after
|
778
|
-
* Fixed [#10774] Allow before and after to be specified in config II
|
779
|
-
* Refactored Spec::Ui examples to use new global before and after blocks.
|
780
|
-
* Added instructions about how to get Selenium working with Spec::Ui (spec_ui/examples/selenium/README.txt)
|
781
|
-
* Fixed [#10805] selenium.rb missing from gem?
|
782
|
-
* Added rdocs explaining how to deal with errors in Rails' controller actions
|
783
|
-
* Applied [#10770] Finer grained includes.
|
784
|
-
* Fixed [#10747] Helper methods defined in shared specs are not visible when shared spec is used
|
785
|
-
* Fixed [#10748] Shared descriptions in separate files causes 'already exists' error
|
786
|
-
* Applied [#10698] Running with --drb executes specs twice (patch from Ruy Asan)
|
787
|
-
* Fixed [#10871] 0.9.4 - Focussed spec runner fails to run specs in descriptions with type and string when there is no leading space in the string
|
788
|
-
|
789
|
-
=== Version 0.9.4
|
790
|
-
This release introduces massive improvements to Spec::Ui - the user interface functional testing
|
791
|
-
extension to RSpec. There are also some minor bug fixes to the RSpec core.
|
792
|
-
|
793
|
-
* Massive improvements to Spec::Ui. Complete support for all Watir's ie.xxx(how, what) methods. Inline screenshots and HTML.
|
794
|
-
* Reactivated --timeout, which had mysteriously been deactivated in a recent release.
|
795
|
-
* Fixed [#10669] Kernel#describe override does not cover Kernel#context
|
796
|
-
* Applied [#10636] Added spec for OptionParser in Runner (Patch from Scott Taylor)
|
797
|
-
* Added [#10516] should_include should be able to accept multiple items
|
798
|
-
* Applied [#10631] redirect_to matcher doesn't respect request.host (Patch from Tim Lucas)
|
799
|
-
* Each formatter now flushes their own IO. This is to avoid buffering of output.
|
800
|
-
* Fixed [#10670] IVarProxy#delete raises exception when instance variable does not exist
|
801
|
-
|
802
|
-
=== Version 0.9.3
|
803
|
-
This is a bugfix release.
|
804
|
-
|
805
|
-
* Fixed [#10594] Failing Custom Matcher show NAME NOT GENERATED description
|
806
|
-
* describe(SomeType, "#message") will not add a space: "SomeType#message" (likewise for '.')
|
807
|
-
* describe(SomeType, "message") will have a decription with a space: "SomeType message"
|
808
|
-
* Applied [#10566] prepend_before and prepend_after callbacks
|
809
|
-
* Applied [#10567] Call setup and teardown using before and after callbacks
|
810
|
-
|
811
|
-
=== Version 0.9.2
|
812
|
-
This is a quick maintenance release.
|
813
|
-
|
814
|
-
* Added some website love
|
815
|
-
* Fixed [#10542] reverse predicate matcher syntax
|
816
|
-
* Added a spec:translate Rake task to make 0.9 translation easier with Spec:Rails
|
817
|
-
* Better translation of should_redirect_to
|
818
|
-
* Fixed --colour support for Windows. This is a regression that was introduced in 0.9.1
|
819
|
-
* Applied [#10460] Make SpecRunner easier to instantiate without using commandline args
|
820
|
-
|
821
|
-
=== Version 0.9.1
|
822
|
-
|
823
|
-
This release introduces #describe and #it (aliased as #context and #specify for
|
824
|
-
backwards compatibility). This allows you to express specs like this:
|
825
|
-
|
826
|
-
describe SomeClass do # Creates a Behaviour
|
827
|
-
it "should do something" do # Creates an Example
|
828
|
-
end
|
829
|
-
end
|
830
|
-
|
831
|
-
The command line features four new options that give you more control over what specs
|
832
|
-
are being run and in what order. This can be used to verify that your specs are
|
833
|
-
independent (by running in opposite order with --reverse). It can also be used to cut
|
834
|
-
down feedback time by running the most recently modified specs first (--loadby mtime --reverse).
|
835
|
-
|
836
|
-
Further, --example replaces the old --spec option, and it can now take a file name of
|
837
|
-
spec names as an alternative to just a spec name. The --format failing_examples:file.txt
|
838
|
-
option allows you to output an --example compatible file, which makes it possible to only
|
839
|
-
rerun the specs that failed in the last run. Spec::Rails uses all of these four options
|
840
|
-
by default to optimise your RSpec experience.
|
841
|
-
|
842
|
-
There is now a simple configuration model. For Spec::Rails, you do something like this:
|
843
|
-
|
844
|
-
Spec::Runner.configure do |config|
|
845
|
-
config.use_transactional_fixtures = true
|
846
|
-
config.use_instantiated_fixtures = false
|
847
|
-
config.fixture_path = RAILS_ROOT + '/spec/fixtures'
|
848
|
-
end
|
849
|
-
|
850
|
-
You can now use mocha or flexmock with RSpec if you prefer either to
|
851
|
-
RSpec's own mock framework. Just put this:
|
852
|
-
|
853
|
-
Spec::Runner.configure do |config|
|
854
|
-
config.mock_with :mocha
|
855
|
-
end
|
856
|
-
|
857
|
-
or this:
|
858
|
-
|
859
|
-
Spec::Runner.configure do |config|
|
860
|
-
config.mock_with :flexmock
|
861
|
-
end
|
862
|
-
|
863
|
-
in a file that is loaded before your specs. You can also
|
864
|
-
configure included modules and predicate_matchers:
|
865
|
-
|
866
|
-
Spec::Runner.configure do |config|
|
867
|
-
config.include SomeModule
|
868
|
-
config.predicate_matchers[:does_something?] = :do_something
|
869
|
-
end
|
870
|
-
|
871
|
-
See Spec::DSL::Behaviour for more on predicate_matchers
|
872
|
-
|
873
|
-
* Sugar FREE!
|
874
|
-
* Added [10434 ] Please Make -s synonymous with -e for autotest compat. This is temporary until autotest uses -e instead of -s.
|
875
|
-
* Fixed [#10133] custom predicate matchers
|
876
|
-
* Applied [#10473] Add should exist (new matcher) - Patch from Bret Pettichord
|
877
|
-
* Added another formatter: failing_behaviours. Writes the names of the failing behaviours for use with --example.
|
878
|
-
* Applied [#10315] Patch to fix pre_commit bug 10313 - pre_commit_rails: doesn't always build correctly (Patch from Antii Tarvainen)
|
879
|
-
* Applied [#10245] Patch to HTML escape the behavior name when using HTML Formatter (Patch from Josh Knowles)
|
880
|
-
* Applied [#10410] redirect_to does not behave consistently with regards to query string parameter ordering (Patch from Nicholas Evans)
|
881
|
-
* Applied [#9605] Patch for ER 9472, shared behaviour (Patch by Bob Cotton)
|
882
|
-
* The '--format rdoc' option no longer causes a dry-run by default. --dry-run must be used explicitly.
|
883
|
-
* It's possible to specify the output file in the --format option (See explanation in --help)
|
884
|
-
* Several --format options may be specified to output several formats in one run.
|
885
|
-
* The --out option is gone. Use --format html:path/to/my.html instead (or similar).
|
886
|
-
* Spec::Runner::Formatter::BaseTextFormatter#initialize only takes one argument - an IO. dry_run and color are setters.
|
887
|
-
* Made Spec::Ui *much* easier to install. It will be released separately. Check out trunk/spec_ui/examples
|
888
|
-
* HTML reports now include a syntax highlighted snippet of the source code where the spec failed (needs the syntax gem)
|
889
|
-
* Added [#10262] Better Helper testing of Erb evaluation block helpers
|
890
|
-
* Added [#9735] support flexmock (thanks to Jim Weirich for his modifications to flexmock to support this)
|
891
|
-
* Spec::Rails controller specs will no longer let mock exception ripple through to the response.
|
892
|
-
* Fixed [#9260] IvarProxy does not act like a hash.
|
893
|
-
* Applied [#9458] The rspec_scaffold generator does not take into account class nesting (Patch from Steve Tendon)
|
894
|
-
* Applied [#9132] Rakefile spec:doc can fail without preparing database (Patch from Steve Ross)
|
895
|
-
* Applied [#9678] Custom runner command line switch, and multi-threaded runner (Patch from Bob Cotton)
|
896
|
-
* Applied [#9926] Rakefile - RSPEC_DEPS constant as an Array of Hashes instead of an Array of Arrays (Patch from Scott Taylor)
|
897
|
-
* Applied [#9925] Changed ".rhtml" to "template" in REST spec generator (Patch from Scott Taylor)
|
898
|
-
* Applied [#9852] Patch for RSpec's Website using Webgen 0.4.2 (Patch from Scott Taylor)
|
899
|
-
* Fixed [#6523] Run rspec on rails without a db
|
900
|
-
* Fixed [#9295] rake spec should run anything in the spec directory (not just rspec's standard dirs)
|
901
|
-
* Added [#9786] infer controller and helper names from the described type
|
902
|
-
* Fixed [#7795] form_tag renders action='/view_spec' in view specs
|
903
|
-
* Fixed [#9767] rspec_on_rails should not define rescue_action on controllers
|
904
|
-
* Fixed [#9421] --line doesn't work with behaviours that use class names
|
905
|
-
* Fixed [#9760] rspec generators incompatible with changes to edge rails
|
906
|
-
* Added [#9786] infer controller and helper names from the described type
|
907
|
-
* Applied a simplified version of [#9282] Change to allow running specs from textmate with rspec installed as a rails plugin (and no rspec gem installed)
|
908
|
-
* Applied [#9700] Make Spec::DSL::Example#name public / Add a --timeout switch. A great way to prevent specs from getting slow.
|
909
|
-
* In Rails, script/generate rspec will generate a spec.opts file that optimises faster/more efficient running of specs.
|
910
|
-
* Added [#9522] support using rspec's expectations with test/unit
|
911
|
-
* Moved rspec_on_rails up to the project root, simplifying the download url
|
912
|
-
* Fixed [#8103] RSpec not installing spec script correctly.
|
913
|
-
* The --spec option is replaced by the --example option.
|
914
|
-
* The --loadby option no longer supports a file argument. Use --example file_name instead.
|
915
|
-
* The --example option can now take a file name as an argument. The file should contain example names.
|
916
|
-
* Internal classes are named Behaviour/Example (rather than Context/Specification).
|
917
|
-
* You can now use mocha by saying config.mock_with :mocha in a spec_helper
|
918
|
-
* before_context_eval is replaced by before_eval.
|
919
|
-
* Applied [#9509] allow spaced options in spec.opts
|
920
|
-
* Applied [#9510] Added File for Ruby 1.8.6
|
921
|
-
* Applied [#9511] Clarification to README file in spec/
|
922
|
-
* Moved all of the Spec::Rails specs down to the plugins directory - now you can run the specs after you install.
|
923
|
-
* Updated RSpec.tmbundle to the 0.9 syntax and replaced context/specify with describe/it.
|
924
|
-
* Applied [#9232] ActionController::Base#render is sometimes protected (patch from Dan Manges)
|
925
|
-
* Added --reverse option, allowing contexts/specs to be run in reverse order.
|
926
|
-
* Added --loadby option, allowing better control over load order for spec files. mtime and file.txt supported.
|
927
|
-
* Implemented [#8696] --order option (see --reverse and --loadby)
|
928
|
-
* Added describe/it as aliases for context/specify - suggestion from Dan North.
|
929
|
-
* Applied [#7637] [PATCH] add skip-migration option to rspec_scaffold generator
|
930
|
-
* Added [#9167] string.should have_tag
|
931
|
-
* Changed script/rails_spec_server to script/spec_server and added script/spec (w/ path to vendor/plugins/rspec)
|
932
|
-
* Fixed [#8897] Error when mixing controller spec with/without integrated views and using template system other than rhtml
|
933
|
-
* Updated sample app specs to 0.9 syntax
|
934
|
-
* Updated generated specs to 0.9 syntax
|
935
|
-
* Applied [#8994] trunk: generated names for be_ specs (Multiple patches from Yurii Rashkovskii)
|
936
|
-
* Applied [#9983]: Allow before and after to be called in BehaviourEval. This is useful for shared examples.
|
937
|
-
|
938
|
-
=== Version 0.8.2
|
939
|
-
|
940
|
-
Replaced assert_select fork with an assert_select wrapper for have_tag. This means that "should have_rjs" no longer supports :hide or :effect, but you can still use should_have_rjs for those.
|
941
|
-
|
942
|
-
=== Version 0.8.1
|
943
|
-
|
944
|
-
Quick "in house" bug-fix
|
945
|
-
|
946
|
-
=== Version 0.8.0
|
947
|
-
|
948
|
-
This release introduces a new approach to handling expectations using Expression Matchers.
|
949
|
-
|
950
|
-
See Upgrade[http://rspec.rubyforge.org/upgrade.html], Spec::Expectations, Spec::Matchers and RELEASE-PLAN for more info.
|
951
|
-
|
952
|
-
This release also improves the spec command line by adding DRb support and making it possible to
|
953
|
-
store command line options in a file. This means a more flexible RSpec experience with Rails,
|
954
|
-
Rake and editor plugins like TextMate.
|
955
|
-
|
956
|
-
It also sports myriad new features, bug fixes, patches and general goodness:
|
957
|
-
|
958
|
-
* Fixed [#8928] rspec_on_rails 0.8.0-RC1 controller tests make double call to setup_with_fixtures
|
959
|
-
* Fixed [#8925] Documentation bug in 0.8.0RC1 rspec website
|
960
|
-
* Applied [#8132] [PATCH] RSpec breaks "rake db:sessions:create" in a rails project that has the rspec_on_rails plugin (Patch from Erik Kastner)
|
961
|
-
* Fixed [#8789] --line and --spec not working when the context has parenhesis in the name
|
962
|
-
* Added [#8783] auto generate spec names from last expectation
|
963
|
-
* --heckle now fails if the heckled class or module is not found.
|
964
|
-
* Fixed [#8771] Spec::Mocks::BaseExpectation#with converts hash params to array of arrays with #collect
|
965
|
-
* Fixed [#8750] should[_not]_include backwards compatibility between 0.8.0-RC1 and 0.7.5.1 broken
|
966
|
-
* Fixed [#8646] Context Runner does not report on Non standard exceptions and return a 0 return code
|
967
|
-
* RSpec on Rails' spec_helper.rb will only force RAILS_ENV to test if it was not specified on the command line.
|
968
|
-
* Fixed [#5485] proc#should_raise and proc#should_not_raise output
|
969
|
-
* Added [#8484] should_receive with blocks
|
970
|
-
* Applied [#8218] heckle_runner.rb doesn't work with heckle >= 1.2.0 (Patch from Michal Kwiatkowski)
|
971
|
-
* Fixed [#8240] Cryptic error message when no controller_name
|
972
|
-
* Applied [#7461] [PATCH] Contexts don't call Module::included when they include a module
|
973
|
-
* Removed unintended block of test/unit assertions in rspec_on_rails - they should all, in theory, now be accessible
|
974
|
-
* Added mock_model method to RSpec on Rails, which stubs common methods. Based on http://metaclass.org/2006/12/22/making-a-mockery-of-activerecord
|
975
|
-
* Fixed [#8165] Partial Mock Errors when respond_to? is true but the method is not in the object
|
976
|
-
* Fixed [#7611] Partial Mocks override Subclass methods
|
977
|
-
* Fixed [#8302] Strange side effect when mocking a class method
|
978
|
-
* Applied [#8316] to_param should return a stringified key in resource generator's controller spec (Patch from Chris Anderson)
|
979
|
-
* Applied [#8216] shortcut for creating object stub
|
980
|
-
* Applied [#8008] Correct generated specs for view when calling resource generator (Patch from Jonathan Tron)
|
981
|
-
* Fixed [#7754] Command-R fails to run spec in TextMate (added instruction from Luke Redpath to the website)
|
982
|
-
* Fixed [#7826] RSpect.tmbundle web page out of date.
|
983
|
-
* RSpec on Rails specs are now running against RoR 1.2.1 and 1.2.2
|
984
|
-
* rspec_scaffold now generates specs for views
|
985
|
-
* In a Rails app, RSpec core is only loaded when RAILS_ENV==test (init.rb)
|
986
|
-
* Added support for target.should arbitrary_expectation_handler and target.should_not arbitrary_expectation_handler
|
987
|
-
* Fixed [#7533] Spec suite fails and the process exits with a code 0
|
988
|
-
* Fixed [#7565] Subsequent stub! calls for method fail to override the first call to method
|
989
|
-
* Applied [#7524] Incorrect Documentation for 'pattern' in Rake task (patch from Stephen Duncan)
|
990
|
-
* Fixed [#7409] default fixtures do not appear to run.
|
991
|
-
* Fixed [#7507] "render..and return" doesn't return
|
992
|
-
* Fixed [#7509] rcov/rspec incorrectly includes boot.rb (Patch from Courtenay)
|
993
|
-
* Fixed [#7506] unnecessary complex output on failure of response.should be_redirect
|
994
|
-
* Applied [#6098] Make scaffold_resource generator. Based on code from Pat Maddox.
|
995
|
-
* The drbspec command is gone. Use spec --drb instead.
|
996
|
-
* The drb option is gone from the Rake task. Pass --drb to spec_opts instead.
|
997
|
-
* New -X/--drb option for running specs against a server like spec/rails' script/rails_spec_server
|
998
|
-
* New -O/--options and -G/--generate flags for file-based options (handy for spec/rails)
|
999
|
-
* Applied [#7339] Turn off caching in HTML reports
|
1000
|
-
* Applied [#7419] "c option for colorizing output does not work with rails_spec" (Patch from Shintaro Kakutani)
|
1001
|
-
* Applied [#7406] [PATCH] 0.7.5 rspec_on_rails loads fixtures into development database (Patch from Wilson Bilkovich)
|
1002
|
-
* Applied [#7387] Allow stubs to return consecutive values (Patch from Pat Maddox)
|
1003
|
-
* Applied [#7393] Fix for rake task (Patch from Pat Maddox)
|
1004
|
-
* Reinstated support for response.should_render (in addition to controller.should_render)
|
1005
|
-
|
1006
|
-
=== Version 0.7.5.1
|
1007
|
-
|
1008
|
-
Bug fix release to allow downloads of rspec gem using rubygems 0.9.1.
|
1009
|
-
|
1010
|
-
=== Version 0.7.5
|
1011
|
-
This release adds support for Heckle - Seattle'rb's code mutation tool.
|
1012
|
-
There are also several bug fixes to the RSpec core and the RSpec on Rails plugin.
|
1013
|
-
|
1014
|
-
* Removed svn:externals on rails versions and plugins
|
1015
|
-
* Applied [#7345] Adding context_setup and context_teardown, with specs and 100% rcov
|
1016
|
-
* Applied [#7320] [PATCH] Allow XHR requests in controller specs to render RJS templates
|
1017
|
-
* Applied [#7319] Migration code uses drop_column when it should use remove_column (patch from Pat Maddox)
|
1018
|
-
* Added support for Heckle
|
1019
|
-
* Applied [#7282] dump results even if spec is interrupted (patch from Kouhei Sutou)
|
1020
|
-
* Applied [#7277] model.should_have(n).errors_on(:attribute) (patch from Wilson Bilkovich)
|
1021
|
-
* Applied [#7270] RSpec render_partial colliding with simply_helpful (patch from David Goodlad)
|
1022
|
-
* Added [#7250] stubs should support throwing
|
1023
|
-
* Added [#7249] stubs should support yielding
|
1024
|
-
* Fixed [#6760] fatal error when accessing nested finders in rspec
|
1025
|
-
* Fixed [#7179] script/generate rspec_scaffold generates incorrect helper name
|
1026
|
-
* Added preliminary support for assert_select (response.should_have)
|
1027
|
-
* Fixed [#6971] and_yield does not work when the arity is -1
|
1028
|
-
* Fixed [#6898] Can we separate rspec from the plugins?
|
1029
|
-
* Added [#7025] should_change should accept a block
|
1030
|
-
* Applied [#6989] partials with locals (patch from Micah Martin)
|
1031
|
-
* Applied [#7023] Typo in team.page
|
1032
|
-
|
1033
|
-
=== Version 0.7.4
|
1034
|
-
|
1035
|
-
This release features a complete redesign of the reports generated with --format html.
|
1036
|
-
As usual there are many bug fixes - mostly related to spec/rails.
|
1037
|
-
|
1038
|
-
* Applied [#7010] Fixes :spacer_template does not work w/ view spec (patch from Shintaro Kakutani)
|
1039
|
-
* Applied [#6798] ensure two ':' in the first backtrace line for Emacs's 'next-error' command (patch from Kouhei Sutou)
|
1040
|
-
* Added Much nicer reports to generated website
|
1041
|
-
* Much nicer reports with --format --html (patch from Luke Redpath)
|
1042
|
-
* Applied [#6959] Calls to render and redirect in controllers should return true
|
1043
|
-
* Fixed [#6981] helper method is not available in partial template.
|
1044
|
-
* Added [#6978] mock should tell you the expected and actual args when receiving the right message with the wrong args
|
1045
|
-
* Added the possibility to tweak the output of the HtmlFormatter (by overriding extra_failure_content).
|
1046
|
-
* Fixed [#6936] View specs don't include ApplicationHelper by default
|
1047
|
-
* Fixed [#6903] Rendering a partial in a view makes the view spec blow up
|
1048
|
-
* Added callback library from Brian Takita
|
1049
|
-
* Added [#6925] support controller.should_render :action_name
|
1050
|
-
* Fixed [#6884] intermittent errors related to method binding
|
1051
|
-
* Fixed [#6870] rspec on edge rails spec:controller fixture loading fails
|
1052
|
-
* Using obj.inspect for all messages
|
1053
|
-
* Improved performance by getting rid of instance_exec (instance_eval is good enough because we never need to pass it args)
|
1054
|
-
|
1055
|
-
=== Version 0.7.3
|
1056
|
-
|
1057
|
-
Almost normal bug fix/new feature release.
|
1058
|
-
|
1059
|
-
A couple of things you need to change in your rails specs:
|
1060
|
-
# spec_helper.rb is a little different (see http://rspec.rubyforge.org/upgrade.html)
|
1061
|
-
# use controller.should_render before OR after the action (controller.should_have_rendered is deprecated)
|
1062
|
-
|
1063
|
-
* Applied [#6577] messy mock backtrace when frozen to edge rails (patch from Jay Levitt)
|
1064
|
-
* Fixed [#6674] rspec_on_rails fails on @session deprecation warning
|
1065
|
-
* Fixed [#6780] routing() was failing...fix included - works for 1.1.6 and edge (1.2)
|
1066
|
-
* Fixed [#6835] bad message with arbitrary predicate
|
1067
|
-
* Added [#6731] Partial templates rendered
|
1068
|
-
* Fixed [#6713] helper methods not rendered in view tests?
|
1069
|
-
* Fixed [#6707] cannot run controller / helper tests via rails_spec or spec only works with rake
|
1070
|
-
* Applied [#6417] lambda {...}.should_change(receiver, :message) (patch from Wilson Bilkovich)
|
1071
|
-
* Eliminated dependency on ZenTest
|
1072
|
-
* Fixed [#6650] Reserved characters in the TextMate bundle break svn on Win32
|
1073
|
-
* Fixed [#6643] script/generate rspec_controller: invalid symbol generation for 'controller_name' for *modularized* controllers
|
1074
|
-
* The script/rails_spec command has been moved to bin/drbspec in RSpec core (installed by the gem)
|
1075
|
-
|
1076
|
-
=== Version 0.7.2
|
1077
|
-
|
1078
|
-
This release introduces a brand new RSpec bundle for TextMate, plus some small bugfixes.
|
1079
|
-
|
1080
|
-
* Packaged RSpec.tmbundle.tgz as part of the distro
|
1081
|
-
* Fixed [#6593] Add moving progress bar to HtmlFormatter using Javascript
|
1082
|
-
* Applied [#6265] should_raise should accept an Exception object
|
1083
|
-
* Fixed [#6616] Can't run Rails specs with RSpec.tmbundle
|
1084
|
-
* Fixed [#6411] Can't run Rails specs with ruby
|
1085
|
-
* Added [#6589] New -l --line option. This is useful for IDE/editor runners/extensions.
|
1086
|
-
* Fixed [#6615] controller.should_render_rjs should support :partial => 'path/to/template'
|
1087
|
-
|
1088
|
-
=== Version 0.7.1
|
1089
|
-
|
1090
|
-
Bug fixes and a couple o' new features.
|
1091
|
-
|
1092
|
-
* Fixed [#6575] Parse error in aliasing the partial mock original method (patch by Brian Takita)
|
1093
|
-
* Fixed [#6277] debris left by stubbing (trunk) [submitted by dastels] (fixed by fix to [#6575])
|
1094
|
-
* Fixed [#6575] Parse error in aliasing the partial mock original method
|
1095
|
-
* Fixed [#6555] should_have_tag does not match documentation
|
1096
|
-
* Fixed [#6567] SyntaxError should not stop entire run
|
1097
|
-
* Fixed [#6558] integrated views look for template even when redirected
|
1098
|
-
* Fixed [#6547] response.should be_redirect broken in 0.7.0
|
1099
|
-
* Applied [#6471] Easy way to spec routes
|
1100
|
-
* Applied [#6587] Rspec on Rails displays "Spec::Rails::ContextFactory" as context name
|
1101
|
-
* Applied [#6514] Document has trivial typos.
|
1102
|
-
* Added [#6560] controller.session should be available before the action
|
1103
|
-
* Added support for should_have_rjs :visual_effect
|
1104
|
-
* Different printing and colours for unmet expectations (red) and other exceptions (magenta)
|
1105
|
-
* Simplified method_missing on mock_methods to make it less invasive on partial mocks.
|
1106
|
-
|
1107
|
-
=== Version 0.7.0
|
1108
|
-
|
1109
|
-
This is the "Grow up and eat your own dog food release". RSpec is now used on itself and
|
1110
|
-
we're no longer using Test::Unit to test it. Although, we are still extending Test::Unit
|
1111
|
-
for the rails plugin (indirectly - through ZenTest)
|
1112
|
-
|
1113
|
-
IMPORTANT NOTE: THIS RELEASE IS NOT 100% BACKWARDS COMPATIBLE TO 0.6.x
|
1114
|
-
|
1115
|
-
There are a few changes that will require that you change your existing specs.
|
1116
|
-
|
1117
|
-
RSpec now handles equality exactly like ruby does:
|
1118
|
-
|
1119
|
-
# actual.should_equal(expected) will pass if actual.equal?(expected) returns true
|
1120
|
-
# actual.should eql(expected) will pass if actual.eql?(expected) returns true
|
1121
|
-
# actual.should == expected will pass if actual == expected) returns true
|
1122
|
-
|
1123
|
-
At the high level, eql? implies equivalence, while equal? implies object identity. For more
|
1124
|
-
information on how ruby deals w/ equality, you should do this:
|
1125
|
-
|
1126
|
-
ri equal?
|
1127
|
-
|
1128
|
-
or look at this:
|
1129
|
-
|
1130
|
-
http://www.ruby-doc.org/core/classes/Object.html#M001057
|
1131
|
-
|
1132
|
-
Also, we left in should_be as a synonym for should_equal, so the only specs that should break are the
|
1133
|
-
ones using should_equal (which used to use <code>==</code> instead of <code>.equal?</code>).
|
1134
|
-
|
1135
|
-
Lastly, should_be used to handle true and false differently from any other values. We've removed
|
1136
|
-
this special handling, so now actual.should_be true will fail for any value other than true (it
|
1137
|
-
used to pass for any non-nil, non-false value), and actual.should_be false will fail for any
|
1138
|
-
value other than false (it used to pass for nil or false).
|
1139
|
-
|
1140
|
-
Here's what you'll need to do to update your specs:
|
1141
|
-
# search for "should_equal" and replace with "should_eql"
|
1142
|
-
# run specs
|
1143
|
-
|
1144
|
-
If any specs still fail, they are probably related to should be_true or should_be_false using
|
1145
|
-
non-boolean values. Those you'll just have to inspect manually and adjust appropriately (sorry!).
|
1146
|
-
|
1147
|
-
--------------------------------------------------
|
1148
|
-
Specifying multiple return values in mocks now works like this:
|
1149
|
-
|
1150
|
-
mock.should_receive(:message).and_return(1,2,3)
|
1151
|
-
|
1152
|
-
It used to work like this:
|
1153
|
-
|
1154
|
-
mock.should_receive(:message).and_return([1,2,3])
|
1155
|
-
|
1156
|
-
but we decided that was counter intuitive and otherwise lame.
|
1157
|
-
|
1158
|
-
Here's what you'll need to do to update your specs:
|
1159
|
-
# search for "and_return(["
|
1160
|
-
# get rid of the "[" and "]"
|
1161
|
-
|
1162
|
-
--------------------------------------------------
|
1163
|
-
RSpec on Rails now supports the following (thanks to ZenTest upon which it is built):
|
1164
|
-
|
1165
|
-
# Separate specs for models, views, controllers and helpers
|
1166
|
-
# Controller specs are completely decoupled from the views by default (though you can tell them to couple themselves if you prefer)
|
1167
|
-
# View specs are completely decoupled from app-specific controllers
|
1168
|
-
|
1169
|
-
See http://rspec.rubyforge.org/documentation/rails/index.html for more information
|
1170
|
-
--------------------------------------------------
|
1171
|
-
As usual, there are also other new features and bug fixes:
|
1172
|
-
|
1173
|
-
* Added lots of documentation on mocks/stubs and the rails plugin.
|
1174
|
-
* Added support for assigns[key] syntax for controller specs (to align w/ pre-existing syntax for view specs)
|
1175
|
-
* Added support for controller.should_redirect_to
|
1176
|
-
* RSpec on Rails automatically checks whether it's compatible with the installed RSpec
|
1177
|
-
* Applied [#6393] rspec_on_rails uses deprecated '@response' instead of the accessor
|
1178
|
-
* RSpec now has 100% spec coverage(!)
|
1179
|
-
* Added support for stubbing and partial mocking
|
1180
|
-
* Progress (....F..F.) is now coloured. Tweaked patch from KAKUTANI Shintaro.
|
1181
|
-
* Backtrace now excludes the rcov runner (/usr/local/bin/rcov)
|
1182
|
-
* Fixed [#5539] predicates do not work w/ rails
|
1183
|
-
* Added [#6091] support for Regexp matching messages sent to should_raise
|
1184
|
-
* Added [#6333] support for Regexp matching in mock arguments
|
1185
|
-
* Applied [#6283] refactoring of diff support to allow selectable formats and custom differs
|
1186
|
-
* Fixed [#5564] "ruby spec_file.rb" doesn't work the same way as "spec spec_file.rb"
|
1187
|
-
* Fixed [#6056] Multiple output of failing-spec notice
|
1188
|
-
* Fixed [#6233] Colours in specdoc
|
1189
|
-
* Applied [#6207] Allows --diff option to diff target and expected's #inspect output (Patch by Lachie Cox)
|
1190
|
-
* Fixed [#6203] Failure messages are misleading - consider using inspect.
|
1191
|
-
* Added [#6334] subject.should_have_xyz will try to call subject.has_xyz? - use this for hash.should_have_key(key)
|
1192
|
-
* Fixed [#6017] Rake task should ignore empty or non-existent spec-dirs
|
1193
|
-
|
1194
|
-
=== Version 0.6.4
|
1195
|
-
|
1196
|
-
In addition to a number of bug fixes and patches, this release begins to formalize the support for
|
1197
|
-
RSpec on Rails.
|
1198
|
-
|
1199
|
-
* Added Christopher Petrilli's TextMate bundle to vendor/textmate/RSpec.tmbundle
|
1200
|
-
* Fixed [#5909], once again supporting multi_word_predicates
|
1201
|
-
* Applied [#5873] - response.should_have_rjs (initial patch from Jake Howerton, based on ARTS by Kevin Clark)
|
1202
|
-
* Added generation of view specs for rspec_on_rails
|
1203
|
-
* Applied [#5815] active_record_subclass.should_have(3).records
|
1204
|
-
* Added support in "rake stats" for view specs (in spec/views)
|
1205
|
-
* Applied [#5801] QuickRef.pdf should say RSpec, not rSpec
|
1206
|
-
* Applied [#5728] rails_spec_runner fails on Windows (Patch from Lindsay Evans).
|
1207
|
-
* Applied [#5708] RSpec Rails plugin rspec_controller generator makes specs that do not parse.
|
1208
|
-
* Cleaned up RSpec on Rails so it doesn't pollute as much during bootstrapping.
|
1209
|
-
* Added support for response.should_have_tag and response.should_not_have_tag (works just like assert_tag in rails)
|
1210
|
-
* Added new -c, --colour, --color option for colourful (red/green) output. Inspired from Pat Eyler's Redgreen gem.
|
1211
|
-
* Added examples for Watir and Selenium under the gem's vendor directory.
|
1212
|
-
* Renamed rails_spec_runner to rails_spec_server (as referred to in the docs)
|
1213
|
-
* Added support for trying a plural for arbitrary predicates. E.g. Album.should_exist(:name => "Hey Jude") will call Album.exists?(:name => "Hey Jude")
|
1214
|
-
* Added support for should_have to work with methods taking args returning a collection. E.g. @dave.should_have(3).albums_i_have_that_this_guy_doesnt(@aslak)
|
1215
|
-
* Added [#5570] should_not_receive(:msg).with(:specific, "args")
|
1216
|
-
* Applied [#5065] to support using define_method rather than method_missing to capture expected messages on mocks. Thanks to Eero Saynatkari for the tip that made it work.
|
1217
|
-
* Restructured directories and Modules in order to separate rspec into three distinct Modules: Spec::Expectations, Spec::Runner and Spec::Mocks. This will allow us to more easily integrate other mock frameworks and/or allow test/unit users to take advantage of the expectation API.
|
1218
|
-
* Applied [#5620] support any boolean method and arbitrary comparisons (5.should_be < 6) (Patch from Mike Williams)
|
1219
|
-
|
1220
|
-
=== Version 0.6.3
|
1221
|
-
|
1222
|
-
This release fixes some minor bugs related to RSpec on Rails
|
1223
|
-
Note that if you upgrade a rails app with this version of the rspec_on_rails plugin
|
1224
|
-
you should remove your lib/tasks/rspec.rake if it exists.
|
1225
|
-
|
1226
|
-
* Backtraces from drb (and other standard ruby libraries) are now stripped from backtraces.
|
1227
|
-
* Applied [#5557] Put rspec.rake into the task directory of the RSpec on Rails plugin (Patch from Daniel Siemssen)
|
1228
|
-
* Applied [#5556] rails_spec_server loads environment.rb twice (Patch from Daniel Siemssen)
|
1229
|
-
|
1230
|
-
=== Version 0.6.2
|
1231
|
-
This release fixes a couple of regressions with the rake task that were introduced in the previous version (0.6.1)
|
1232
|
-
|
1233
|
-
* Fixed [#5518] ruby -w: warnings in 0.6.1
|
1234
|
-
* Applied [#5525] fix rake task path to spec tool for gem-installed rspec (patch from Riley Lynch)
|
1235
|
-
* Fixed a teensey regression with the rake task - introduced in 0.6.1. The spec command is now quoted so it works on windows.
|
1236
|
-
|
1237
|
-
=== Version 0.6.1
|
1238
|
-
This is the "fix the most annoying bugs release" of RSpec. There are 9 bugfixes this time.
|
1239
|
-
Things that may break backwards compatibility:
|
1240
|
-
1) Spec::Rake::SpecTask no longer has the options attribute. Use ruby_opts, spec_opts and rcov_opts instead.
|
1241
|
-
|
1242
|
-
* Fixed [#4891] RCOV task failing on windows
|
1243
|
-
* Fixed [#4896] Shouldn't modify user's $LOAD_PATH (Tip from Gavin Sinclair)
|
1244
|
-
* Fixed [#5369] ruby -w: warnings in RSpec 0.5.16 (Tip from Suraj Kurapati)
|
1245
|
-
* Applied [#5141] ExampleMatcher doesn't escape strings before matching (Patch from Nikolai Weibull).
|
1246
|
-
* Fixed [#5224] Move 'require diff-lcs' from test_helper.rb to diff_test.rb (Tip from Chris Roos)
|
1247
|
-
* Applied [#5449] Rake stats for specs (Patch from Nick Sieger)
|
1248
|
-
* Applied [#5468, #5058] Fix spec runner to correctly run controller specs (Patch from Daniel Siemssen)
|
1249
|
-
* Applied fixes to rails_spec_server to improve its ability to run several times. (Patch from Daniel Siemssen)
|
1250
|
-
* Changed RCov::VerifyTask to fail if the coverage is above the threshold. This is to ensure it gets bumped when coverage improves.
|
1251
|
-
|
1252
|
-
=== Version 0.6.0
|
1253
|
-
This release makes an official commitment to underscore_syntax (with no more support for dot.syntax)
|
1254
|
-
|
1255
|
-
* Fixed bug (5292) that caused mock argument matching to fail
|
1256
|
-
* Converted ALL tests to use underscore syntax
|
1257
|
-
* Fixed all remaining problems with underscores revealed by converting all the tests to underscores
|
1258
|
-
* Enhanced sugar to support combinations of methods (i.e. once.and_return)
|
1259
|
-
* Simplified helper structure taking advantage of dot/underscore combos (i.e. should.be.an_instance_of, which can be expressed as should be_an_instance_of)
|
1260
|
-
* Added support for at_most in mocks
|
1261
|
-
* Added support for should_not_receive(:msg) (will be removing should_receive(:msg).never some time soon)
|
1262
|
-
* Added support for should_have_exactly(5).items_in_collection
|
1263
|
-
|
1264
|
-
=== Version 0.5.16
|
1265
|
-
This release improves Rails support and test2spec translation.
|
1266
|
-
|
1267
|
-
* Fixed underscore problems that occurred when RSpec was used in Rails
|
1268
|
-
* Simplified the Rails support by packaging it as a plugin instead of a generator gem.
|
1269
|
-
* Fixed [#5063] 'rspec_on_rails' require line in spec_helper.rb
|
1270
|
-
* Added pre_commit rake task to reduce risk of regressions. Useful for RSpec developers and patchers.
|
1271
|
-
* Added failure_message to RSpec Rake task
|
1272
|
-
* test2spec now defines converted helper methods outside of the setup block (bug #5057).
|
1273
|
-
|
1274
|
-
=== Version 0.5.15
|
1275
|
-
This release removes a prematurely added feature that shouldn't have been added.
|
1276
|
-
|
1277
|
-
* Removed support for differences that was added in 0.5.14. The functionality is not aligned with RSpec's vision.
|
1278
|
-
|
1279
|
-
=== Version 0.5.14
|
1280
|
-
This release introduces better ways to extend specs, improves some of the core API and
|
1281
|
-
a experimental support for faster rails specs.
|
1282
|
-
|
1283
|
-
* Added proc methods for specifying differences (increments and decrements). See difference_test.rb
|
1284
|
-
* Methods can now be defined alongside specs. This obsoletes the need for defining methods in setup. (Patch #5002 from Brian Takita)
|
1285
|
-
* Sugar (underscores) now works correctly with should be_a_kind_of and should be_an_instance_of
|
1286
|
-
* Added support for include and inherit in contexts. (Patch #4971 from Brian Takita)
|
1287
|
-
* Added rails_spec and rails_spec_server for faster specs on rails (still buggy - help needed)
|
1288
|
-
* Fixed bug that caused should_render to break if given a :symbol (in Rails)
|
1289
|
-
* Added support for comparing exception message in should_raise and should_not_raise
|
1290
|
-
|
1291
|
-
=== Version 0.5.13
|
1292
|
-
This release fixes some subtle bugs in the mock API.
|
1293
|
-
|
1294
|
-
* Use fully-qualified class name of Exceptions in failure message. Easier to debug that way.
|
1295
|
-
* Fixed a bug that caused mocks to yield a one-element array (rather than the element) when one yield arg specified.
|
1296
|
-
* Mocks not raise AmbiguousReturnError if an explicit return is used at the same time as an expectation block.
|
1297
|
-
* Blocks passed to yielding mocks can now raise without causing mock verification to fail.
|
1298
|
-
|
1299
|
-
=== Version 0.5.12
|
1300
|
-
This release adds diff support for failure messages, a HTML formatter plus some other
|
1301
|
-
minor enhancements.
|
1302
|
-
|
1303
|
-
* Added HTML formatter.
|
1304
|
-
* Added fail_on_error option to spectask.
|
1305
|
-
* Added support for diffing, using the diff-lcs Rubygem (#2648).
|
1306
|
-
* Remove RSpec on Rails files from backtrace (#4694).
|
1307
|
-
* All of RSpec's own tests run successfully after translation with test2spec.
|
1308
|
-
* Added --verbose mode for test2spec - useful for debugging when classes fail to translate.
|
1309
|
-
* Output of various formatters is now flushed - to get more continuous output.
|
1310
|
-
|
1311
|
-
=== Version 0.5.11
|
1312
|
-
This release makes test2spec usable with Rails (with some manual steps).
|
1313
|
-
See http://rspec.rubyforge.org/tools/rails.html for more details
|
1314
|
-
|
1315
|
-
* test2spec now correctly translates bodies of helper methods (non- test_*, setup and teardown ones).
|
1316
|
-
* Added more documentation about how to get test2spec to work with Rails.
|
1317
|
-
|
1318
|
-
=== Version 0.5.10
|
1319
|
-
This version features a second rewrite of test2spec - hopefully better than the previous one.
|
1320
|
-
|
1321
|
-
* Improved test2spec's internals. It now transforms the syntax tree before writing out the code.
|
1322
|
-
|
1323
|
-
=== Version 0.5.9
|
1324
|
-
This release improves test2spec by allowing more control over the output
|
1325
|
-
|
1326
|
-
* Added --template option to test2spec, which allows for custom output driven by ERB
|
1327
|
-
* Added --quiet option to test2spec
|
1328
|
-
* Removed unnecessary dependency on RubyToC
|
1329
|
-
|
1330
|
-
=== Version 0.5.8
|
1331
|
-
This release features a new Test::Unit to RSpec translation tool.
|
1332
|
-
Also note that the RubyGem of the previous release (0.5.7) was corrupt.
|
1333
|
-
We're close to being able to translate all of RSpec's own Test::Unit
|
1334
|
-
tests and have them run successfully!
|
1335
|
-
|
1336
|
-
* Updated test2spec documentation.
|
1337
|
-
* Replaced old test2rspec with a new test2spec, which is based on ParseTree and RubyInline.
|
1338
|
-
|
1339
|
-
=== Version 0.5.7
|
1340
|
-
This release changes examples and documentation to recommend underscores rather than dots,
|
1341
|
-
and addresses some bugfixes and changes to the spec commandline.
|
1342
|
-
|
1343
|
-
* spec DIR now works correctly, recursing down and slurping all *.rb files
|
1344
|
-
* All documentation and examples are now using '_' instead of '.'
|
1345
|
-
* Custom external formatters can now be specified via --require and --format.
|
1346
|
-
|
1347
|
-
=== Version 0.5.6
|
1348
|
-
This release fixes a bug in the Rails controller generator
|
1349
|
-
|
1350
|
-
* The controller generator did not write correct source code (missing 'do'). Fixed.
|
1351
|
-
|
1352
|
-
=== Version 0.5.5
|
1353
|
-
This release adds initial support for Ruby on Rails in the rspec_generator gem.
|
1354
|
-
|
1355
|
-
* [Rails] Reorganised Lachie's original code to be a generator packaged as a gem rather than a plugin.
|
1356
|
-
* [Rails] Imported code from http://lachie.info/svn/projects/rails_plugins/rspec_on_rails (Written by Lachie Cox)
|
1357
|
-
* Remove stack trace lines from TextMate's Ruby bundle
|
1358
|
-
* Better error message from spectask when no spec files are found.
|
1359
|
-
|
1360
|
-
=== Version 0.5.4
|
1361
|
-
The "the tutorial is ahead of the gem" release
|
1362
|
-
|
1363
|
-
* Support for running a single spec with --spec
|
1364
|
-
* Exitcode is now 1 unless all specs pass, in which case it's 0.
|
1365
|
-
* -v, --version now both mean the same thing
|
1366
|
-
* For what was verbose output (-v), use --format specdoc or -f s
|
1367
|
-
* --format rdoc always runs in dry-run mode
|
1368
|
-
* Removed --doc and added --format and --dry-run
|
1369
|
-
* Refactored towards more pluggable formatters
|
1370
|
-
* Use webgen's execute tag when generating website (more accurate)
|
1371
|
-
* Fixed incorrect quoting of spec_opts in SpecTask
|
1372
|
-
* Added patch to enable underscored shoulds like 1.should_equal(1) - patch from Rich Kilmer
|
1373
|
-
* Removed most inherited instance method from Mock, making more methods mockable.
|
1374
|
-
* Made the RCovVerify task part of the standard toolset.
|
1375
|
-
* Documented Rake task and how to use it with Rcov
|
1376
|
-
* Implemented <ruby></ruby> tags for website (hooking into ERB, RedCloth and syntax)
|
1377
|
-
* RSpec Rake task now takes spec_opts and out params so it can be used for doc generation
|
1378
|
-
* RCov integration for RSpec Rake task (#4058)
|
1379
|
-
* Group all results instead of printing them several times (#4057)
|
1380
|
-
* Mocks can now yield
|
1381
|
-
* Various improvements to error reporting (including #4191)
|
1382
|
-
* backtrace excludes rspec code - use -b to include it
|
1383
|
-
* split examples into examples (passing) and failing_examples
|
1384
|
-
|
1385
|
-
=== Version 0.5.3
|
1386
|
-
The "hurry up, CoR is in two days" release.
|
1387
|
-
|
1388
|
-
* Don't run rcov by default
|
1389
|
-
* Make separate task for running tests with RCov
|
1390
|
-
* Added Rake task to fail build if coverage drops below a certain threshold
|
1391
|
-
* Even more failure output cleanup (simplification)
|
1392
|
-
* Added duck_type constraint for mocks
|
1393
|
-
|
1394
|
-
=== Version 0.5.2
|
1395
|
-
This release has minor improvements to the commandline and fixes some gem warnings
|
1396
|
-
|
1397
|
-
* Readded README to avoid RDoc warnings
|
1398
|
-
* Added --version switch to commandline
|
1399
|
-
* More changes to the mock API
|
1400
|
-
|
1401
|
-
=== Version 0.5.1
|
1402
|
-
This release is the first release of RSpec with a new website. It will look better soon.
|
1403
|
-
|
1404
|
-
* Added initial documentation for API
|
1405
|
-
* Added website based on webgen
|
1406
|
-
* Modified test task to use rcov
|
1407
|
-
* Deleted unused code (thanks, rcov!)
|
1408
|
-
* Various changes to the mock API,
|
1409
|
-
* Various improvements to failure reporting
|
1410
|
-
|
1411
|
-
=== Version 0.5.0
|
1412
|
-
This release introduces a new API and obsolesces previous versions.
|
1413
|
-
|
1414
|
-
* Moved source code to separate subfolders
|
1415
|
-
* Added new DSL runner based on instance_exec
|
1416
|
-
* Added spike for testdox/rdoc generation
|
1417
|
-
* merge Astels' and Chelimsky's work on ShouldHelper
|
1418
|
-
* this would be 0.5.0 if I updated the documentation
|
1419
|
-
* it breaks all of your existing specifications. We're not sorry.
|
1420
|
-
|
1421
|
-
=== Version 0.3.2
|
1422
|
-
|
1423
|
-
The "srbaker is an idiot" release.
|
1424
|
-
|
1425
|
-
* also forgot to update the path to the actual Subversion repository
|
1426
|
-
* this should be it
|
1427
|
-
|
1428
|
-
=== Version 0.3.1
|
1429
|
-
|
1430
|
-
This is just 0.3.0, but with the TUTORIAL added to the documentation list.
|
1431
|
-
|
1432
|
-
* forgot to include TUTORIAL in the documentation
|
1433
|
-
|
1434
|
-
=== Version 0.3.0
|
1435
|
-
|
1436
|
-
It's been a while since last release, lots of new stuff is available. For instance:
|
1437
|
-
|
1438
|
-
* improvements to the runners
|
1439
|
-
* addition of should_raise expectation (thanks to Brian Takita)
|
1440
|
-
* some documentation improvements
|
1441
|
-
* RSpec usable as a DSL
|
1442
|
-
|
1443
|
-
=== Version 0.2.0
|
1444
|
-
|
1445
|
-
This release provides a tutorial for new users wishing to get started with
|
1446
|
-
RSpec, and many improvements.
|
1447
|
-
|
1448
|
-
* improved reporting in the spec runner output
|
1449
|
-
* update the examples to the new mock api
|
1450
|
-
* added TUTORIAL, a getting started document for new users of RSpec
|
1451
|
-
|
1452
|
-
=== Version 0.1.7
|
1453
|
-
|
1454
|
-
This release improves installation and documentation, mock integration and error reporting.
|
1455
|
-
|
1456
|
-
* Comparison errors now print the class name too.
|
1457
|
-
* Mocks now take an optional +options+ parameter to specify behaviour.
|
1458
|
-
* Removed __expects in favour of should_receive
|
1459
|
-
* Added line number reporting in mock error messages for unreceived message expectations.
|
1460
|
-
* Added should_match and should_not_match.
|
1461
|
-
* Added a +mock+ method to Spec::Context which will create mocks that autoverify (no need to call __verify).
|
1462
|
-
* Mocks now require names in the constructor to ensure sensible error messages.
|
1463
|
-
* Made 'spec' executable and updated usage instructions in README accordingly.
|
1464
|
-
* Made more parts of the Spec::Context API private to avoid accidental usage.
|
1465
|
-
* Added more RDoc to Spec::Context.
|
1466
|
-
|
1467
|
-
=== Version 0.1.6
|
1468
|
-
|
1469
|
-
More should methods.
|
1470
|
-
|
1471
|
-
* Added should_match and should_not_match.
|
1472
|
-
|
1473
|
-
=== Version 0.1.5
|
1474
|
-
|
1475
|
-
Included examples and tests in gem.
|
1476
|
-
|
1477
|
-
=== Version 0.1.4
|
1478
|
-
|
1479
|
-
More tests on block based Mock expectations.
|
1480
|
-
|
1481
|
-
=== Version 0.1.3
|
1482
|
-
|
1483
|
-
Improved mocking:
|
1484
|
-
|
1485
|
-
* block based Mock expectations.
|
1486
|
-
|
1487
|
-
=== Version 0.1.2
|
1488
|
-
|
1489
|
-
This release adds some improvements to the mock API and minor syntax improvements
|
1490
|
-
|
1491
|
-
* Added Mock.should_expect for a more consistent DSL.
|
1492
|
-
* Added MockExpectation.and_returns for a better DSL.
|
1493
|
-
* Made Mock behave as a null object after a call to Mock.ignore_missing
|
1494
|
-
* Internal syntax improvements.
|
1495
|
-
* Improved exception trace by adding exception class name to error message.
|
1496
|
-
* Renamed some tests for better consistency.
|
1497
|
-
|
1498
|
-
=== Version 0.1.1
|
1499
|
-
|
1500
|
-
This release adds some shoulds and improves error reporting
|
1501
|
-
|
1502
|
-
* Added should be_same_as and should_not be_same_as.
|
1503
|
-
* Improved error reporting for comparison expectations.
|
1504
|
-
|
1505
|
-
=== Version 0.1.0
|
1506
|
-
|
1507
|
-
This is the first preview release of RSpec, a Behaviour-Driven Development library for Ruby
|
1508
|
-
|
1509
|
-
* Added Rake script with tasks for gems, rdoc etc.
|
1510
|
-
* Added an XForge task to make release go easier.
|