Sha256: 2514731e822a826b7be315c6a71ae40a149d583661c21e00add91ab5a1eca50e
Contents?: true
Size: 422 Bytes
Versions: 11
Compression:
Stored size: 422 Bytes
Contents
module Stripe class InstallGenerator < ::Rails::Generators::Base source_root ::File.expand_path("../../templates", __FILE__) desc "copy plans.rb" def copy_plans_file copy_file "products.rb", "config/stripe/products.rb" copy_file "plans.rb", "config/stripe/plans.rb" copy_file "prices.rb", "config/stripe/prices.rb" copy_file "coupons.rb", "config/stripe/coupons.rb" end end end
Version data entries
11 entries across 11 versions & 1 rubygems