Here a getting started tutorial for Sashimi.
Posts for: #Rails
Released Sashimi 0.1.6
I just released a new version of Sashimi, with tiny fixes and a new home!
~In fact the project is also hosted on RubyForge, now you can install the gem with:
$ (sudo) gem install sashimi
or with:
$ (sudo) gem install jodosha-sashimi --source=http://gems.github.com
If you wish, you can visit the project pages on GitHub and on RubyForge.
UPDATE The release 0.1.6 is broken, you are strongly encouraged to update your gem with the newest 0.1.7.
Speaker at RailsConf Europe 2008
I’m proud to announce my presence as speaker at the RailsConf Europe 2008 with a speech on Click to Globalize.
Rails: Single File App
I took inspiration from the Pratik Naik post, and realized a more simplistic version of its Rails single file app. My implementation has only Rails as unique dependency. class HelloWorldController ‘Hello World!’ end
end ActionController::Routing::Routes.draw do |map|
map.root :controller => “hello_world”
end DispatchServlet.dispatch :port => 3000,
:server_root => File.dirname(FILE)
require 'rubygems'
require 'action_controller'
require 'webrick'
require 'webrick_server'
Update 2008-06-04: I just wrote another version which also uses ActiveRecord and a template. ActiveRecord::Base.establish_connection(
:adapter => ‘sqlite3’,
:database => ’tiny_rails.sqlite3’,
:timeout => 5000)
require 'rubygems'
require 'activerecord'
require 'action_controller'
require 'webrick'
require 'webrick_server'
Sashimi: Just Received A Tasteful Update
On yesterday I announced Sashimi and now it’s already time of tasteful updates.
Changes
First, thanks to all the people that appreciated my work. Second, new commands and options are avaliable for Sashimi.
Update all plugins in your repository:
$ sashimi update --all
Install a plugin to your Rails app:
$ sashimi install --rails click-to-globalize
NOTE this is an alias for the add command.
Update a plugin of a Rails app:
$ sashimi update --rails click-to-globalize
NOTE If your application is versioned with Svn or Git, Sashimi will automatically schedules for add/remove the added/removed files.