├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── pond.rb └── pond │ └── version.rb ├── pond.gemspec ├── spec ├── checkout_spec.rb ├── config_spec.rb ├── spec_helper.rb └── wrapper_spec.rb └── tasks └── stress.rake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/pond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/lib/pond.rb -------------------------------------------------------------------------------- /lib/pond/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Pond 4 | VERSION = '0.5.0' 5 | end 6 | -------------------------------------------------------------------------------- /pond.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/pond.gemspec -------------------------------------------------------------------------------- /spec/checkout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/spec/checkout_spec.rb -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/spec/wrapper_spec.rb -------------------------------------------------------------------------------- /tasks/stress.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanks/pond/HEAD/tasks/stress.rake --------------------------------------------------------------------------------