dm-metamapper 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  module DataMapper
2
2
  module MetaMapper
3
- VERSION = "0.3.1" unless defined?(::DataMapper::MetaMapper::VERSION)
3
+ VERSION = "0.3.2" unless defined?(::DataMapper::MetaMapper::VERSION)
4
4
  end
5
5
 
6
6
  end
@@ -43,12 +43,12 @@ DBFace::connect()
43
43
  }
44
44
 
45
45
  string
46
- currentDateTime()
46
+ currentTime()
47
47
  {
48
48
  using namespace boost::posix_time;
49
49
  ptime now = second_clock::local_time();
50
50
 
51
- return to_iso_extended_string(now);
51
+ return to_simple_string(now.time_of_day());
52
52
  }
53
53
 
54
54
 
@@ -56,7 +56,7 @@ void
56
56
  DBFace::log(const string& message)
57
57
  {
58
58
  if (_os)
59
- (*_os) << currentDateTime() << " DMMM " << message << endl;
59
+ (*_os) << currentTime() << " DMMM " << message << endl;
60
60
  }
61
61
 
62
62
  void
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dm-metamapper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 1
10
- version: 0.3.1
9
+ - 2
10
+ version: 0.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jonah Honeyman
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-09-06 00:00:00 Z
19
+ date: 2012-09-24 00:00:00 Z
20
20
  dependencies: []
21
21
 
22
22
  description: C++ API for databases created with DM. Hard typing, compile time checked queries.