~ubuntu-branches/ubuntu/oneiric/ctioga2/oneiric

« back to all changes in this revision

Viewing changes to lib/ctioga2/metabuilder/types/dates.rb

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Fourmond
  • Date: 2011-01-24 21:36:06 UTC
  • Revision ID: james.westby@ubuntu.com-20110124213606-9ettx0ugl83z0bzp
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# dates.rb: a Type to deal with dates
 
2
# Copyright (C) 2006, 2009 Vincent Fourmond
 
3
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
 
 
18
require 'time'
 
19
require 'ctioga2/utils'
 
20
 
 
21
module CTioga2
 
22
  Version::register_svn_info('$Revision: 2 $', '$Date: 2009-04-25 14:03:30 +0200 (Sat, 25 Apr 2009) $')
 
23
 
 
24
  module MetaBuilder
 
25
 
 
26
    # The module Types should be used for all subclasses of Type, to
 
27
    # keep the place clean and tidy.
 
28
    module Types
 
29
 
 
30
      # A combination date/time
 
31
      class DateTimeParameter < Type
 
32
 
 
33
        type_name :date_time, 'date', Time.new
 
34
 
 
35
        def string_to_type_internal(str)
 
36
          return Time.parse(str)
 
37
        end
 
38
 
 
39
      end
 
40
    end
 
41
 
 
42
  end
 
43
end