aboutsummaryrefslogtreecommitdiff
path: root/Rakefile (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-09-04Updated new_post and new_page taks to use new ask method for dialogsBrandon Mathis1-6/+2
2011-09-04install: Adds confirmation before overwriting existing source_dirfhemberger1-0/+17
2011-09-03Added prompt for overwriting posts and pages when a new_post and new_page ↵Brandon Mathis1-0/+10
tasks are run and the file already exists. Fixes #130
2011-09-02fixed bug where update_source Rake task was not copying over changes from ↵Brandon Mathis1-7/+5
.themes
2011-08-28not using cd in copydot, breaks chained task when further cd's are calledRyan Gibbons1-6/+4
2011-08-25removed octopress.org rsync deploy config from Rakefile. OopsBrandon Mathis1-2/+2
2011-08-25Somehow I replaced Rakefile with oder version, oopsBrandon Mathis1-18/+54
2011-08-25Added warning if users try to add posts, pages, or generate their siteBrandon Mathis1-52/+21
before installing an Octopress theme, fixes #116
2011-08-25removed unnecessary mkdir_p in update_style, fixed #67Brandon Mathis1-1/+0
2011-08-25sleeps wait, cleaned up rake preview and rake watch a bitBrandon Mathis1-16/+9
2011-08-23Do not rely on system specifc syntax for preview or watch.Benjamin R Doerr1-2/+32
2011-08-22Removes system specific File IO from Rakefile, rather we make use of FileUtils.Benjamin R Doerr1-13/+13
2011-08-23Makes update_source and update_style much more windows friendly.Ben Doerr1-2/+4
2011-08-21added support for deploying "dot" files (eg. .htaccess), fixes #104Brandon Mathis1-2/+14
2011-08-20added stringex gem for permalink url generationPavel Pravosud1-1/+2
2011-08-16added blog_index_dir configuration and improved update_sourceBrandon Mathis1-16/+14
2011-08-11now using rack instead of Jekyll's webrick server, fixes #90Brandon Mathis1-1/+2
2011-08-11fix rake-listmarutanm1-1/+1
2011-08-10added support for preserving customized source/index.html during template ↵Brandon Mathis1-0/+5
updates. Moved the blog index code to a partial in source/_includes/blog_index.html
2011-07-31udpated rake udpate_source task to preserve custom includes instaed of ↵Brandon Mathis1-2/+1
preserving navigation and footer
2011-07-28Rake task update_source now preserves footer as well as navigationBrandon Mathis1-0/+1
2011-07-27fixed update styleBrandon Mathis1-1/+1
2011-07-28Fixed rake update_source and rake update_styleLuke Armstrong1-0/+8
2011-07-27Fixed [cp: cannot stat `.themes/classic/source/*.': No such file or directory]Luke Armstrong1-1/+1
2011-07-27improved new_post title substitutions, fixed directories in rake update tasksBrandon Mathis1-3/+3
2011-07-26Changed description of new_page rake task, to what it doesMike Ballou1-1/+1
2011-07-26updated push rake task to copy contents of public directory into _deployBrandon Mathis1-1/+1
2011-07-22updated rakefile and config to support url mapping in previous commitBrandon Mathis1-3/+5
2011-07-19added source_update and sass_update rake tasks, for easily updating a blog ↵Brandon Mathis1-0/+21
to the latest theme
2011-07-19fixed regular expression for new_page rake taskBrandon Mathis1-1/+1
2011-07-19new_page rake task now creates pages as page_name/index.[default_format] if ↵Brandon Mathis1-4/+4
no file extension is passed. By default this creates nicer urls
2011-07-19In new_post and new_page rake tasks: adding quotes around title attribute ↵Brandon Mathis1-2/+2
for better compatibility with yaml
2011-07-19Changed rake task 'post' to 'new_post' and updated the yaml front matter. ↵Brandon Mathis1-13/+47
Added 'new_page' rake task for easily adding new pages with a default yaml block
2011-07-19Moved plugins to root directory. I'm ditching the idea of shipping plugins ↵Brandon Mathis1-5/+3
with themes until it's more obviously necessary. This way it's easier to merge and update plugins.
2011-07-161. Added rake task for simple configuration of subdirectory deployment.Brandon Mathis1-1/+34
2. Updated READEME documentation regarding deploying to subdirectories. 3. Fixed related mistake in pagination and header links
2011-07-16Updated path to plugins.Kent Fenwick1-1/+1
2011-07-11Updated install rake task (now properly copies directory contents) Thanks ↵Brandon Mathis1-4/+8
@pw for the pull request fixes #32
2011-07-11Changed _plugins folder to plugins and updated rake tasks accordinglyBrandon Mathis1-2/+3
2011-06-29Moved themes to .themes to get it out of the way. Updated Rakefile to ↵Brandon Mathis1-11/+24
support .themes dir and remove duplication. Improved deploy task. Renamed init_deploy to cofig_deploy and rewrote it to update configurations in the Rakefile for easier deploy use
2011-06-27Improved the post and init_deploy rake tasksBrandon Mathis1-8/+6
2011-06-27fixed a bug in init_deploy taskBrandon Mathis1-1/+2
2011-06-271. Added Category supportBrandon Mathis1-0/+1
2. Designed blog archives pages 3. Restructured Sass 4. Added Categories to rake post metadata 5. Some general style improvements
2011-06-221. Improved Deployment and setup tasks in RakefileBrandon Mathis1-25/+27
2. Improved README setup instructions
2011-06-221. Reordered configs in Rakefile based on importance.Brandon Mathis1-4/+7
2. Refactored stylesheets to simplify dreictory trees.
2011-06-21improved rake tasks for deployment, updated .gitignoreBrandon Mathis1-40/+31
2011-06-171. Replaced Rdiscount in favor of Kramdown (better html5 support) for ↵Brandon Mathis1-5/+10
markdown processing. 2. Added updated instructions to the README 3. Removed unused media css directories 4. Improved use of color variables for page theming. 5. Improved Typography and blog styling. 6. Added support for simple pre and code styles 7. Misc styling and markup improvements.
2011-06-111. Moved _plugins into themes/classic/_pluginsBrandon Mathis1-3/+7
I think it's probably better to ship plugins with themes to make it easier to update them. 2. Improved 'install' rake task and made nicer output
2011-06-111. Reduced dependencies and updated the gemfileBrandon Mathis1-54/+42
2. Added whole vendor directory to .gitignore for `bundle package` users 3. Removed guard tasks and replaced serve tasks in Rakefile. 3. Reorganized rake tasks and cleaned up the Rakefile.
2011-06-08Improved theme install processBrandon Mathis1-11/+0
added missing assets
2011-06-07Another massive commit:Brandon Mathis1-37/+36
1. Major improvements to the responsive styling. 2. Toggleable sidebar 3. Upgraded to modernizr 2.0 which includes Respond.js 4. IE7-9 testing and fixes 5. New theming system which should make forkers happy 6. New rake task for installing Octopress themes 7. Magic