diff options
-rw-r--r-- | .themes/classic/plugins/blockquote.rb (renamed from .themes/classic/_plugins/blockquote.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/category_generator.rb (renamed from .themes/classic/_plugins/category_generator.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/compass_compiler.rb (renamed from .themes/classic/_plugins/compass_compiler.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/custom_filters.rb (renamed from .themes/classic/_plugins/custom_filters.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/gist_tag.rb (renamed from .themes/classic/_plugins/gist_tag.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/haml.rb (renamed from .themes/classic/_plugins/haml.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/include_code.rb (renamed from .themes/classic/_plugins/include_code.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/include_file.rb (renamed from .themes/classic/_plugins/include_file.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/pullquote.rb (renamed from .themes/classic/_plugins/pullquote.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/pygments_cache_patch.rb (renamed from .themes/classic/_plugins/pygments_cache_patch.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/sitemap_generator.rb (renamed from .themes/classic/_plugins/sitemap_generator.rb) | 0 | ||||
-rw-r--r-- | .themes/classic/plugins/titlecase.rb (renamed from .themes/classic/_plugins/titlecase.rb) | 0 | ||||
-rw-r--r-- | Rakefile | 5 |
13 files changed, 3 insertions, 2 deletions
diff --git a/.themes/classic/_plugins/blockquote.rb b/.themes/classic/plugins/blockquote.rb index 2f0712bd..2f0712bd 100644 --- a/.themes/classic/_plugins/blockquote.rb +++ b/.themes/classic/plugins/blockquote.rb diff --git a/.themes/classic/_plugins/category_generator.rb b/.themes/classic/plugins/category_generator.rb index c5dbbcd4..c5dbbcd4 100644 --- a/.themes/classic/_plugins/category_generator.rb +++ b/.themes/classic/plugins/category_generator.rb diff --git a/.themes/classic/_plugins/compass_compiler.rb b/.themes/classic/plugins/compass_compiler.rb index dcec746a..dcec746a 100644 --- a/.themes/classic/_plugins/compass_compiler.rb +++ b/.themes/classic/plugins/compass_compiler.rb diff --git a/.themes/classic/_plugins/custom_filters.rb b/.themes/classic/plugins/custom_filters.rb index f0db30ee..f0db30ee 100644 --- a/.themes/classic/_plugins/custom_filters.rb +++ b/.themes/classic/plugins/custom_filters.rb diff --git a/.themes/classic/_plugins/gist_tag.rb b/.themes/classic/plugins/gist_tag.rb index 0a8797f8..0a8797f8 100644 --- a/.themes/classic/_plugins/gist_tag.rb +++ b/.themes/classic/plugins/gist_tag.rb diff --git a/.themes/classic/_plugins/haml.rb b/.themes/classic/plugins/haml.rb index 7e548dec..7e548dec 100644 --- a/.themes/classic/_plugins/haml.rb +++ b/.themes/classic/plugins/haml.rb diff --git a/.themes/classic/_plugins/include_code.rb b/.themes/classic/plugins/include_code.rb index fa5c76ff..fa5c76ff 100644 --- a/.themes/classic/_plugins/include_code.rb +++ b/.themes/classic/plugins/include_code.rb diff --git a/.themes/classic/_plugins/include_file.rb b/.themes/classic/plugins/include_file.rb index 3862228b..3862228b 100644 --- a/.themes/classic/_plugins/include_file.rb +++ b/.themes/classic/plugins/include_file.rb diff --git a/.themes/classic/_plugins/pullquote.rb b/.themes/classic/plugins/pullquote.rb index 2b8544ab..2b8544ab 100644 --- a/.themes/classic/_plugins/pullquote.rb +++ b/.themes/classic/plugins/pullquote.rb diff --git a/.themes/classic/_plugins/pygments_cache_patch.rb b/.themes/classic/plugins/pygments_cache_patch.rb index 09c09840..09c09840 100644 --- a/.themes/classic/_plugins/pygments_cache_patch.rb +++ b/.themes/classic/plugins/pygments_cache_patch.rb diff --git a/.themes/classic/_plugins/sitemap_generator.rb b/.themes/classic/plugins/sitemap_generator.rb index 8b6cf78c..8b6cf78c 100644 --- a/.themes/classic/_plugins/sitemap_generator.rb +++ b/.themes/classic/plugins/sitemap_generator.rb diff --git a/.themes/classic/_plugins/titlecase.rb b/.themes/classic/plugins/titlecase.rb index 103bf702..103bf702 100644 --- a/.themes/classic/_plugins/titlecase.rb +++ b/.themes/classic/plugins/titlecase.rb @@ -25,10 +25,10 @@ desc "Initial setup for Octopress: copies the default theme into the path of Jek task :install, :theme do |t, args| # copy theme into working Jekyll directories theme = args.theme || 'classic' - puts "## Copying "+theme+" theme into ./#{source_dir} ./sass and ./_plugins " + puts "## Copying "+theme+" theme into ./#{source_dir} ./sass and ./plugins " system "mkdir -p #{source_dir}; cp -R #{themes_dir}/"+theme+"/source/ #{source_dir}/" system "mkdir -p sass; cp -R #{themes_dir}/"+theme+"/sass/ sass/" - system "mkdir -p _plugins; cp -R #{themes_dir}/"+theme+"/_plugins/ _plugins/" + system "mkdir -p plugins; cp -R #{themes_dir}/"+theme+"/plugins/ plugins/" system "mkdir -p #{source_dir}/#{posts_dir}"; end @@ -138,6 +138,7 @@ task :config_deploy, :branch do |t, args| f.write rakefile end end + puts "## Deployment configured. Now you can deploy to the #{args.branch} branch with `rake deploy` ##" end def ok_failed(condition) |