mallet 0.1.9 → 0.2.0

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: 05c3e95d6ce5f614137d0baa1b4a5fb4febe31d7
4
- data.tar.gz: b7de3fe622666ef2d32a9d33e48d3c7e4026ecee
3
+ metadata.gz: 2a5dc00020489cf2b766f35af37de09420b0a4b7
4
+ data.tar.gz: f9c35e1da12c6e04dc1ca1d917e8dfad89965266
5
5
  SHA512:
6
- metadata.gz: 0d9b4a856c046ffcf2efcf2cc00c6350b512ded4d5b0633c33e22e05cf07b2c875337828c916d7d601830db57aaadd3ddbe31648a4d1d18110b7d8a37403cc86
7
- data.tar.gz: 88a9571d18d10ea69d58a1a6cf877a57ece7129fb61fac011331dab84068bcee9c63a78f90682b226f66f9b9894addab9eff752a1e5f61213c79b01b842d9239
6
+ metadata.gz: fa36110f1d4e22e48c85e6cdd8b8c42f5f6cf2dd3fdb43cba41d4969812b010408fdd1f255ad5fba4bce8c16de20431cbd6401621e5af112ce119d7974711265
7
+ data.tar.gz: 56865d5cb1f9b1fbf591dd5021b047fd359b31a669df400e1ed1b600d717c56bf6e8c2aa4a895f68a41d9aa8415e9e243ea6d74096e620ae32558710ea5b7687
@@ -7,16 +7,29 @@ class CreateMalletTables < ActiveRecord::Migration
7
7
  t.string "malletable_id"
8
8
  t.string "workflow_state"
9
9
  t.string "message_id"
10
+ t.string "to"
11
+ t.string "cc"
12
+ t.string "bcc"
13
+ t.string "from"
14
+ t.string "reply_to"
15
+ t.string "subject"
10
16
  t.text "data"
11
17
  t.float "wait_time"
12
18
  t.date "send_date"
13
19
  t.timestamps
14
20
  end
15
21
 
16
- add_index "mallet_mails", ["definition"], :name => "index_mallet_mails_on_definition"
17
- add_index "mallet_mails", ["malletable_type", "malletable_id"], :name => "index_mallet_mails_on_malletable_type_and_malletable_id"
18
- add_index "mallet_mails", ["send_date"], :name => "index_mallet_mails_on_send_date"
19
-
22
+ add_index "mallet_mails", ["bcc"]
23
+ add_index "mallet_mails", ["cc"]
24
+ add_index "mallet_mails", ["definition"]
25
+ add_index "mallet_mails", ["from"]
26
+ add_index "mallet_mails", ["malletable_type", "malletable_id"]
27
+ add_index "mallet_mails", ["message_id"]
28
+ add_index "mallet_mails", ["reply_to"]
29
+ add_index "mallet_mails", ["send_date"]
30
+ add_index "mallet_mails", ["subject"]
31
+ add_index "mallet_mails", ["to"]
32
+
20
33
  end
21
34
 
22
- end
35
+ end
@@ -1,3 +1,3 @@
1
1
  module Mallet
2
- VERSION = "0.1.9"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mallet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Douglas Anderson
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-05-12 00:00:00.000000000 Z
12
+ date: 2017-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport