├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.devtools ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── charlatan.gemspec ├── config ├── devtools.yml ├── flay.yml ├── flog.yml ├── mutant.yml ├── reek.yml ├── rubocop.yml └── yardstick.yml ├── lib ├── charlatan.rb └── charlatan │ └── version.rb └── spec ├── spec_helper.rb └── unit └── charlatan_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.devtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/Gemfile.devtools -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/Rakefile -------------------------------------------------------------------------------- /charlatan.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/charlatan.gemspec -------------------------------------------------------------------------------- /config/devtools.yml: -------------------------------------------------------------------------------- 1 | --- 2 | unit_test_timeout: 0.1 3 | -------------------------------------------------------------------------------- /config/flay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/config/flay.yml -------------------------------------------------------------------------------- /config/flog.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 0 3 | -------------------------------------------------------------------------------- /config/mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/config/mutant.yml -------------------------------------------------------------------------------- /config/reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/config/reek.yml -------------------------------------------------------------------------------- /config/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/config/rubocop.yml -------------------------------------------------------------------------------- /config/yardstick.yml: -------------------------------------------------------------------------------- 1 | --- 2 | threshold: 100 3 | -------------------------------------------------------------------------------- /lib/charlatan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/lib/charlatan.rb -------------------------------------------------------------------------------- /lib/charlatan/version.rb: -------------------------------------------------------------------------------- 1 | class Charlatan < Module 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/charlatan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solnic/charlatan/HEAD/spec/unit/charlatan_spec.rb --------------------------------------------------------------------------------