年別アーカイブ: 2007年
Sub-selects using Propel
DynamicCalendarHelper
DynamicCalendarHelper in Ruby on Rails
インストール
runy script/plugin install http://topfunky.net/svn/plugins/calendar_helper/
クラス定義内では、setter=は、メソッド呼び出しではなくローカル変数への代入とみなされる
「プログラミング Ruby 第2版」p142より
クラス定義内では、setter=は、メソッド呼び出しではなくローカル変数への代入とみなされる。メソッド呼び出しであることを示すには、self.setter=を使う。
class Incorrect attr_accessor :one, :two def initialize one = 1 # 間違い。これではローカル変数への代入とみなされる self.two = 2 end end obj = Incorrect.new obj.one → nil obj.two → 2
エンコードマニアックス - 各種エンコードやハッシュを一発作成
HTML構造を視覚的に超分かりやすく出来るスクリプト「stylizator」
IP電話の仕組み
migrationでforeign keyを定義する
UsingMigrations in Ruby on Rails
class CreateLineItems < ActiveRecord::Migration def self.up create_table(:line_items) do |t| t.column(:product_id, :integer, :null => false) t.column(:quantity, :integer, :null => false, :default => 0) end # This line is required if you're running a version of MySQL prior to 4.1.2 #add_index(:line_items, [:product_id], :name => 'fk_line_items_product') execute('ALTER TABLE line_items ADD CONSTRAINT fk_line_items_product FOREIGN KEY ( product_id ) REFERENCES products( id ) ') end def self.down drop_table(:line_items) end end