├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── HISTORY.md ├── LICENSE ├── Manifest.txt ├── README.md ├── Rakefile ├── bin ├── stickler ├── stickler-passenger-config └── stickler-server ├── examples ├── as_middleware.ru ├── auth_repo.ru ├── config.ru ├── fetch-a-gem ├── gemcutter_repo.ru ├── index_repo.ru ├── local_repo.ru ├── mirror_repo.ru └── not_found.ru ├── lib ├── stickler.rb └── stickler │ ├── client.rb │ ├── client │ ├── config.rb │ ├── config_file.rb │ ├── delete.rb │ ├── latest-version.rb │ ├── list.rb │ ├── mirror.rb │ ├── push.rb │ ├── unyank.rb │ └── yank.rb │ ├── error.rb │ ├── gem_container.rb │ ├── gemfile_lock_parser.rb │ ├── logable.rb │ ├── middleware.rb │ ├── middleware │ ├── compression.rb │ ├── gemcutter.rb │ ├── helpers.rb │ ├── index.rb │ ├── local.rb │ ├── mirror.rb │ ├── not_found.rb │ └── server.rb │ ├── paths.rb │ ├── repository.rb │ ├── repository │ ├── api.rb │ ├── basic_authenticator.rb │ ├── index.rb │ ├── local.rb │ ├── mirror.rb │ ├── null.rb │ ├── remote.rb │ ├── remote_mirror.rb │ └── rubygems_authenticator.rb │ ├── server.rb │ ├── server │ ├── public │ │ ├── css │ │ │ ├── blueprint │ │ │ │ ├── LICENSE │ │ │ │ ├── ie.css │ │ │ │ └── screen.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── apple-touch-icon.png │ │ │ └── favicon.ico │ │ └── js │ │ │ └── modernizr-1.5.min.js │ └── views │ │ ├── index.erb │ │ └── layout.erb │ └── spec_lite.rb ├── man ├── stickler-passenger-config.1 ├── stickler-passenger-config.1.ronn ├── stickler-server.1 ├── stickler-server.1.ronn ├── stickler.1 └── stickler.1.ronn ├── stickler.gemspec ├── tasks ├── default.rake ├── man.rake └── this.rb └── test ├── data ├── Gemfile.lock.example ├── gemcutter │ └── gems │ │ └── foo-1.0.0.gem ├── gems │ ├── bar-1.0.0.gem │ ├── baz-3.1.4-java.gem │ ├── baz-3.1.4.gem │ ├── foo-1.0.0.gem │ └── foo-2.0.0a.gem └── specifications │ ├── bar-1.0.0.gemspec │ ├── baz-3.1.4-java.gemspec │ ├── baz-3.1.4.gemspec │ ├── foo-1.0.0.gemspec │ └── foo-2.0.0a.gemspec ├── index_test_helpers.rb ├── middleware ├── test_local.rb └── test_not_found.rb ├── repository ├── test_api.rb ├── test_api_behavior.rb ├── test_index.rb ├── test_local.rb ├── test_null.rb ├── test_remote.rb └── test_remote_authenticated.rb ├── stickler_test_server.rb ├── test_gemfile_lock_parser.rb ├── test_paths.rb ├── test_spec_lite.rb └── test_stickler.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/LICENSE -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/stickler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/bin/stickler -------------------------------------------------------------------------------- /bin/stickler-passenger-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/bin/stickler-passenger-config -------------------------------------------------------------------------------- /bin/stickler-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/bin/stickler-server -------------------------------------------------------------------------------- /examples/as_middleware.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/as_middleware.ru -------------------------------------------------------------------------------- /examples/auth_repo.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/auth_repo.ru -------------------------------------------------------------------------------- /examples/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/config.ru -------------------------------------------------------------------------------- /examples/fetch-a-gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/fetch-a-gem -------------------------------------------------------------------------------- /examples/gemcutter_repo.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/gemcutter_repo.ru -------------------------------------------------------------------------------- /examples/index_repo.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/index_repo.ru -------------------------------------------------------------------------------- /examples/local_repo.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/local_repo.ru -------------------------------------------------------------------------------- /examples/mirror_repo.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/mirror_repo.ru -------------------------------------------------------------------------------- /examples/not_found.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/examples/not_found.ru -------------------------------------------------------------------------------- /lib/stickler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler.rb -------------------------------------------------------------------------------- /lib/stickler/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client.rb -------------------------------------------------------------------------------- /lib/stickler/client/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/config.rb -------------------------------------------------------------------------------- /lib/stickler/client/config_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/config_file.rb -------------------------------------------------------------------------------- /lib/stickler/client/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/delete.rb -------------------------------------------------------------------------------- /lib/stickler/client/latest-version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/latest-version.rb -------------------------------------------------------------------------------- /lib/stickler/client/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/list.rb -------------------------------------------------------------------------------- /lib/stickler/client/mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/mirror.rb -------------------------------------------------------------------------------- /lib/stickler/client/push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/push.rb -------------------------------------------------------------------------------- /lib/stickler/client/unyank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/unyank.rb -------------------------------------------------------------------------------- /lib/stickler/client/yank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/client/yank.rb -------------------------------------------------------------------------------- /lib/stickler/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/error.rb -------------------------------------------------------------------------------- /lib/stickler/gem_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/gem_container.rb -------------------------------------------------------------------------------- /lib/stickler/gemfile_lock_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/gemfile_lock_parser.rb -------------------------------------------------------------------------------- /lib/stickler/logable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/logable.rb -------------------------------------------------------------------------------- /lib/stickler/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/compression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/compression.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/gemcutter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/gemcutter.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/helpers.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/index.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/local.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/mirror.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/not_found.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/not_found.rb -------------------------------------------------------------------------------- /lib/stickler/middleware/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/middleware/server.rb -------------------------------------------------------------------------------- /lib/stickler/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/paths.rb -------------------------------------------------------------------------------- /lib/stickler/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository.rb -------------------------------------------------------------------------------- /lib/stickler/repository/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/api.rb -------------------------------------------------------------------------------- /lib/stickler/repository/basic_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/basic_authenticator.rb -------------------------------------------------------------------------------- /lib/stickler/repository/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/index.rb -------------------------------------------------------------------------------- /lib/stickler/repository/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/local.rb -------------------------------------------------------------------------------- /lib/stickler/repository/mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/mirror.rb -------------------------------------------------------------------------------- /lib/stickler/repository/null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/null.rb -------------------------------------------------------------------------------- /lib/stickler/repository/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/remote.rb -------------------------------------------------------------------------------- /lib/stickler/repository/remote_mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/remote_mirror.rb -------------------------------------------------------------------------------- /lib/stickler/repository/rubygems_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/repository/rubygems_authenticator.rb -------------------------------------------------------------------------------- /lib/stickler/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server.rb -------------------------------------------------------------------------------- /lib/stickler/server/public/css/blueprint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/public/css/blueprint/LICENSE -------------------------------------------------------------------------------- /lib/stickler/server/public/css/blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/public/css/blueprint/ie.css -------------------------------------------------------------------------------- /lib/stickler/server/public/css/blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/public/css/blueprint/screen.css -------------------------------------------------------------------------------- /lib/stickler/server/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/public/css/style.css -------------------------------------------------------------------------------- /lib/stickler/server/public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/stickler/server/public/images/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/stickler/server/public/js/modernizr-1.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/public/js/modernizr-1.5.min.js -------------------------------------------------------------------------------- /lib/stickler/server/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/views/index.erb -------------------------------------------------------------------------------- /lib/stickler/server/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/server/views/layout.erb -------------------------------------------------------------------------------- /lib/stickler/spec_lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/lib/stickler/spec_lite.rb -------------------------------------------------------------------------------- /man/stickler-passenger-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler-passenger-config.1 -------------------------------------------------------------------------------- /man/stickler-passenger-config.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler-passenger-config.1.ronn -------------------------------------------------------------------------------- /man/stickler-server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler-server.1 -------------------------------------------------------------------------------- /man/stickler-server.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler-server.1.ronn -------------------------------------------------------------------------------- /man/stickler.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler.1 -------------------------------------------------------------------------------- /man/stickler.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/man/stickler.1.ronn -------------------------------------------------------------------------------- /stickler.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/stickler.gemspec -------------------------------------------------------------------------------- /tasks/default.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/tasks/default.rake -------------------------------------------------------------------------------- /tasks/man.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/tasks/man.rake -------------------------------------------------------------------------------- /tasks/this.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/tasks/this.rb -------------------------------------------------------------------------------- /test/data/Gemfile.lock.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/Gemfile.lock.example -------------------------------------------------------------------------------- /test/data/gemcutter/gems/foo-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gemcutter/gems/foo-1.0.0.gem -------------------------------------------------------------------------------- /test/data/gems/bar-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gems/bar-1.0.0.gem -------------------------------------------------------------------------------- /test/data/gems/baz-3.1.4-java.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gems/baz-3.1.4-java.gem -------------------------------------------------------------------------------- /test/data/gems/baz-3.1.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gems/baz-3.1.4.gem -------------------------------------------------------------------------------- /test/data/gems/foo-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gems/foo-1.0.0.gem -------------------------------------------------------------------------------- /test/data/gems/foo-2.0.0a.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/gems/foo-2.0.0a.gem -------------------------------------------------------------------------------- /test/data/specifications/bar-1.0.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/specifications/bar-1.0.0.gemspec -------------------------------------------------------------------------------- /test/data/specifications/baz-3.1.4-java.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/specifications/baz-3.1.4-java.gemspec -------------------------------------------------------------------------------- /test/data/specifications/baz-3.1.4.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/specifications/baz-3.1.4.gemspec -------------------------------------------------------------------------------- /test/data/specifications/foo-1.0.0.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/specifications/foo-1.0.0.gemspec -------------------------------------------------------------------------------- /test/data/specifications/foo-2.0.0a.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/data/specifications/foo-2.0.0a.gemspec -------------------------------------------------------------------------------- /test/index_test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/index_test_helpers.rb -------------------------------------------------------------------------------- /test/middleware/test_local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/middleware/test_local.rb -------------------------------------------------------------------------------- /test/middleware/test_not_found.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/middleware/test_not_found.rb -------------------------------------------------------------------------------- /test/repository/test_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_api.rb -------------------------------------------------------------------------------- /test/repository/test_api_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_api_behavior.rb -------------------------------------------------------------------------------- /test/repository/test_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_index.rb -------------------------------------------------------------------------------- /test/repository/test_local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_local.rb -------------------------------------------------------------------------------- /test/repository/test_null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_null.rb -------------------------------------------------------------------------------- /test/repository/test_remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_remote.rb -------------------------------------------------------------------------------- /test/repository/test_remote_authenticated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/repository/test_remote_authenticated.rb -------------------------------------------------------------------------------- /test/stickler_test_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/stickler_test_server.rb -------------------------------------------------------------------------------- /test/test_gemfile_lock_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/test_gemfile_lock_parser.rb -------------------------------------------------------------------------------- /test/test_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/test_paths.rb -------------------------------------------------------------------------------- /test/test_spec_lite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/test_spec_lite.rb -------------------------------------------------------------------------------- /test/test_stickler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copiousfreetime/stickler/HEAD/test/test_stickler.rb --------------------------------------------------------------------------------