message_train 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14bf893cd029ea635a51f4046602e1993bc5558e
|
4
|
+
data.tar.gz: 8ad594299b0f2226524076210ffc4fef0e6cb935
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de13994f16a7ae02f8b42f62a5227d472c305fc814d2fd62d7144fe7ad474a065a0cda3b0dc81efd8bdcf9f6a102c4c934158ec046b6076fb5cae02cf319528f
|
7
|
+
data.tar.gz: 9e24be44919e2db4e238e3eba811b64cdd30dcff03ae93d1e13583f2878849fef2390e6859dd66293c48f441f92e0923815005cd6f0c6a7279aeb3f3d5a39644
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.4
|
@@ -1,9 +1,10 @@
|
|
1
1
|
- unless boxes.empty?
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
-
|
6
|
-
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
.hidden-print
|
3
|
+
%h3= :messages.l
|
4
|
+
.text-center= link_to :compose.l, message_train.new_box_message_path(:in), class: 'btn btn-lg btn-primary btn-compose'
|
5
|
+
%ul.list-group
|
6
|
+
- boxes.each do |box|
|
7
|
+
- if @collective.nil?
|
8
|
+
= box_list_item box, class: 'list-group-item'
|
9
|
+
- else
|
10
|
+
= collective_list_item box, class: 'list-group-item'
|
@@ -1,7 +1,8 @@
|
|
1
1
|
- unless collective.boxes_for_participant(box_user).empty?
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
-
|
7
|
-
|
2
|
+
.hidden-print
|
3
|
+
%h3= :collective_messages.l(collective: collective_name(collective))
|
4
|
+
- if collective.allows_sending_by?(box_user)
|
5
|
+
.text-center= link_to :compose_to_collective.l(collective: collective_name(collective)), message_train.new_collective_box_message_path(collective.path_part, :sent), class: 'btn btn-lg btn-primary btn-compose'
|
6
|
+
%ul.list-group
|
7
|
+
- collective.boxes_for_participant(box_user).each do |box|
|
8
|
+
= collective_list_item box, class: 'list-group-item'
|
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.4.
|
5
|
+
# stub: message_train 0.4.4 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "message_train"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.4"
|
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"]
|