message_train 0.6.10 → 0.6.11
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/VERSION +1 -1
- data/app/assets/javascripts/message_train.js +1 -1
- data/app/views/message_train/boxes/show.html.haml +7 -7
- data/message_train.gemspec +3 -3
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97ebc62b355bb87cc2fc039d9e04fe04b0f1c8f3
|
|
4
|
+
data.tar.gz: f83c2e3bf672467ceda134404ccccc8502a8bb7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa0268558c09227ec70f8901c792c9f471181bbaedf4e5edd5f532fce18e7f9cb6e2f668c1818a4644f20b4c8bb92e06130d95c9375fa18dd7c07b1f8c4452b8
|
|
7
|
+
data.tar.gz: a111a95610407365e4c4c08bb70e714136d09e04b9dce47ce667ea71991c8e1b07a4003cc048fe73900092b918f435750f85307c571fae4210933d84baacb270
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.11
|
|
@@ -110,7 +110,7 @@ $(document).ready(function(){
|
|
|
110
110
|
}
|
|
111
111
|
});
|
|
112
112
|
|
|
113
|
-
$('#box-actions .mark').click(function(event) {
|
|
113
|
+
$('#box-actions .mark-all-link').click(function(event) {
|
|
114
114
|
event.preventDefault();
|
|
115
115
|
$('#spinner').removeClass('hide');
|
|
116
116
|
mark_to_set = $(this).data('mark');
|
|
@@ -26,25 +26,25 @@
|
|
|
26
26
|
%span.caret
|
|
27
27
|
%ul.dropdown-menu
|
|
28
28
|
%li
|
|
29
|
-
= link_to :mark_as_name.l(name: :read.l), '#0', class: 'mark', id: 'mark-read', data: { mark: 'read'}
|
|
29
|
+
= link_to :mark_as_name.l(name: :read.l), '#0', class: 'mark-all-link', id: 'mark-read', data: { mark: 'read'}
|
|
30
30
|
%li
|
|
31
|
-
= link_to :mark_as_name.l(name: :unread.l), '#0', class: 'mark', id: 'mark-unread', data: { mark: 'unread'}
|
|
31
|
+
= link_to :mark_as_name.l(name: :unread.l), '#0', class: 'mark-all-link', id: 'mark-unread', data: { mark: 'unread'}
|
|
32
32
|
- if @box.division == :trash
|
|
33
33
|
%li
|
|
34
|
-
= link_to :mark_as_name.l(name: :untrashed.l), '#0', class: 'mark', id: 'mark-untrash', data: { mark: 'untrash'}
|
|
34
|
+
= link_to :mark_as_name.l(name: :untrashed.l), '#0', class: 'mark-all-link', id: 'mark-untrash', data: { mark: 'untrash'}
|
|
35
35
|
%li.divider{ role: 'separator' }
|
|
36
36
|
%li
|
|
37
|
-
= link_to :mark_as_name.l(name: :deleted.l), '#0', class: 'mark', id: 'mark-deleted', data: { mark: 'deleted'}
|
|
37
|
+
= link_to :mark_as_name.l(name: :deleted.l), '#0', class: 'mark-all-link', id: 'mark-deleted', data: { mark: 'deleted'}
|
|
38
38
|
- else
|
|
39
39
|
%li
|
|
40
|
-
= link_to :mark_as_name.l(name: :trashed.l), '#0', class: 'mark', id: 'mark-trash', data: { mark: 'trash'}
|
|
40
|
+
= link_to :mark_as_name.l(name: :trashed.l), '#0', class: 'mark-all-link', id: 'mark-trash', data: { mark: 'trash'}
|
|
41
41
|
%li.divider{ role: 'separator' }
|
|
42
42
|
- if @box.division == :ignored
|
|
43
43
|
%li
|
|
44
|
-
= link_to :mark_as_name.l(name: :unignored.l), '#0', class: 'mark', id: 'mark-unignored', data: { mark: 'unignore'}
|
|
44
|
+
= link_to :mark_as_name.l(name: :unignored.l), '#0', class: 'mark-all-link', id: 'mark-unignored', data: { mark: 'unignore'}
|
|
45
45
|
- else
|
|
46
46
|
%li
|
|
47
|
-
= link_to :mark_as_name.l(name: :ignored.l), '#0', class: 'mark', id: 'mark-ignored', data: { mark: 'ignore'}
|
|
47
|
+
= link_to :mark_as_name.l(name: :ignored.l), '#0', class: 'mark-all-link', id: 'mark-ignored', data: { mark: 'ignore'}
|
|
48
48
|
- if @collective.nil?
|
|
49
49
|
= link_to :compose.l, message_train.new_box_message_path(@box.division), class: 'btn btn-primary compose'
|
|
50
50
|
- elsif @collective.allows_sending_by? @box_user
|
data/message_train.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
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.6.
|
|
5
|
+
# stub: message_train 0.6.11 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "message_train"
|
|
9
|
-
s.version = "0.6.
|
|
9
|
+
s.version = "0.6.11"
|
|
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"]
|
|
13
13
|
s.authors = ["Karen Lundgren"]
|
|
14
|
-
s.date = "2016-03-
|
|
14
|
+
s.date = "2016-03-18"
|
|
15
15
|
s.description = "Rails 4 Engine providing private/public messaging for any object, such as Users or Groups"
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: message_train
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|