Skip to content

Instantly share code, notes, and snippets.

~/projects/rails/actionpack (git)-[master] % git diff 22:23
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 1a64b12..58ca5de 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -103,11 +103,6 @@ module ActionView
include FormTagHelper
include UrlHelper
- # Converts the given object to an ActiveModel compliant one.
@nashby
nashby / gist:1482754
Created December 15, 2011 20:33
rails issue #3923
diff --git a/activerecord/lib/active_record/relation/spawn_methods.rb b/activerecord/lib/active_record/relation/spawn_methods.rb
index ba882be..b72aaa2 100644
--- a/activerecord/lib/active_record/relation/spawn_methods.rb
+++ b/activerecord/lib/active_record/relation/spawn_methods.rb
@@ -34,7 +34,7 @@ module ActiveRecord
unless @where_values.empty?
# Remove duplicates, last one wins.
seen = Hash.new { |h,table| h[table] = {} }
- merged_wheres = merged_wheres.reverse.reject { |w|
+ merged_wheres = merged_wheres.uniq.reverse.reject { |w|
source 'http://rubygems.org'
gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'journey', :git => 'git://github.com/rails/journey.git'
gem 'arel', :git => 'git://github.com/rails/arel.git'
gem 'sqlite3'
# Gems used only for assets and not required
attribute_names.map do |attribute_name|
attribute(attribute_name)
end.join.html_safe
# vs.
"".html_safe.tap do |attributes|
attribute_names.each do |attribute_name|
attributes.safe_concat attribute(attribute_name)
end
(ql:quickload "trivial-http")
(ql:quickload "cl-json")
(let ((user (nth 2 (trivial-http:http-get "http://coderwall.com/nashby.json"))))
(let ((decoded (json:decode-json user)))
(format t "~a~%" (nth 1 decoded))))
def get_res(nextу: nil)
Cloudinary::Api.resources(direction: 1, next_cursor: nextу, max_results: 500, resource_type: 'video')
end
def clc_bytes(resp)
resp['resources'].each { |r| $sum += r['bytes'] }
end
resp = get_res;
$sum = 0
def get_res(nextу: nil)
Cloudinary::Api.resources(direction: 1, next_cursor: nextу, max_results: 500, resource_type: 'video')
end
def clc_bytes(resp)
resp['resources'].each { |r| $sum += r['bytes'] }
end
resp = get_res;
$sum = 0