#Open Source Needs Design
- Show of hands
- Designers
- Developers
- Core contributors to an open source project?
- Any projects have designers?
| ### Keybase proof | |
| I hereby claim: | |
| * I am garthdb on github. | |
| * I am garthdb (https://keybase.io/garthdb) on keybase. | |
| * I have a public key whose fingerprint is F268 F8AD 4EB3 6667 7A5E 6A77 E5B8 7DFF F559 AFA6 | |
| To claim this, I am signing this object: |
| permalink: /:categories/:title/ | |
| highlighter: pygments | |
| url: http://designopen.org | |
| name: Open Source Design | |
| excerpt_separator: <!--more--> | |
| markdown: kramdown | |
| exclude: [vendor] | |
| sass: | |
| sass_dir: _sass | |
| style: compressed |
| @import "normalize"; | |
| @import "fonts"; | |
| @import "mixins"; | |
| @import "base"; | |
| @import "type"; | |
| @import "article"; | |
| @import "header"; | |
| @import "footer"; | |
| @import "video"; |
| <head> | |
| <style type="text/css"> | |
| {% capture include_to_scssify %} | |
| {% include style.scss %} | |
| {% endcapture %} | |
| {{ include_to_scssify | scssify }} | |
| </style> | |
| </head> |
| --- | |
| layout: compress | |
| --- |
| language: ruby | |
| rvm: | |
| - 2.1 | |
| script: bundle exec rake test | |
| env: | |
| global: | |
| - NOKOGIRI_USE_SYSTEM_LIBRARIES=true |
| require 'html/proofer' | |
| # rake test | |
| desc "build and test website" | |
| task :test do | |
| sh "bundle exec jekyll build" | |
| HTML::Proofer.new("./_site", {:href_ignore=> ['http://localhost:4000'], :verbose => true}).run | |
| end |
| source 'https://rubygems.org' | |
| gem 'github-pages' | |
| # Test the build | |
| group :test do | |
| gem 'rake' | |
| gem 'html-proofer' | |
| end |