Skip to content

Commit

Permalink
refs #7162, AWS gem monkey patches ActiveSupport methods, Get support…
Browse files Browse the repository at this point in the history
….rb from right_aws gem
  • Loading branch information
konstantin committed Jul 5, 2010
1 parent fe5c7f2 commit 0bc3343
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
1 change: 1 addition & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ README.txt
Rakefile
lib/net_fix.rb
lib/right_http_connection.rb
lib/support.rb
setup.rb
1 change: 1 addition & 0 deletions lib/right_http_connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
require "logger"

$:.unshift(File.dirname(__FILE__))
require 'support'
require "net_fix"


Expand Down
109 changes: 109 additions & 0 deletions lib/support.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# These are ActiveSupport-;like extensions to do a few handy things in the gems
# Derived from ActiveSupport, so the AS copyright notice applies:
#
#
#
# Copyright (c) 2005 David Heinemeier Hansson
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++
#
#
class String #:nodoc:

# Constantize tries to find a declared constant with the name specified
# in the string. It raises a NameError when the name is not in CamelCase
# or is not initialized.
#
# Examples
# "Module".constantize #=> Module
# "Class".constantize #=> Class
def right_constantize()
unless /\A(?:::)?([A-Z]\w*(?:::[A-Z]\w*)*)\z/ =~ self
raise NameError, "#{self.inspect} is not a valid constant name!"
end
Object.module_eval("::#{$1}", __FILE__, __LINE__)
end

def right_camelize()
self.dup.split(/_/).map{ |word| word.capitalize }.join('')
end

end


class Object #:nodoc:
# "", " ", nil, [], and {} are blank
def right_blank?
if respond_to?(:empty?) && respond_to?(:strip)
empty? or strip.empty?
elsif respond_to?(:empty?)
empty?
else
!self
end
end
end

class NilClass #:nodoc:
def right_blank?
true
end
end

class FalseClass #:nodoc:
def right_blank?
true
end
end

class TrueClass #:nodoc:
def right_blank?
false
end
end

class Array #:nodoc:
alias_method :right_blank?, :empty?
end

class Hash #:nodoc:
alias_method :right_blank?, :empty?

# Return a new hash with all keys converted to symbols.
def right_symbolize_keys
inject({}) do |options, (key, value)|
options[key.to_sym] = value
options
end
end
end

class String #:nodoc:
def right_blank?
empty? || strip.empty?
end
end

class Numeric #:nodoc:
def right_blank?
false
end
end

0 comments on commit 0bc3343

Please sign in to comment.