This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: gems/rufus-google/lib/rufus/gcal.rb | |
=================================================================== | |
--- gems/rufus-google/lib/rufus/gcal.rb (revision 722) | |
+++ gems/rufus-google/lib/rufus/gcal.rb (working copy) | |
@@ -110,7 +110,11 @@ | |
def start_time | |
evalue('when', 'startTime', :time => true) | |
end | |
- | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# you can grab mspec using: | |
# git clone git://github.com/jflam/mspec.git | |
$LOAD_PATH << File.dirname(__FILE__) + "/gems/mspec/lib" | |
require 'mspec' | |
describe "Array#sort" do | |
before :each do | |
@obj = [1,9,0,10] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% quizz %} | |
{% question texte: Etes-vous d'accord ? %} | |
{% reponse texte: Pas du tout, poids: 0 %} | |
{% reponse texte: Plutôt, oui, poids: 2 %} | |
{% reponse texte: Tout à fait, poids: 4 %} | |
{% endquestion %} | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: vendor/activewarehouse-etl/lib/etl/execution/migration.rb | |
=================================================================== | |
--- vendor/activewarehouse-etl/lib/etl/execution/migration.rb (revision 765) | |
+++ vendor/activewarehouse-etl/lib/etl/execution/migration.rb (working copy) | |
@@ -8,11 +8,17 @@ | |
def migrate | |
connection.initialize_schema_information | |
v = connection.select_value("SELECT version FROM #{schema_info_table_name}").to_i | |
- v.upto(target - 1) do |i| | |
- __send__("migration_#{i+1}".to_sym) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Books I just bought from PragProgs: | |
=================================== | |
Core Animation for Mac OS X and the iPhone | |
Desktop GIS | |
Enterprise Recipes with Ruby and Rails | |
Hello, Android | |
iPhone SDK Development | |
Mastering Dojo | |
Pragmatic Version Control Using Git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'active_record' | |
require 'action_view' | |
require 'will_paginate' | |
WillPaginate.enable | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# patch to handle connection pooling outside of rails: http://www.williambharding.com/blog/rants/rails-22-connection-pools-mongrel-handlers-bloodbath/ | |
# call ActiveRecord::Base.connection_handler.clear_connection! at the end of your requests (or as soon as you don't need AR anymore). | |
module ActiveRecord | |
module ConnectionAdapters | |
class ConnectionPool | |
def release_connection(conn_id = nil) | |
conn_id ||= current_connection_id | |
conn = @reserved_connections.delete(conn_id) | |
checkin conn if conn | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# patch to handle connection pooling outside of rails: http://www.williambharding.com/blog/rants/rails-22-connection-pools-mongrel-handlers-bloodbath/ | |
module ActiveRecord | |
module ConnectionAdapters | |
class ConnectionPool | |
def release_connection(conn_id = nil) | |
conn_id ||= current_connection_id | |
conn = @reserved_connections.delete(conn_id) | |
checkin conn if conn | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: thinking-sphinx/lib/thinking_sphinx/attribute.rb | |
=================================================================== | |
--- thinking-sphinx/lib/thinking_sphinx/attribute.rb (revision 809) | |
+++ thinking-sphinx/lib/thinking_sphinx/attribute.rb (working copy) | |
@@ -102,14 +102,17 @@ | |
end | |
def type_to_config | |
- { | |
+ supported_types = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/ruby | |
# inspired by http://ariejan.net/2009/01/04/how-to-start-a-rails-edge-app-the-easy-way/ | |
require 'fileutils' | |
def launch(cmd); puts cmd; throw "Error!" unless system(cmd); end | |
def bye(message); puts message; exit -1; end | |
bye "Syntax: my_rails app_name" unless (app_name = ARGV.first) | |
bye "Folder #{app_name} already there! Remove it first." if File.exists?(app_name) |
OlderNewer