├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── assets └── logo.png ├── lib ├── sane_patch.rb └── sane_patch │ └── version.rb ├── sane_patch.gemspec └── spec ├── sane_patch_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/assets/logo.png -------------------------------------------------------------------------------- /lib/sane_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/lib/sane_patch.rb -------------------------------------------------------------------------------- /lib/sane_patch/version.rb: -------------------------------------------------------------------------------- 1 | module SanePatch 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /sane_patch.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/sane_patch.gemspec -------------------------------------------------------------------------------- /spec/sane_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/spec/sane_patch_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jcambass/sane_patch/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------