unidom-dictionary 0.3.2 → 0.3.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1458f638496af9c03b61838398c50facaac7f629
4
- data.tar.gz: 7a92e1700cd66349dec8abfff78d06257f88c9d6
3
+ metadata.gz: 2e8ed063e8075fe991bf43c6e2db7f38fb7332e7
4
+ data.tar.gz: 1b76a3fc4556d21092fbb8c051a8dd10ba44bd5a
5
5
  SHA512:
6
- metadata.gz: 2b35ed604a72048bf1fb10b44b2672abbf98c464ceb6051b046a44d19fc614d4bb772a76e6d91c770fc2108b80cb563d66ea35db9d965510858e6be358d3d940
7
- data.tar.gz: a3f84b12ecec510e7ac85b231f85029a785e7eaed30da8c6d906e10e51d36c2d6834df0b4d4151cfd5b541d245d63d6ab82bd2ecdd8cfde81cb990ea3d050cbd
6
+ metadata.gz: e28294d4913c7892a098011a320f57746c734825faeccb4176b3123ae453045040d5440a43d06b37341c17d347d995714c6b347a1b8f758c2f8e88e81a1f5da6
7
+ data.tar.gz: 69143b5cfe367d9723c116ac9e8f092ca2e0716188805c9f205a117256e22752853f5d95d0cb37daa3c95b385f051475bdf1ff3957273552e1a793f8c85df215
@@ -13,8 +13,8 @@ class CreateUnidomDictionaryItems < ActiveRecord::Migration
13
13
  t.text :instruction
14
14
 
15
15
  t.column :state, 'char(1)', null: false, default: 'C'
16
- t.datetime :opened_at, null: false, default: Time.utc(1970)
17
- t.datetime :closed_at, null: false, default: Time.utc(3000)
16
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
17
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
18
18
  t.boolean :defunct, null: false, default: false
19
19
  t.jsonb :notation, null: false, default: {}
20
20
 
@@ -1,5 +1,5 @@
1
1
  module Unidom
2
2
  module Dictionary
3
- VERSION = '0.3.2'.freeze
3
+ VERSION = '0.3.3'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unidom-dictionary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Topbit Du
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-16 00:00:00.000000000 Z
11
+ date: 2017-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unidom-common