Module: Charyf::Generators::Actions
- Included in:
- Base
- Defined in:
- lib/charyf/utils/generator/actions.rb
Instance Method Summary collapse
-
#add_source(source, options = {}, &block) ⇒ Object
Add the given source to
Gemfile
. -
#after_bundle(&block) ⇒ Object
# Create a new initializer with the provided code (either in a block or a string).
-
#environment(data = nil, options = {}) ⇒ Object
(also: #application)
Adds a line inside the Application class for
config/application.rb
. -
#gem(*args) ⇒ Object
Adds an entry into
Gemfile
for the supplied gem. -
#gem_group(*names, &block) ⇒ Object
Wraps gem entries inside a group.
-
#git(commands = {}) ⇒ Object
Run a command in git.
-
#initialize ⇒ Object
:nodoc:.
Instance Method Details
#add_source(source, options = {}, &block) ⇒ Object
Add the given source to Gemfile
If block is given, gem entries in block are wrapped into the source group.
add_source "http://gems.github.com/"
add_source "http://gems.github.com/" do
gem "rspec"
end
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/charyf/utils/generator/actions.rb', line 82 def add_source(source, = {}, &block) log :source, source in_root do if block append_file "Gemfile", "\nsource #{quote(source)} do", force: true @in_group = true instance_eval(&block) @in_group = false append_file "Gemfile", "\nend\n", force: true else prepend_file "Gemfile", "source #{quote(source)}\n", verbose: false end end end |
#after_bundle(&block) ⇒ Object
# Create a new initializer with the provided code (either in a block or a string). # # initializer(“globals.rb”) do # data = “” # # [‘MY_WORK’, ‘ADMINS’, ‘BEST_COMPANY_EVAR’].each do |const| # data << “#const = :entpn” # end # # data # end # # initializer(“api.rb”, “API_KEY = ‘123456’”) def initializer(filename, data = nil)
log :initializer, filename
data ||= yield if block_given?
create_file("config/initializers/#{filename}", optimize_indentation(data), verbose: false)
end
# Generate something using a generator from Charyf or a plugin. # The second parameter is the argument string that is passed to # the generator or an Array that is joined. # # generate(:authenticated, “user session”) def generate(what, *args)
log :generate, what
argument = args.flat_map(&:to_s).join(" ")
in_root {run_ruby_script("bin/charyf generate #{what} #{argument}", verbose: false)}
end
Registers a callback to be executed after bundle and spring binstubs have run.
after_bundle do
git add: '.'
end
215 216 217 |
# File 'lib/charyf/utils/generator/actions.rb', line 215 def after_bundle(&block) @after_bundle_callbacks << block end |
#environment(data = nil, options = {}) ⇒ Object Also known as: application
Adds a line inside the Application class for config/application.rb
.
If options :env
is specified, the line is appended to the corresponding file in config/environments
.
environment do
"config.action_controller.asset_host = 'cdn.provider.com'"
end
environment(nil, env: "development") do
"config.action_controller.asset_host = 'localhost:3000'"
end
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/charyf/utils/generator/actions.rb', line 110 def environment(data = nil, = {}) sentinel = "class Application < Charyf::Application\n" env_file_sentinel = "Charyf.application.configure do\n" data ||= yield if block_given? in_root do if [:env].nil? inject_into_file "config/application.rb", optimize_indentation(data, 4), after: sentinel, verbose: false else Array([:env]).each do |env| inject_into_file "config/environments/#{env}.rb", optimize_indentation(data, 2), after: env_file_sentinel, verbose: false end end end end |
#gem(*args) ⇒ Object
Adds an entry into Gemfile
for the supplied gem.
gem "rspec", group: :test
gem "technoweenie-restful-authentication", lib: "restful-authentication", source: "http://gems.github.com/"
gem "charyf", "1.0", git: "https://github.com/Charyf/charyf-core"
gem "RedCloth", ">= 4.1.0", "< 4.2.0"
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/charyf/utils/generator/actions.rb', line 19 def gem(*args) = args.last.is_a?(Hash) ? args.pop : {} name, *versions = args # Set the message to be shown in logs. Uses the git repo if one is given, # otherwise use name (version). parts, = [quote(name)], name.dup if versions = versions.any? ? versions : .delete(:version) _versions = Array(versions) _versions.each do |version| parts << quote(version) end << " (#{_versions.join(", ")})" end = [:git] if [:git] log :gemfile, comment = .delete(:comment) .each do |option, value| parts << "#{option}: #{quote(value)}" end in_root do str = "gem #{parts.join(", ")}" str = " " + str if @in_group str = "\n" + str str = "\n#{' ' if @in_group}# #{comment}" + str if comment append_file "Gemfile", str, verbose: false end end |
#gem_group(*names, &block) ⇒ Object
Wraps gem entries inside a group.
gem_group :development, :test do
gem "rspec"
end
58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/charyf/utils/generator/actions.rb', line 58 def gem_group(*names, &block) name = names.map(&:inspect).join(", ") log :gemfile, "group #{name}" in_root do append_file "Gemfile", "\ngroup #{name} do", force: true @in_group = true instance_eval(&block) @in_group = false append_file "Gemfile", "\nend\n", force: true end end |
#git(commands = {}) ⇒ Object
Run a command in git.
git :init
git add: "this.file that.rb"
git add: "onefile.rb", rm: "badfile.cxx"
133 134 135 136 137 138 139 140 141 |
# File 'lib/charyf/utils/generator/actions.rb', line 133 def git(commands = {}) if commands.is_a?(Symbol) run "git #{commands}" else commands.each do |cmd, | run "git #{cmd} #{}" end end end |
#initialize ⇒ Object
:nodoc:
7 8 9 10 11 |
# File 'lib/charyf/utils/generator/actions.rb', line 7 def initialize(*) # :nodoc: super @in_group = nil @after_bundle_callbacks = [] end |