mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-01 10:15:03 -05:00
Merge pull request #5239 from ashmaroli/colorize-embed
Merge pull request 5239
This commit is contained in:
@@ -34,7 +34,7 @@ module Jekyll
|
||||
create_site new_blog_path
|
||||
end
|
||||
|
||||
Jekyll.logger.info "New jekyll site installed in #{new_blog_path}."
|
||||
Jekyll.logger.info "New jekyll site installed in #{new_blog_path.cyan}."
|
||||
end
|
||||
|
||||
def create_blank_site(path)
|
||||
|
||||
@@ -16,6 +16,7 @@ class Jekyll::Commands::NewTheme < Jekyll::Command
|
||||
end
|
||||
end
|
||||
|
||||
# rubocop:disable Metrics/AbcSize
|
||||
def process(args, opts)
|
||||
if !args || args.empty?
|
||||
raise Jekyll::Errors::InvalidThemeName, "You must specify a theme name."
|
||||
@@ -28,9 +29,10 @@ class Jekyll::Commands::NewTheme < Jekyll::Command
|
||||
end
|
||||
|
||||
theme.create!
|
||||
Jekyll.logger.info "Your new Jekyll theme, #{theme.name}," \
|
||||
" is ready for you in #{theme.path}!"
|
||||
Jekyll.logger.info "Your new Jekyll theme, #{theme.name.cyan}," \
|
||||
" is ready for you in #{theme.path.to_s.cyan}!"
|
||||
Jekyll.logger.info "For help getting started, read #{theme.path}/README.md."
|
||||
end
|
||||
# rubocop:enable Metrics/AbcSize
|
||||
end
|
||||
end
|
||||
|
||||
@@ -41,7 +41,7 @@ class TestNewCommand < JekyllUnitTest
|
||||
should "display a success message" do
|
||||
Jekyll::Commands::New.process(@args)
|
||||
output = Jekyll.logger.messages.last
|
||||
success_message = "New jekyll site installed in #{@full_path}."
|
||||
success_message = "New jekyll site installed in #{@full_path.cyan}."
|
||||
assert_includes output, success_message
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user