729 icons, free, webfont, grayscale
200 icons, free
400 icons, $25
This installs a patched ruby 1.9.3-p327 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.
| // helper to create proper asset paths if an asset host is configured | |
| App.assets = { | |
| assets : { | |
| <% AssetsUtil.images.each do |img| %> | |
| "<%= img %>" : "<%= asset_path(img) %>", | |
| <% end %> | |
| }, | |
| namespace Interreg.App.Audit.Application{ | |
| using Domain.Model.Applications; | |
| public class ApplicationAudit:Audit{ | |
| public override void AttachHandlers(){ | |
| On<AttachmentAdded>(e=>e.Source.LogEvent( | |
| "Attachment named '{0}' added".With(e.Attachment.Name))); | |
| On<AttachmentRemoved>(e=>e.Source.LogEvent( | |
| "Attachment named '{0}' removed".With(e.Attachment.Name))); |
| # encoding: UTF-8 | |
| Capistrano::Configuration.instance(:must_exist).load do | |
| namespace :rails do | |
| desc "Open the rails console on one of the remote servers" | |
| task :console, :roles => :app do | |
| hostname = find_servers_for_task(current_task).first | |
| exec "ssh -l #{user} #{hostname} -t 'source ~/.profile && #{current_path}/script/rails c #{rails_env}'" | |
| end | |
| end |