UPDATE a fork of this gist has been used as a starting point for a community-maintained "awesome" list: machine-learning-with-ruby Please look here for the most up-to-date info!
- liblinear-ruby: Ruby interface to LIBLINEAR using SWIG
| # Typically in Rails to use VCR we setup the RSpec config like so: | |
| RSpec.configure do |config| | |
| config.extend VCR::RSpec::Macros #deprecated | |
| end | |
| # This gives us access to the use_vcr_cassette method: | |
| describe Reviewed::Article do | |
| use_vcr_cassette 'article/grill' | |
| end | |
| // swap the keybindings for paste and paste_and_indent | |
| { "keys": ["super+v"], "command": "paste_and_indent" }, | |
| { "keys": ["super+shift+v"], "command": "paste" } |
| # Resque job to do the true outbound sending | |
| class DeliverEmailJob | |
| include ProjectName::Job::Logging | |
| @queue = :mail_queue | |
| def self.perform(args) | |
| message = QueuedEmail.get!(args["message_id"]) | |
| logger.info("Delivering (%s) to %s" % [message.subject, message.formatted_recipient]) |