trello-fs 0.1.2 → 0.1.3

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: 7288e25a02f8332142a3ac7d05b9225c9b7602fb
4
- data.tar.gz: b6f01b02db7b22beaedbd511b73778ad0d02528f
3
+ metadata.gz: 1850d787daea8493c7a96164577b6ba32b2cc09e
4
+ data.tar.gz: 0e9956bca34d2c7da29b12eafe1beb54b2552d59
5
5
  SHA512:
6
- metadata.gz: c6a0ec247beb67b9e34f6c77e6a18fc0dd9975c4586c381a9e56afdc34e0ca6b41a8b554cc0a05e0517f3d3696cdd7c05d0abdc1fb70a1d0dca3215517212135
7
- data.tar.gz: 942eafb92fb0656b6a150dcaedfd7b0c8c7aef8b0f67eee844bcbb2f087e84e9e13c7a2274403b531dbdfe8c4f43a0771d1ef9b4bba46ac9dd72539bb69fd8fb
6
+ metadata.gz: 8f0d9ad1b389cd6e33716b190a4d58c53c242ddabe37458162e7fb4559a08f4f384fc64723c74a84cca33f951028da05ff2d7d81124d4f67d55479363b4cb270
7
+ data.tar.gz: bf0b1936d4e4043eb0d896b3bf7db2ffd4467bf24144dd8b18ff7a1aa9e8155b06a94820c98678bab5426dcbfc57cb80e1ebe571d8a520880d326a01faaf7073
@@ -2,8 +2,6 @@
2
2
 
3
3
  Sample boards exported from Trello.
4
4
 
5
- [`cats`](Labels/cats.md) [`images`](Labels/images.md) [`puppies`](Labels/puppies.md) [`readme`](Labels/readme.md) [`red one`](Labels/red_one.md)
6
-
7
5
  ## [TrelloFs Demo Board](TrelloFs_Demo_Board/README.md)
8
6
 
9
7
  - [A List of Cards](TrelloFs_Demo_Board/A_List_of_Cards/README.md)
@@ -13,4 +11,6 @@ Sample boards exported from Trello.
13
11
 
14
12
  - [Basics](Welcome_Board/Basics/README.md)
15
13
  - [Intermediate](Welcome_Board/Intermediate/README.md)
16
- - [Advanced](Welcome_Board/Advanced/README.md)
14
+ - [Advanced](Welcome_Board/Advanced/README.md)
15
+
16
+ [`cats`](Labels/cats.md) [`images`](Labels/images.md) [`puppies`](Labels/puppies.md) [`readme`](Labels/readme.md) [`red one`](Labels/red_one.md)
@@ -1,7 +1,5 @@
1
1
  # [TrelloFs Demo Board](https://trello.com/b/23HXX6Gr/trellofs-demo-board)
2
2
 
3
- [`cats`](../Labels/cats.md) [`images`](../Labels/images.md) [`puppies`](../Labels/puppies.md) [`readme`](../Labels/readme.md)
4
-
5
3
  [Examples](../README.md)
6
4
 
7
5
  ## [A List of Cards](A_List_of_Cards/README.md)
@@ -12,4 +10,6 @@
12
10
  ## [A Second List of Cards](A_Second_List_of_Cards/README.md)
13
11
 
14
12
  - [A card with an image](A_Second_List_of_Cards/A_card_with_an_image.md) `cats` `images`
15
- - [This one has a puppy](A_Second_List_of_Cards/This_one_has_a_puppy.md) `images` `puppies`
13
+ - [This one has a puppy](A_Second_List_of_Cards/This_one_has_a_puppy.md) `images` `puppies`
14
+
15
+ [`cats`](../Labels/cats.md) [`images`](../Labels/images.md) [`puppies`](../Labels/puppies.md) [`readme`](../Labels/readme.md)
@@ -1,7 +1,5 @@
1
1
  # [Welcome Board](https://trello.com/b/bkskcUIO/welcome-board)
2
2
 
3
- [`red one`](../Labels/red_one.md)
4
-
5
3
  [Examples](../README.md)
6
4
 
7
5
  ## [Basics](Basics/README.md)
@@ -30,4 +28,6 @@
30
28
  - [Want to use keyboard shortcuts? We have them!](Advanced/Want_to_use_keyboard_shortcuts_We_have_them.md)
31
29
  - [Get the apps for iOS, Android, and Windows 8!](Advanced/Get_the_apps_for_iOS_Android_and_Windows_8.md)
32
30
  - [Want updates on new features?](Advanced/Want_updates_on_new_features.md)
33
- - [Need help?](Advanced/Need_help.md)
31
+ - [Need help?](Advanced/Need_help.md)
32
+
33
+ [`red one`](../Labels/red_one.md)
@@ -25,7 +25,6 @@ module TrelloFs
25
25
  def readme_content
26
26
  [
27
27
  "# [#{board_name}](#{@board.url})",
28
- labels_content,
29
28
  "[#{repository_name}](../README.md)",
30
29
  board.lists.map do |list|
31
30
  list_builder = ListBuilder.new(self, list)
@@ -35,7 +34,8 @@ module TrelloFs
35
34
  "## #{list_link}",
36
35
  list_builder.content(true)
37
36
  ].join("\n\n")
38
- end.join("\n\n")
37
+ end.join("\n\n"),
38
+ labels_content
39
39
  ].join("\n\n")
40
40
  end
41
41
 
@@ -34,8 +34,8 @@ module TrelloFs
34
34
  [
35
35
  "# #{repository.title}",
36
36
  repository.description,
37
- labels_content(repository),
38
- boards_content(repository, boards)
37
+ boards_content(repository, boards),
38
+ labels_content(repository)
39
39
  ].join("\n\n")
40
40
  end
41
41
 
@@ -1,3 +1,3 @@
1
1
  module TrelloFs
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trello-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matúš Tomlein