Sha256: b88d98a7ef9d91d1c5c9440a90de79f71dbea58727cd38e058473df376d4120e

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

#-- license
#
#  Based on original code by Justin Mecham and James Hunt
#  at http://rubyforge.org/projects/activedirectory
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#++ license

module ActiveDirectory
  module FieldType
    class Date
      #
      # Converts a time object into an ISO8601 format compatable with Active Directory
      #
      def self.encode(local_time)
        local_time.strftime('%Y%m%d%H%M%S.0Z')
      end

      #
      # Decodes an Active Directory date when stored as ISO8601
      #
      def self.decode(remote_time)
        Time.parse(remote_time)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bsb_active_directory-99.0 lib/bsb_active_directory/field_type/date.rb
bsb_active_directory-98.0 lib/bsb_active_directory/field_type/date.rb
bsb_active_directory-45.0 lib/bsb_active_directory/field_type/date.rb
bsb_active_directory-23.0 lib/bsb_active_directory/field_type/date.rb
bsb_active_directory-22.0 lib/bsb_active_directory/field_type/date.rb
bsb_active_directory-8.0 lib/bsb_active_directory/field_type/date.rb