Sha256: e50812b9e0b6dc0b9293847b0e934875ef36361605af2c6ccd040a518abeeefb

Contents?: true

Size: 975 Bytes

Versions: 4

Compression:

Stored size: 975 Bytes

Contents

# Copyright (C) 2009  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1 as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

module ActiveGroonga
  module Timestamp
    class << self
      def included(base)
        base.class_eval do
          include(ActiveRecord::Timestamp)
          extend(ClassMethods)
        end
      end
    end

    module ClassMethods
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activegroonga-0.0.7 lib/active_groonga/timestamp.rb
activegroonga-0.0.6 lib/active_groonga/timestamp.rb
activegroonga-0.0.1 lib/active_groonga/timestamp.rb
activegroonga-0.0.2 lib/active_groonga/timestamp.rb