`
文章列表
http://pullmonkey.com/2008/7/23/open-flash-chart-ii-plugin-for-ruby-on-rails-ofc2 http://pullmonkey.com/projects/open_flash_chart2/   英文配置步骤    1. rails testing_ofc_2    2. cd testing_ofc_2    3. script/plugin install git://github.com/pullmonkey/open_flash_chart.git    4. If the above line did not w ...
http://gdgdlog.net/log/show/130 def rss_test require 'rss/maker' rss = RSS::Maker.make("2.0") do |maker| # channelの設定 maker.channel.about = url_for(:controller=>"rss", :action=>"new") maker.channel.title = "ぐだろぐ" ...
acts_as_modified モデルの変更を監視して、各 attribute が変更されたかどうかを確認することができます。 「あるカラムに変更があった際にだけ、なにかしらの処理を行う」などという場合に便利。 インストールは普通にすればOK ./script/plugin install acts_as_modified 使用法をまとめると以下のような感じ class Person < ActiveRecord::Base acts_as_modified end p = Person.find( :first ) p.name # =&g ...
1 applicattion.rb 配置    include ExceptionNotifiable consider_local "127.0.0.1", "192.168.1.109" 2  environment.rb ExceptionNotifier.sender_address = %("Project Application Error" <email@email.com>) ExceptionNotifier.email_prefix = "[Project Error] ...
http://doruby.kbmj.com/nakahira_on_rails/20071227/RMagick_ はじめまして、kbmjでruby on railsの開発をしている中平です。 今回私は、RMagickというrubyで画像処理を行うライブラリの使い方を説明いたします。 まず、RMagickについて。 RMagickとはその名のとおり、ImageMagickをrubyで扱えるようにしたものです。 ですのでRMagickを使う場合は、 ruby本体,ImageMagick,RMagickの3つが必要です。 今回はインストール方法は省きまして、インストー ...
acts_as_paranoidプラグインをインストールします。 http://doruby.kbmj.com/ 1 安装步骤 $ ruby script/plugin source http://techno-weenie.net/svn/projects/plugins $ ruby script/plugin install acts_as_paranoid 2 $ script/generate migration AddBooksDeletedAt #マイグレーションファイルの作成 $ less db/migrate/002_add_books_deleted_ ...
转载 :http://blog.csdn.net/meteorlWJ/archive/2008/02/03/2079356.aspx 现在我们有一种新的migration文件中声明的格式。以前我们是这样写的: Ruby代码 复制代码   create_table :people do |t| t.column, "account_id", :integer t.column, "first_name", :string, :null => false t.column, "last_ ...
Action Pack: HTTP Loving 如你所期望的那样,Rails2.0的Action Pack更加贴近HTTP,并且充分利用HTTP协议,例如资源、多种视图,还有更多的呢。我们添加了一个模块来处理HTTP的Basic验证,它能够让授权的API轻松跨越SSL协议,而且他是如此的简单易用。下面是一个例子(更多的例子请参考 ActionController::HttpAuthentication): Ruby代码 复制代码   class PostsController < ApplicationController       USER_NAME, PASSWORD = ...
javascript 用鼠标 选择 文字 然后替换 很酷的<script type="text/javascript"> function changes(obj){ var TextIn=document.getElementById("textin"); if(TextIn.createTextRange){ //ie兼容 TextIn.focus(); document.selection.createRange().duplicate().text=obj; }else{ //firefox兼容 ...
使用Javascript来动态创建 script 标记   var head = document.getElementsByTagName("head").item(0); var script = document.createElement ("script"); script.src = "XXX.js"; head.appendChild (script);
原文:Ruby on Rails Rake Tutorial (aka. How rake turned me into an alcoholic) 引言:作为一个rails的开发者,你可能很熟悉使用rake进行你的测试,或者使用rake db:migrate运行你的migrations,但是你真的知道Rake的背后故事吗?你意识到可以自己写一个Rake任务或者一个有用的lib吗? 下面是我们使用Rake任务的例子: 1、给列表中的用户发送邮件 2、每晚数据的计算和报告 3、过期或重新生成缓存 4、备份数据和svn版本(how's this : subversion repository) ...
后台 运行 任务 下载spawn 放在vendor/plugins 目录下 在config/environment.rb中配置: config.active_record.allow_concurrency=true def test spawn do sleep 11 12.times { puts "i" } end render :action=>"test" end 很开心的是 该程序不会sle ...
def detect_encode require 'hpricot' require 'open-uri' @doc = open("http://www.baidu.com") { |f| Hpricot(f) } guess_res = NKF.guess(@doc.to_s) case guess_res when NKF::SJIS @encode = "Shift_JIS" when NKF::EUC @encode = "EUC" ...
http://wiki.asp.net/page.aspx/401/export-to-csv-fi   First let’s see what the CSV file is: CSV file is a text based file in which data are separated by comma. It can be opened by excel so you can use excel functionality. Each row of data including the title is in separate line. Meanwhile ...
http://blog.csdn.net/xinyaping/article/details/6751940   Visual Leak Detector是过去(Visual Studio 2008的时代)我们常用的C/C++内存泄露检查工具。在Visual Studio 2010中依然可以使用该工具,但有两点需注意: 版本问题 设置变化 版本问题: 在codeproject.com上面提供的最新版本依然是1.9d , 但是请注意,该版本在Visual Studio 2010下面表现非常差。网上有很多人注意到了这一点,很多人推荐用1.0版,因为1.0版在Visual ...
Global site tag (gtag.js) - Google Analytics