Sha256: 8b48c9b88018d002b73d87aedba01e6715c3d1ba54103b1614a7027c0f567775
Contents?: true
Size: 772 Bytes
Versions: 21
Compression:
Stored size: 772 Bytes
Contents
require "rails/generators" require_relative "generator_helper" module ReactOnRails module Generators class ReactNoReduxGenerator < Rails::Generators::Base include GeneratorHelper Rails::Generators.hide_namespace(namespace) source_root(File.expand_path("../templates", __FILE__)) def copy_base_files base_path = "no_redux/base/" file = "client/app/bundles/HelloWorld/containers/HelloWorld.jsx" copy_file(base_path + file, file) end def template_appropriate_version_of_hello_world_app filename = "HelloWorldApp.jsx" location = "client/app/bundles/HelloWorld/startup" template("no_redux/base/#{location}/HelloWorldApp.jsx.tt", "#{location}/#{filename}") end end end end
Version data entries
21 entries across 21 versions & 1 rubygems