├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── hike.gemspec ├── lib ├── hike.rb └── hike │ ├── cached_trail.rb │ ├── extensions.rb │ ├── fileutils.rb │ ├── normalized_array.rb │ ├── paths.rb │ └── trail.rb └── test ├── fixtures ├── README ├── app │ └── views │ │ ├── #application.js.coffee.erb# │ │ ├── .#application.js.coffee.erb │ │ ├── .#index.html.erb │ │ ├── .application.js.coffee.erb.swp │ │ ├── .index.html.erb.swp │ │ ├── application.js.coffee.erb │ │ ├── application.js.coffee.str │ │ ├── index.html.erb │ │ ├── index.html.erb~ │ │ ├── index.php │ │ ├── layouts │ │ └── interstitial.html.erb │ │ ├── people.coffee │ │ ├── people.htm │ │ ├── projects.erb │ │ ├── projects │ │ ├── index.html.erb │ │ └── project.js.coffee.erb │ │ └── recordings │ │ ├── index.atom.builder │ │ ├── index.atom.erb │ │ └── index.html.erb └── vendor │ └── plugins │ └── signal_id │ └── app │ └── views │ └── layouts │ └── interstitial.html.erb ├── hike_test.rb ├── test_fileutils.rb ├── test_normalized_array.rb └── test_trail.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/Rakefile -------------------------------------------------------------------------------- /hike.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/hike.gemspec -------------------------------------------------------------------------------- /lib/hike.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike.rb -------------------------------------------------------------------------------- /lib/hike/cached_trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/cached_trail.rb -------------------------------------------------------------------------------- /lib/hike/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/extensions.rb -------------------------------------------------------------------------------- /lib/hike/fileutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/fileutils.rb -------------------------------------------------------------------------------- /lib/hike/normalized_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/normalized_array.rb -------------------------------------------------------------------------------- /lib/hike/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/paths.rb -------------------------------------------------------------------------------- /lib/hike/trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/lib/hike/trail.rb -------------------------------------------------------------------------------- /test/fixtures/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/#application.js.coffee.erb#: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/.#application.js.coffee.erb: -------------------------------------------------------------------------------- 1 | sam@pursuit.41266 -------------------------------------------------------------------------------- /test/fixtures/app/views/.#index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/.application.js.coffee.erb.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/test/fixtures/app/views/.application.js.coffee.erb.swp -------------------------------------------------------------------------------- /test/fixtures/app/views/.index.html.erb.swp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/application.js.coffee.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/application.js.coffee.str: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/index.html.erb~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/layouts/interstitial.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/people.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/people.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/projects.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/projects/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/projects/project.js.coffee.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/recordings/index.atom.builder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/recordings/index.atom.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/views/recordings/index.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/vendor/plugins/signal_id/app/views/layouts/interstitial.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/hike_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/test/hike_test.rb -------------------------------------------------------------------------------- /test/test_fileutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/test/test_fileutils.rb -------------------------------------------------------------------------------- /test/test_normalized_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/test/test_normalized_array.rb -------------------------------------------------------------------------------- /test/test_trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/hike/HEAD/test/test_trail.rb --------------------------------------------------------------------------------