├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.textile ├── Rakefile ├── artifice.gemspec ├── lib └── artifice.rb └── spec └── artifice_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | *.gem -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/README.textile -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/Rakefile -------------------------------------------------------------------------------- /artifice.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/artifice.gemspec -------------------------------------------------------------------------------- /lib/artifice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/lib/artifice.rb -------------------------------------------------------------------------------- /spec/artifice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycats/artifice/HEAD/spec/artifice_spec.rb --------------------------------------------------------------------------------