Sha256: 02b6e08d8abb06c30e4b3b0f8d876a9f7bf566d54b321a1b491f5e0a86a120ac
Contents?: true
Size: 617 Bytes
Versions: 1
Compression:
Stored size: 617 Bytes
Contents
require 'rubygems' require 'i18n' require 'active_support' require 'active_support/version' module CassandraObject class << self attr_accessor :old_active_support end self.old_active_support = false VERSION = "0.5.0" end if ActiveSupport::VERSION::STRING =~ /^2/ vendor = File.expand_path(File.dirname(__FILE__) + "/../vendor") CassandraObject.old_active_support = true $LOAD_PATH << vendor require 'active_support_shims' $LOAD_PATH << vendor + "/activemodel/lib" require 'active_model' else require 'active_support/all' require 'active_model' end require 'cassandra_object/base'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cassandra_object-0.6.0.pre | lib/cassandra_object.rb |