https://github.com/mindreframer/elyamay.com
https://github.com/mindreframer/elyamay.com
Last synced: about 10 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/mindreframer/elyamay.com
- Owner: mindreframer
- Created: 2014-01-17T16:29:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-15T20:11:12.000Z (about 12 years ago)
- Last Synced: 2025-05-17T05:38:46.195Z (about 1 year ago)
- Language: Ruby
- Size: 39.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## To start:
> bundle install
> middleman server (to develop the site on localhost:4567)
> middleman build (to genereate the site into build-folder)
> rake publish
fixes for middleman > 3.2.1
in lib/middleman-core/cli/build.rb (BuildAction.execute!)
@app.sitemap.resources.select do |resource|
# only full css-files and not the partials
resource.ext == ".css" && File.basename(resource.path)[0] != '_'
end.each do |resource|
@rack.get(URI.escape(resource.destination_path))
end