├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── auto_reloader.gemspec ├── bin ├── console └── setup ├── lib ├── auto_reloader.rb └── auto_reloader │ └── version.rb └── spec ├── auto_reloader_spec.rb └── fixtures ├── lib ├── a.rb ├── a │ └── inner.rb ├── b.rb ├── c.rb └── raise_exception_on_load.rb └── load_once └── settings.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/Rakefile -------------------------------------------------------------------------------- /auto_reloader.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/auto_reloader.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/auto_reloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/lib/auto_reloader.rb -------------------------------------------------------------------------------- /lib/auto_reloader/version.rb: -------------------------------------------------------------------------------- 1 | class AutoReloader 2 | VERSION = '0.6.0' 3 | end 4 | -------------------------------------------------------------------------------- /spec/auto_reloader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/spec/auto_reloader_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/lib/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/spec/fixtures/lib/a.rb -------------------------------------------------------------------------------- /spec/fixtures/lib/a/inner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/spec/fixtures/lib/a/inner.rb -------------------------------------------------------------------------------- /spec/fixtures/lib/b.rb: -------------------------------------------------------------------------------- 1 | require 'c' 2 | class B 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/lib/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/spec/fixtures/lib/c.rb -------------------------------------------------------------------------------- /spec/fixtures/lib/raise_exception_on_load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosenfeld/auto_reloader/HEAD/spec/fixtures/lib/raise_exception_on_load.rb -------------------------------------------------------------------------------- /spec/fixtures/load_once/settings.rb: -------------------------------------------------------------------------------- 1 | class Settings 2 | end 3 | --------------------------------------------------------------------------------