├── .gitignore ├── .rspec ├── .rubocop.yml ├── .simplecov ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── benchmark.rb ├── bin ├── console └── setup ├── foo.txt ├── lib ├── makery.rb └── makery │ ├── builder.rb │ ├── factory.rb │ └── version.rb ├── makery.gemspec └── spec ├── makery_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/benchmark.rb -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/bin/setup -------------------------------------------------------------------------------- /foo.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /lib/makery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/lib/makery.rb -------------------------------------------------------------------------------- /lib/makery/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/lib/makery/builder.rb -------------------------------------------------------------------------------- /lib/makery/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/lib/makery/factory.rb -------------------------------------------------------------------------------- /lib/makery/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Makery 4 | VERSION = "0.1.0" 5 | end 6 | -------------------------------------------------------------------------------- /makery.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/makery.gemspec -------------------------------------------------------------------------------- /spec/makery_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/spec/makery_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwstannard/makery/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------