aboutsummaryrefslogtreecommitdiff
path: root/Rakefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed offending paren in RakefileBrandon Mathis2011-12-101-1/+1
|
* Rsync --delete option can be turned off in Rakefile configuration and users ↵Brandon Mathis2011-12-101-2/+7
| | | | can exclude directories from sync by adding an rsync-exclude file to their root directory. fixes #247
* Merge branch 'master' of github.com:imathis/octopressFrederic Hemberger2011-12-101-8/+15
|\
| * Merge pull request #225 from imathis/post_namesFrederic Hemberger2011-12-101-8/+15
| |\ | | | | | | Add more flexibility to :new_page task
| | * Adds more flexibility to :new_page taskFrederic Hemberger2011-10-161-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Page filenames/directories are lowercased and sanitized by default to allow a greater flexibility: - new_page["/path/to/file"] # => source/path/to/file/index.markdown - new_page["path/to/file"] # => source/path/to/file/index.markdown - new_page["my path/my file"] # => source/my-path/my-file/index.markdown - new_page["lorem.ipsum.dolor"] # => source/lorem-dot-ipsum.dolor - new_page["Questions & Answers"] # => source/questions-and-answers/index.markdown
* | | :copydot ignores thumbnail files starting with '._'Frederic Hemberger2011-12-101-5/+2
|/ /
* | Set flag in preview mode and re-generate files before deployment if necessaryFrederic Hemberger2011-11-291-0/+7
| |
* | Introduce distinction between preview/productive site generationFrederic Hemberger2011-11-231-2/+2
| | | | | | | | | | | | | | | | | | | | Posts which contain the YAML attribute `published: false` are usually not generated by Jekyll. With this patch they can be previewed just like published posts on localhost using `rake watch`or `rake preview`. NOTICE: Before pushing to the productive environment, use `rake generate` to update the public directory and remove posts which are flagged not to be published.
* | Fixes typo in :push taskFrederic Hemberger2011-10-171-1/+1
|/
* Replaces system call with cross-platform cp_r, fixes #200Frederic Hemberger2011-10-161-1/+1
|
* Removes 'titlecase' from page name, fixes #202Frederic Hemberger2011-10-161-4/+2
|
* Removes duplicate mkdir_pFrederic Hemberger2011-10-161-1/+0
|
* ensures compiled /source/stylesheets/screen.css exists before running watch ↵Brandon Mathis2011-10-111-0/+2
| | | | and preview tasks, fixes #214
* Allows '-' in deployment branch names, fixes #213Frederic Hemberger2011-10-111-1/+1
|
* fixed issue where update_source failed if source/index was any extension ↵Brandon Mathis2011-10-011-1/+2
| | | | other than .html
* wildcards broke rake update_source. fixes thatBrandon Mathis2011-10-011-1/+1
|
* Retains customized favicon on update_source fixes #189, Copies index.* from ↵Brandon Mathis2011-09-301-1/+2
| | | | source.old fixes #188
* Merge branch 'master' of github.com:imathis/octopress into compassBrandon Mathis2011-09-281-11/+42
|\
| * Typo.Manu2011-09-261-1/+1
| |
| * Changed it so the ssh port is configurable as well. (As I ran into the same ↵Manu2011-09-261-1/+2
| | | | | | | | issue already described at https://github.com/imathis/octopress/issues/30 )
| * now Github pages :push task forcesBrandon Mathis2011-09-221-1/+1
| |
| * renamed github pages configuration taskBrandon Mathis2011-09-221-1/+1
| |
| * Restored copying public into _deploy. fixes #169Brandon Mathis2011-09-221-0/+1
| |
| * improved github configuration raketaskBrandon Mathis2011-09-221-9/+38
| |
* | Fix generation of stylesheetsFrederic Hemberger2011-09-241-1/+1
| |
* | Removes compass_compiler.rbFrederic Hemberger2011-09-221-0/+1
|/
* copydot task can be called with parameters, no need for separate copydot_deployFrederic Hemberger2011-09-221-19/+8
|
* Fixed issue where dotfiles were not being copied to _deploy for github pages ↵Brandon Mathis2011-09-211-2/+13
| | | | deployments
* fixed issue where public was being copied into _deployBrandon Mathis2011-09-211-1/+1
|
* Removing glob because globbing does not pick up dotfiles.Tom Miller2011-09-191-1/+1
|
* Wraps git commit message in double quotes, fixes #139Frederic Hemberger2011-09-181-2/+2
|
* Aligns naming of .pygments-cache, .gist-cache and .sass-cacheFrederic Hemberger2011-09-181-2/+2
|
* Fixes #150. Strip leading path before checking for excluded file.Chris Sims2011-09-171-1/+1
|
* added itegration to gen_deployBrandon Mathis2011-09-121-1/+1
|
* Fix an issue in 'watch' and 'preview' where main process is terminated with ↵fhemberger2011-09-121-9/+6
| | | | child processes still running
* Move generate + deploy to separate taskfhemberger2011-09-121-1/+6
|
* Generate site before deploying, execute tasks in sequencefhemberger2011-09-121-1/+2
|
* Copy dotfiles also for subdirectoriesfhemberger2011-09-121-4/+4
|
* moved from Posix::Span to Process.span, fixing #46Brandon Mathis2011-09-081-5/+5
|
* Updated new_post and new_page taks to use new ask method for dialogsBrandon Mathis2011-09-041-6/+2
|
* Merge branch 'master' of https://github.com/fhemberger/octopress into ↵Brandon Mathis2011-09-041-0/+17
|\ | | | | | | | | | | | | fhemberger-master Conflicts: plugins/category_generator.rb
| * install: Adds confirmation before overwriting existing source_dirfhemberger2011-09-041-0/+17
| |
* | Added prompt for overwriting posts and pages when a new_post and new_page ↵Brandon Mathis2011-09-031-0/+10
| | | | | | | | tasks are run and the file already exists. Fixes #130
* | fixed bug where update_source Rake task was not copying over changes from ↵Brandon Mathis2011-09-021-7/+5
|/ | | | .themes
* not using cd in copydot, breaks chained task when further cd's are calledRyan Gibbons2011-08-281-6/+4
|
* removed octopress.org rsync deploy config from Rakefile. OopsBrandon Mathis2011-08-251-2/+2
|
* Somehow I replaced Rakefile with oder version, oopsBrandon Mathis2011-08-251-18/+54
|
* Added warning if users try to add posts, pages, or generate their siteBrandon Mathis2011-08-251-52/+21
| | | | before installing an Octopress theme, fixes #116
* removed unnecessary mkdir_p in update_style, fixed #67Brandon Mathis2011-08-251-1/+0
|
* sleeps wait, cleaned up rake preview and rake watch a bitBrandon Mathis2011-08-251-16/+9
|