Displaying 4 results from an estimated 4 matches for "source_root".
2010 Jan 29
1
Rails 3 App generator - could not find source path
Could not find "README" in source paths.
module Nifty
module Generators
class AppGenerator < Base
def self.source_root
@source_root ||= File.expand_path(File.join(File.dirname
(__FILE__), ''templates''))
end
def initialize(*args)
super
end
def create_root_files
# puts "Source path: #{self.source_root}"
copy_file "README"...
2023 Jun 05
0
[ANNOUNCE] xorgproto 2023.1
...arious fixes, clarifications and keysym
definitions updates:
Alan Coopersmith (8):
presentproto: Minor typo fixes
Remove _X_NONNULL macro
gitlab CI: run meson instead of ninja for test & install steps
meson: replace join_paths with /
meson: replace deprecated source_root with new project_source_root
Remove "All rights reserved" from Oracle copyright notices
Only install PM_spec when legacy protocol support is enabled
XvMCproto.h: remove ; from the end of sz_* definitions
Benno Schulenberg (6):
keysymdef.h: add correctly spelle...
2010 Aug 30
0
rails new --builder
When invoking rails new with the --builder option, I see that you have
to call the class ::AppBuilder. How can you
change the source_root for just a few of the methods?
I want to generate the gemfile from my own template
AppBuilder < Rails::AppBuilder
def gemfile
template ''Gemfile''
end
end
How can I change the Gemfile template from the AppBuilder and if I
can''t what is the use of the --builder op...
2011 Mar 22
25
RFC: Splitting up the file{} type functionality.
The file{} type can do all of the following:
* manage single files
* manage directories
* manage symlinks
* manage recursive file copies
The intersection of all these bits of functionality makes it difficult
to understand exactly what is going on when you''re new to Puppet, and
even experienced users often don''t know how combining symlinks/content
management is going to work.