trello-fs 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/boards/TrelloFs_Demo_Board/A_List_of_Cards/TrelloFs_Features.md +1 -1
- data/examples/boards/TrelloFs_Demo_Board/A_List_of_Cards/TrelloFs_Installation.md +1 -1
- data/examples/boards/TrelloFs_Demo_Board/A_Second_List_of_Cards/A_card_with_an_image.md +1 -1
- data/examples/boards/TrelloFs_Demo_Board/A_Second_List_of_Cards/This_one_has_a_puppy.md +1 -1
- data/examples/boards/Welcome_Board/Basics/You_can_attach_pictures_and_files.md +1 -1
- data/examples/boards/Welcome_Board/Intermediate/Use_color-coded_labels_for_organization.md +1 -1
- data/lib/trello-fs/card_builder.rb +1 -1
- data/lib/trello-fs/version.rb +1 -1
- 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: 0088c1ead4e01c92eed8aab112f02a9a5ec271b0
|
4
|
+
data.tar.gz: 4fc58b18d594e03e0063878fa74e9c431e32e7ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a028f2463b8cc9b4eb962aac525a2241f64c1258bf76c6b193cae64a70b9ba97af768506d7170411493125794de9ea3cb3c12d7ce150dae5ca61277a99debf7
|
7
|
+
data.tar.gz: 754d62e32b23b69aef2ded0d11246566e8a56373d8f2ddc287fea9297b71c78f0f46528099a46881a10da9f496310c61744d9a498ac8d670aa0d62bb73de76eb
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Examples](../../README.md) > [TrelloFs Demo Board](../README.md) > [A Second List of Cards](README.md)
|
4
4
|
|
5
|
-
[`cats`](
|
5
|
+
[`cats`](../../Labels/cats.md) [`images`](../../Labels/images.md)
|
6
6
|
|
7
7
|
There should be an image below
|
8
8
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Examples](../../README.md) > [TrelloFs Demo Board](../README.md) > [A Second List of Cards](README.md)
|
4
4
|
|
5
|
-
[`images`](
|
5
|
+
[`images`](../../Labels/images.md) [`puppies`](../../Labels/puppies.md)
|
6
6
|
|
7
7
|
Here is a link to the one with a cat: [A card with an image](../../TrelloFs_Demo_Board/A_Second_List_of_Cards/A_card_with_an_image.md)
|
8
8
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Examples](../../README.md) > [Welcome Board](../README.md) > [Basics](README.md)
|
4
4
|
|
5
|
-
[`red one`](
|
5
|
+
[`red one`](../../Labels/red_one.md)
|
6
6
|
|
7
7
|
This is Taco, the most famous Siberian Husky in New York City, and official spokes-mascot for Trello. You might see him around Trello introducing new features and whatnot.
|
8
8
|
|
@@ -40,7 +40,7 @@ module TrelloFs
|
|
40
40
|
def content(attachment_paths = [])
|
41
41
|
labels = card_labels.map do |lbl|
|
42
42
|
label_builder = LabelBuilder.new(repository, lbl)
|
43
|
-
"[`#{label_builder.label_name}`](
|
43
|
+
"[`#{label_builder.label_name}`](../../#{label_builder.relative_path})"
|
44
44
|
end.sort.join(' ')
|
45
45
|
list_name = @list_builder.list_name
|
46
46
|
board_name = @list_builder.board_name
|
data/lib/trello-fs/version.rb
CHANGED