aboutsummaryrefslogtreecommitdiff
path: root/Rakefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reversed update_style copy direction to correctly restore the ↵Patrick Aikens2014-02-011-2/+2
| | | | sass.old/custom files to the new sass/custom folder
* Merge pull request #1431 from Haacked/windows-code-page-fixBrandon Mathis2014-01-301-0/+4
|\ | | | | Set the codepage to 65001 before generating
| * chcp only needs to run oncePhil Haack2013-11-291-4/+4
| |
| * Add check for running on WindowsHaacked2013-11-281-2/+4
| |
| * Set the codepage to 65001 before generatingHaacked2013-11-281-0/+2
| |
* | Fix spelling errorMatt Enright2013-12-191-1/+1
|/
* Move '/.' back to first arg in :update_styleParker Moore2013-11-171-1/+1
| | | | Rel #1299
* Merge pull request #1299 from blake41/masterParker Moore2013-11-171-1/+1
|\ | | | | Fix update styles rake task
| * update style rake task to copy from new sass to old sass folder. it seems ↵Blake Johnson2013-07-151-1/+1
| | | | | | | | like it was backwards before which makes no sense
* | Include timezone offset in new post template for YAML Front-MatterJ. B. Rainsberger2013-11-171-1/+1
| | | | | | | | Closes #1419.
* | ".git" added to sample string with SSH repository URLnagimov2013-09-201-1/+1
| | | | | | | | Octopress does not work with a repo URL like a "git@github.com:your_username/your_username.github.io" ("ERROR: repository not found" error appears). It is necessary to add ".git" to the end of this line.
* | Fixed blog_url for personal github pages projects. #1328Brandon Mathis2013-08-231-0/+1
| |
* | Fixed setup_github_pages success message. #1328Brandon Mathis2013-08-231-1/+1
| |
* | Improved readabilityRob Slifka2013-08-221-1/+1
| |
* | Extract methodRob Slifka2013-08-211-7/+10
| |
* | Use source/CNAME (if it exists) to set _config.yml url propertyRob Slifka2013-08-211-1/+5
|/
* Github Pages deployment is now using `git add -A` for compatability with Git ↵Brandon Mathis2013-06-231-4/+7
| | | | 1.8.2+
* add https protocol supporting during rake setup_github_pageserizhang2013-05-311-1/+7
|
* Added support for deploying to github.ioBrandon Mathis2013-04-091-3/+3
|
* improved regexes for setup_github_pages taskBrandon Mathis2013-01-131-2/+2
|
* Removed unnecessary passive group from octopress origin regexBrandon Mathis2013-01-121-1/+1
|
* setup_github_pages: allow for clones missing .git extensionVaz Allen2013-01-121-1/+1
|
* Whitespacericho2013-01-111-1/+1
|
* Rake task new_post now accepts titles through stdinBrandon Mathis2013-01-011-2/+5
| | | | This should help resolve issues for zsh users and make it easier to enter titles which freak out Rake's argument processing
* Merge pull request #844 from jsvensson/rsyncargsBrandon Mathis2012-12-191-1/+2
|\ | | | | Rakefile option for any additional rsync arguments
| * Rakefile option for any additional rsync argumentsJohan Svensson2012-12-091-1/+2
| | | | | | | | Added variable `rsync_args`
* | Fixing English error pet-peeve.Parker Moore2012-11-301-1/+1
|/
* Disabled Rsync delete by default. Closes #787Brandon Mathis2012-10-131-1/+1
|
* Example repo URL - see Github issue 516Nathan Long2012-07-121-1/+3
|
* now Github repo url can be specified inline setup_github_pages commandBrandon Mathis2011-12-181-2/+6
|
* 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 )