lacolonia/binda-shopify

View on GitHub
lib/binda/shopify/engine.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Binda
  module Shopify
    class Engine < ::Rails::Engine
      isolate_namespace Binda::Shopify
      config.autoload_paths += %W(#{config.root}/lib)

      config.generators do |g|
        g.test_framework :rspec
      end
    end
  end
end