├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.rdoc ├── bin └── ci │ └── ci.sh ├── features ├── cucumber_rails4_integration.feature ├── cucumber_rails_integration.feature ├── gemsets │ ├── rails3.0 │ │ ├── Gemfile │ │ └── Gemfile.lock │ ├── rails3.1 │ │ ├── Gemfile │ │ └── Gemfile.lock │ ├── rails3.2 │ │ ├── Gemfile │ │ └── Gemfile.lock │ └── rails4.0 │ │ ├── Gemfile │ │ └── Gemfile.lock ├── rails_delayed_loading_workarounds.feature ├── rspec_rails4_integration.feature ├── rspec_rails_integration.feature ├── steps │ └── rails_steps.rb └── support │ └── env.rb ├── lib └── spork │ ├── app_framework │ └── rails.rb │ └── ext │ └── rails-reloader.rb ├── spec ├── spec_helper.rb ├── spork │ ├── app_framework │ │ └── rails_spec.rb │ └── app_framework_spec.rb └── tmp │ └── config │ └── environment.rb └── spork-rails.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .bundle 3 | tags 4 | vendor 5 | .ruby-version 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/README.rdoc -------------------------------------------------------------------------------- /bin/ci/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/bin/ci/ci.sh -------------------------------------------------------------------------------- /features/cucumber_rails4_integration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/cucumber_rails4_integration.feature -------------------------------------------------------------------------------- /features/cucumber_rails_integration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/cucumber_rails_integration.feature -------------------------------------------------------------------------------- /features/gemsets/rails3.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.0/Gemfile -------------------------------------------------------------------------------- /features/gemsets/rails3.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.0/Gemfile.lock -------------------------------------------------------------------------------- /features/gemsets/rails3.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.1/Gemfile -------------------------------------------------------------------------------- /features/gemsets/rails3.1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.1/Gemfile.lock -------------------------------------------------------------------------------- /features/gemsets/rails3.2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.2/Gemfile -------------------------------------------------------------------------------- /features/gemsets/rails3.2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails3.2/Gemfile.lock -------------------------------------------------------------------------------- /features/gemsets/rails4.0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails4.0/Gemfile -------------------------------------------------------------------------------- /features/gemsets/rails4.0/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/gemsets/rails4.0/Gemfile.lock -------------------------------------------------------------------------------- /features/rails_delayed_loading_workarounds.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/rails_delayed_loading_workarounds.feature -------------------------------------------------------------------------------- /features/rspec_rails4_integration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/rspec_rails4_integration.feature -------------------------------------------------------------------------------- /features/rspec_rails_integration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/rspec_rails_integration.feature -------------------------------------------------------------------------------- /features/steps/rails_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/steps/rails_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/spork/app_framework/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/lib/spork/app_framework/rails.rb -------------------------------------------------------------------------------- /lib/spork/ext/rails-reloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/lib/spork/ext/rails-reloader.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spork/app_framework/rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/spec/spork/app_framework/rails_spec.rb -------------------------------------------------------------------------------- /spec/spork/app_framework_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/spec/spork/app_framework_spec.rb -------------------------------------------------------------------------------- /spec/tmp/config/environment.rb: -------------------------------------------------------------------------------- 1 | RAILS_GEM_VERSION = '2.1.0' -------------------------------------------------------------------------------- /spork-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sporkrb/spork-rails/HEAD/spork-rails.gemspec --------------------------------------------------------------------------------