message_train 0.6.9 → 0.6.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/views/message_train/boxes/_list_item.html.haml +1 -1
- data/app/views/message_train/boxes/show.html.haml +1 -1
- data/app/views/message_train/collectives/_list_item.html.haml +1 -1
- data/app/views/message_train/collectives/_widget.html.haml +1 -1
- data/app/views/message_train/conversations/_conversation.html.haml +1 -1
- data/app/views/message_train/conversations/show.html.haml +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: 364fe7bffea5ff858f225c9684b4fdff355ca74f
|
4
|
+
data.tar.gz: 79d9a40307326e1fc0f97b1e1ee87061c5fc913d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10deec8c465628a2695d44d6f8c771104f707b5fc9ee53e44a372d951baff4669bdc4ab9877560b122b8aa196ed0064291533af20f4d32052db7f2786f898ee9
|
7
|
+
data.tar.gz: 1fccc7454ca6b6e39bf69127a9cbd9980232b7d0d78fa1d42b24984945c035bd7955a103968587345439724ba51dafe77d83454673f94ea13b6245fec332d9c8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.10
|
@@ -4,7 +4,7 @@
|
|
4
4
|
- else
|
5
5
|
- add_title collective_name(@collective) + ' ' + @box.title
|
6
6
|
- marking_path = message_train.collective_box_path(@collective.path_part, @box.division)
|
7
|
-
- cache ['boxes-show', @box_user, @box]
|
7
|
+
- cache ['message-train', 'boxes-show', @box_user, @box] do
|
8
8
|
= form_tag marking_path, method: :put, remote: true, id: 'box', data: { type: :json } do
|
9
9
|
- unless @conversations.empty?
|
10
10
|
#box-actions.box-actions
|
@@ -1,4 +1,4 @@
|
|
1
|
-
- cache ['collectives-list-item', @box_user, box]
|
1
|
+
- cache ['message-train', 'collectives-list-item', @box_user, box] do
|
2
2
|
- if box.present?
|
3
3
|
%li{ html_options }
|
4
4
|
= link_to box.title, message_train.collective_box_path(box.parent.path_part, box.division)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
- cache ['collectives-widget', box_user, collective]
|
1
|
+
- cache ['message-train', 'collectives-widget', box_user, collective] do
|
2
2
|
- unless collective.boxes_for_participant(box_user).empty?
|
3
3
|
.hidden-print
|
4
4
|
%h3= :collective_messages.l(collective: collective_name(collective))
|
@@ -1,4 +1,4 @@
|
|
1
|
-
- cache ['conversation-result', @box_user, conversation]
|
1
|
+
- cache ['message-train', 'conversation-result', @box_user, conversation] do
|
2
2
|
%tr.message_train_conversation{ class: conversation_class(@box, conversation), id: 'message_train_conversation_' + conversation.id.to_s }
|
3
3
|
%td.col-xs-1= check_box_tag "objects[conversations][#{conversation.id.to_s}]", conversation.id
|
4
4
|
- if @collective.nil?
|
@@ -1,6 +1,6 @@
|
|
1
1
|
- add_title @conversation.subject
|
2
2
|
- add_subtitle :updated_at_time.l(time: @conversation.updated_at)
|
3
|
-
- cache ['conversations-show', @box_user, @conversation]
|
3
|
+
- cache ['message-train', 'conversations-show', @box_user, @conversation] do
|
4
4
|
#box
|
5
5
|
#conversation-actions.conversation-actions.pull-right
|
6
6
|
.btn.btn-default.btn-lg= conversation_ignored_toggle(@conversation)
|
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.6.
|
5
|
+
# stub: message_train 0.6.10 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.10"
|
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"]
|