unidom-order 1.5.8 → 1.5.9

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: db0f1360aecd050dea37dd389eb4898a21008691
4
- data.tar.gz: 8346921528890bea61e6407248f51d66876c748b
3
+ metadata.gz: cbb1cdfb2186661dce3c9c1dcdd00aeeabf5333f
4
+ data.tar.gz: 2a90634406b6399adee3446b884aa2705cc453f5
5
5
  SHA512:
6
- metadata.gz: aaab80bbcaf6d8349c015577a99c4e4794d92f6a181a850231529e696ca61901be0f8e6ddbb16e1c7d9c45ee6ecfec4c8dc1c44aacb058a72c9b2240c56e8ad9
7
- data.tar.gz: 17d0debda693bc7dcdea878bba996338303d31e938e400a84ec08d2a5506775c9f806adb32953e51a3b95f846c076746434fa2c9c5f741191bba3fd9f1113d47
6
+ metadata.gz: 2819082fb73c9887ed7c32eb686322ab73759d3ddd8465770d895cf7094a33dacd8befa571da13890fbd6985a47bbfa1eef654161963b47d0721d31879a2f49c
7
+ data.tar.gz: e29ac008b488377b6ec19e1de35a34a0ef085b944b16a7536b2e7c5f4e585688dc15c4679c2c3a5d4b4f6f9cab3e41d44e03554af224f1d419c719459da58c0b
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>Unidom Order</title>
5
- <%= stylesheet_link_tag "unidom/order/application", media: "all" %>
5
+ <%= stylesheet_link_tag 'unidom/order/application', media: "all" %>
6
6
  <%= csrf_meta_tags %>
7
7
  </head>
8
8
  <body>
@@ -19,8 +19,8 @@ class CreateUnidomOrders < ActiveRecord::Migration
19
19
 
20
20
  t.string :slug, null: false, default: nil, limit: 200
21
21
  t.column :state, 'char(1)', null: false, default: 'C'
22
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
23
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
22
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
23
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
24
24
  t.boolean :defunct, null: false, default: false
25
25
  t.jsonb :notation, null: false, default: {}
26
26
 
@@ -23,8 +23,8 @@ class CreateUnidomOrderItems < ActiveRecord::Migration
23
23
  t.text :description
24
24
 
25
25
  t.column :state, 'char(1)', null: false, default: 'C'
26
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
27
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
26
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
27
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
28
28
  t.boolean :defunct, null: false, default: false
29
29
  t.jsonb :notation, null: false, default: {}
30
30
 
@@ -16,8 +16,8 @@ class CreateUnidomOrderAdjustments < ActiveRecord::Migration
16
16
  t.text :description
17
17
 
18
18
  t.column :state, 'char(1)', null: false, default: 'C'
19
- t.datetime :opened_at, null: false, default: ::Time.utc(1970)
20
- t.datetime :closed_at, null: false, default: ::Time.utc(3000)
19
+ t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT
20
+ t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT
21
21
  t.boolean :defunct, null: false, default: false
22
22
  t.jsonb :notation, null: false, default: {}
23
23
 
@@ -1,5 +1,5 @@
1
1
  module Unidom
2
2
  module Order
3
- VERSION = '1.5.8'.freeze
3
+ VERSION = '1.5.9'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unidom-order
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.8
4
+ version: 1.5.9
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-17 00:00:00.000000000 Z
11
+ date: 2017-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unidom-common