message_train 0.1.2 → 0.1.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 +4 -4
- data/README.rdoc +3 -1
- data/VERSION +1 -1
- data/message_train.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd6dff9cb07a01a27a95e16c531b466937199b58
|
|
4
|
+
data.tar.gz: fa5bde71c0d21d49506fc32b5ba22a62baaeba1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a823e19a6cc6586403ed015028ace253564024b01a2700f65359399d39ded0e5b75b5f9eeb05647e93286515a300a71da7e9b6fc1c288e07509475489fcc007
|
|
7
|
+
data.tar.gz: 908a7e9ff82ad2d566ff0916a48966a3b665b12669632e05c458237d8ccd58001c23076875e464ce84d04579564e9cab6f4c586b528db7d1bf947e268994683f
|
data/README.rdoc
CHANGED
|
@@ -44,7 +44,9 @@ In your layout, supposing you use haml:
|
|
|
44
44
|
|
|
45
45
|
If you don't use devise with its `current_user` method, you will need to configure MessageTrain to use whatever method you use:
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
MessageTrain.configure do |config|
|
|
48
|
+
config.current_user_method = :current_subscriber
|
|
49
|
+
end
|
|
48
50
|
|
|
49
51
|
=== Mixin options
|
|
50
52
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/message_train.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: message_train 0.1.
|
|
5
|
+
# stub: message_train 0.1.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "message_train"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|