Skip to content

gitter-badger/microrb.com

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

microrb.com

micro.rb website

Project Submission Policy

  • We don't accept ActiveSupport as a dependency because:
    • monkey-patching is bad m'kay
    • implicit dependencies inside activesupport via requires is also bad
    • it's a huge dependency that is often used without any good reasons (ie "oh I need Hash#symbolize_keys!")
  • A project must be focused on solving just one problem
  • At the same time a project must not be anemic
  • A project must follow semantic versioning

How to submit your project

Submit an issue with:

  • URL to your project
  • Description of what it does if you didn't do it already in the project's README
  • Indicate if it's beeing already used in production environments (even if it's below 1.0)

How to preview your project locally

You will need a Github API access token first, register an application, then do a

curl -u"username" -d '{"scopes":["public_repo"],"client_id":"...","client_secret":"...","note":"update microrb"}' https://api.github.com/authorizations

filling in your username, client_id and client_secret. Note down the token in the response.

  1. Clone this repository
  2. Run bundle to install the dependencies
  3. Add your project's Github path and tags to data/projects.json
  4. Update project data with OAUTH_TOKEN=... ruby bin/update.rb using the token acquired above
  5. Generate the site with make
  6. Open public/index.html

Generate HTML

Make sure you have mote and virtus installed, then:

$ make

It will create public/index.html.

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 55.7%
  • JavaScript 38.1%
  • Makefile 3.8%
  • Shell 2.4%