An open API service indexing awesome lists of open source software.

https://github.com/mindreframer/elyamay.com


https://github.com/mindreframer/elyamay.com

Last synced: about 10 hours ago
JSON representation

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