trello-fs 0.0.1

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.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/Gemfile +3 -0
  4. data/README.md +52 -0
  5. data/examples/demo_board/A_List_of_Cards/README.md +6 -0
  6. data/examples/demo_board/A_List_of_Cards/TrelloFs_Features.md +14 -0
  7. data/examples/demo_board/A_List_of_Cards/TrelloFs_Installation.md +37 -0
  8. data/examples/demo_board/A_Second_List_of_Cards/A_card_with_an_image.md +13 -0
  9. data/examples/demo_board/A_Second_List_of_Cards/README.md +6 -0
  10. data/examples/demo_board/A_Second_List_of_Cards/This_one_has_a_puppy.md +13 -0
  11. data/examples/demo_board/Attachments/A_card_with_an_image/cats-cute-cat-animal-cute-grass-photo.jpg +0 -0
  12. data/examples/demo_board/Attachments/This_one_has_a_puppy/Puppy_2.jpg +0 -0
  13. data/examples/demo_board/Home +13 -0
  14. data/examples/demo_board/Labels/cats.md +5 -0
  15. data/examples/demo_board/Labels/images.md +6 -0
  16. data/examples/demo_board/Labels/no_name.md +4 -0
  17. data/examples/demo_board/Labels/puppies.md +5 -0
  18. data/examples/demo_board/Labels/readme.md +6 -0
  19. data/examples/demo_board/README.md +13 -0
  20. data/examples/demo_board.rb +8 -0
  21. data/examples/welcome_board/Advanced/Get_the_apps_for_iOS_Android_and_Windows_8.md +12 -0
  22. data/examples/welcome_board/Advanced/Need_help.md +10 -0
  23. data/examples/welcome_board/Advanced/README.md +10 -0
  24. data/examples/welcome_board/Advanced/Use_as_many_boards_as_you_want.md +8 -0
  25. data/examples/welcome_board/Advanced/Want_tips_usage_examples_or_API_info.md +8 -0
  26. data/examples/welcome_board/Advanced/Want_to_use_keyboard_shortcuts_We_have_them.md +10 -0
  27. data/examples/welcome_board/Advanced/Want_updates_on_new_features.md +14 -0
  28. data/examples/welcome_board/Attachments/You_can_attach_pictures_and_files/taco.png +0 -0
  29. data/examples/welcome_board/Basics/Click_on_a_card_to_see_whats_behind_it.md +8 -0
  30. data/examples/welcome_board/Basics/README.md +10 -0
  31. data/examples/welcome_board/Basics/This_is_a_card.md +8 -0
  32. data/examples/welcome_board/Basics/Welcome_to_Trello.md +8 -0
  33. data/examples/welcome_board/Basics/You_can_attach_pictures_and_files.md +13 -0
  34. data/examples/welcome_board/Basics/any_kind_of_hyperlink_.md +8 -0
  35. data/examples/welcome_board/Basics/or_checklists.md +8 -0
  36. data/examples/welcome_board/Home +31 -0
  37. data/examples/welcome_board/Intermediate/Drag_people_onto_a_card_to_indicate_that_theyre_responsible_for_it.md +8 -0
  38. data/examples/welcome_board/Intermediate/Finished_with_a_card_Archive_it.md +12 -0
  39. data/examples/welcome_board/Intermediate/Invite_your_team_to_this_board_using_the_Add_Members_button.md +8 -0
  40. data/examples/welcome_board/Intermediate/Make_as_many_lists_as_you_need.md +8 -0
  41. data/examples/welcome_board/Intermediate/README.md +11 -0
  42. data/examples/welcome_board/Intermediate/Try_dragging_cards_anywhere.md +8 -0
  43. data/examples/welcome_board/Intermediate/Use_color-coded_labels_for_organization.md +8 -0
  44. data/examples/welcome_board/Intermediate/You_can_change_the_board_background.md +8 -0
  45. data/examples/welcome_board/Labels/no_name.md +4 -0
  46. data/examples/welcome_board/Labels/red_one.md +6 -0
  47. data/examples/welcome_board/README.md +31 -0
  48. data/examples/welcome_board.rb +8 -0
  49. data/lib/trello-fs/attachment_builder.rb +60 -0
  50. data/lib/trello-fs/attachment_cleaner.rb +39 -0
  51. data/lib/trello-fs/board_builder.rb +61 -0
  52. data/lib/trello-fs/builder.rb +31 -0
  53. data/lib/trello-fs/card_builder.rb +87 -0
  54. data/lib/trello-fs/label_builder.rb +60 -0
  55. data/lib/trello-fs/labels_builder.rb +16 -0
  56. data/lib/trello-fs/list_builder.rb +68 -0
  57. data/lib/trello-fs/repository.rb +36 -0
  58. data/lib/trello-fs/repository_cleaner.rb +18 -0
  59. data/lib/trello-fs/string_to_file_name.rb +9 -0
  60. data/lib/trello-fs/trello_api.rb +83 -0
  61. data/lib/trello-fs/version.rb +3 -0
  62. data/lib/trello-fs.rb +8 -0
  63. data/spec/helpers/test_repository.rb +21 -0
  64. data/spec/spec_helper.rb +9 -0
  65. data/spec/trello-fs/attachment_builder_spec.rb +37 -0
  66. data/spec/trello-fs/attachment_cleaner_spec.rb +44 -0
  67. data/spec/trello-fs/board_builder_spec.rb +28 -0
  68. data/spec/trello-fs/card_builder_spec.rb +60 -0
  69. data/spec/trello-fs/label_builder_spec.rb +36 -0
  70. data/spec/trello-fs/list_builder_spec.rb +32 -0
  71. data/spec/trello-fs/repository_spec.rb +9 -0
  72. data/spec/trello-fs/string_to_file_name_spec.rb +19 -0
  73. data/spec/trello-fs/trello_api_spec.rb +144 -0
  74. data/trello-fs.gemspec +24 -0
  75. metadata +170 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cc6d6851ca6b37b219b7ff84caee00142a1cd72a
4
+ data.tar.gz: f6ec294f6fa58d9f3840136cf5640898b4db0ac6
5
+ SHA512:
6
+ metadata.gz: 37a62c91bc69b68d357cc686fd6c3693469e51489f615461441acc7acc2d3602bfeaf46f355910a06f4a5d2531c1b82744d91f76ed81ab3263abc2d20f0b7be5
7
+ data.tar.gz: bd7db6a8006e6130a10f23b290b2ac6aea93edd8beb094c7a1976adc74084978043d73bd16b2fed237ed5d610fe84520d3a54b0ca175b7054c7c14dd644610a6
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /vendor/bundle
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ TrelloFs
2
+ ========
3
+
4
+ Dumps the contents of a Trello board into a folder structure.
5
+ The generated files can be then pushed to Github or a Bitbucket Wiki.
6
+
7
+ # Example
8
+
9
+ See the [Demo Board](examples/demo_board/README.md), which was generated
10
+ from this Trello board:
11
+ [https://trello.com/b/23HXX6Gr/trellofs-demo-board](https://trello.com/b/23HXX6Gr/trellofs-demo-board)
12
+
13
+ # Features
14
+
15
+ - compatible with Github and Bitbucket Wiki
16
+ - supports attachments
17
+ - shows image attachments directly in the card view
18
+ - label files that contain references to cards with the labels
19
+ - supports updating the repository
20
+ - downloads the same attachments only once
21
+
22
+ # Installation
23
+
24
+ 1. Install the gem
25
+
26
+ ```
27
+ gem install trello-fs
28
+ ```
29
+
30
+ 2. Create a file like this one:
31
+
32
+ ```
33
+ require 'trello-fs'
34
+
35
+ TrelloFs.build({
36
+ path: 'PATH_TO_THE_TARGET_FOLDER',
37
+ developer_public_key: 'DEVELOPER_PUBLIC_KEY',
38
+ member_token: 'MEMBER_TOKEN',
39
+ board_id: 'BOARD_ID'
40
+ })
41
+ ```
42
+
43
+ 3. Replace the placeholder keys in the file above
44
+
45
+ - See the Configuration section in
46
+ https://github.com/jeremytregunna/ruby-trello to learn how to get the keys
47
+ - You can get the board\_id when you go to a board in Trello and add .json to
48
+ the end of the URL
49
+
50
+ 4. Run `ruby NAME_OF_YOUR_FILE.rb`
51
+ 5. Integrate with a CRON job that will run the script and push the changes to
52
+ Github (or don't, I don't care)
@@ -0,0 +1,6 @@
1
+ # A List of Cards
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [TrelloFs Installation](TrelloFs_Installation.md)
6
+ - [TrelloFs Features](TrelloFs_Features.md)
@@ -0,0 +1,14 @@
1
+ # [TrelloFs Features](https://trello.com/c/xKzJDi8l/2-trellofs-features)
2
+
3
+ [TrelloFs Demo Board](../README.md) > [A List of Cards](README.md)
4
+
5
+ [`readme`](../Labels/readme.md)
6
+
7
+ - compatible with Github and Bitbucket Wiki
8
+ - supports attachments
9
+ - shows image attachments directly in the card view
10
+ - label files that contain references to cards with the labels
11
+ - supports updating the repository
12
+ - downloads the same attachments only once
13
+
14
+
@@ -0,0 +1,37 @@
1
+ # [TrelloFs Installation](https://trello.com/c/Y2KkUY9R/1-trellofs-installation)
2
+
3
+ [TrelloFs Demo Board](../README.md) > [A List of Cards](README.md)
4
+
5
+ [`readme`](../Labels/readme.md)
6
+
7
+ 1. Install the gem
8
+
9
+ ```
10
+ gem install trello-fs
11
+ ```
12
+
13
+ 2. Create a file like this one:
14
+
15
+ ```
16
+ require 'trello-fs'
17
+
18
+ TrelloFs.build({
19
+ path: 'PATH_TO_THE_TARGET_FOLDER',
20
+ developer_public_key: 'DEVELOPER_PUBLIC_KEY',
21
+ member_token: 'MEMBER_TOKEN',
22
+ board_id: 'BOARD_ID'
23
+ })
24
+ ```
25
+
26
+ 3. Replace the placeholder keys in the file above
27
+
28
+ - See the Configuration section in
29
+ https://github.com/jeremytregunna/ruby-trello to learn how to get the keys
30
+ - You can get the board\_id when you go to a board in Trello and add .json to
31
+ the end of the URL
32
+
33
+ 4. Run `ruby NAME_OF_YOUR_FILE.rb`
34
+ 5. Integrate with a CRON job that will run the script and push the changes to
35
+ Github (or don't, I don't care)
36
+
37
+
@@ -0,0 +1,13 @@
1
+ # [A card with an image](https://trello.com/c/0n9J8V4r/3-a-card-with-an-image)
2
+
3
+ [TrelloFs Demo Board](../README.md) > [A Second List of Cards](README.md)
4
+
5
+ [`cats`](../Labels/cats.md) [`images`](../Labels/images.md)
6
+
7
+ There should be an image below
8
+
9
+
10
+
11
+ ## Attachments
12
+
13
+ ![cats-cute-cat-animal-cute-grass-photo.jpg](../Attachments/A_card_with_an_image/cats-cute-cat-animal-cute-grass-photo.jpg)
@@ -0,0 +1,6 @@
1
+ # A Second List of Cards
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [A card with an image](A_card_with_an_image.md)
6
+ - [This one has a puppy](This_one_has_a_puppy.md)
@@ -0,0 +1,13 @@
1
+ # [This one has a puppy](https://trello.com/c/a1qgcz1H/4-this-one-has-a-puppy)
2
+
3
+ [TrelloFs Demo Board](../README.md) > [A Second List of Cards](README.md)
4
+
5
+ [`images`](../Labels/images.md) [`puppies`](../Labels/puppies.md)
6
+
7
+
8
+
9
+
10
+
11
+ ## Attachments
12
+
13
+ ![Puppy_2.jpg](../Attachments/This_one_has_a_puppy/Puppy_2.jpg)
@@ -0,0 +1,13 @@
1
+ # [TrelloFs Demo Board](https://trello.com/b/23HXX6Gr/trellofs-demo-board)
2
+
3
+ [`cats`](Labels/cats.md) [`images`](Labels/images.md) [`puppies`](Labels/puppies.md) [`readme`](Labels/readme.md)
4
+
5
+ ## [A List of Cards](A_List_of_Cards/README.md)
6
+
7
+ - [TrelloFs Installation](A_List_of_Cards/TrelloFs_Installation.md)
8
+ - [TrelloFs Features](A_List_of_Cards/TrelloFs_Features.md)
9
+
10
+ ## [A Second List of Cards](A_Second_List_of_Cards/README.md)
11
+
12
+ - [A card with an image](A_Second_List_of_Cards/A_card_with_an_image.md)
13
+ - [This one has a puppy](A_Second_List_of_Cards/This_one_has_a_puppy.md)
@@ -0,0 +1,5 @@
1
+ # `cats`
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [A card with an image](../A_Second_List_of_Cards/A_card_with_an_image.md)
@@ -0,0 +1,6 @@
1
+ # `images`
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [A card with an image](../A_Second_List_of_Cards/A_card_with_an_image.md)
6
+ - [This one has a puppy](../A_Second_List_of_Cards/This_one_has_a_puppy.md)
@@ -0,0 +1,4 @@
1
+ # `no name`
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
@@ -0,0 +1,5 @@
1
+ # `puppies`
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [This one has a puppy](../A_Second_List_of_Cards/This_one_has_a_puppy.md)
@@ -0,0 +1,6 @@
1
+ # `readme`
2
+
3
+ [TrelloFs Demo Board](../README.md)
4
+
5
+ - [TrelloFs Features](../A_List_of_Cards/TrelloFs_Features.md)
6
+ - [TrelloFs Installation](../A_List_of_Cards/TrelloFs_Installation.md)
@@ -0,0 +1,13 @@
1
+ # [TrelloFs Demo Board](https://trello.com/b/23HXX6Gr/trellofs-demo-board)
2
+
3
+ [`cats`](Labels/cats.md) [`images`](Labels/images.md) [`puppies`](Labels/puppies.md) [`readme`](Labels/readme.md)
4
+
5
+ ## [A List of Cards](A_List_of_Cards/README.md)
6
+
7
+ - [TrelloFs Installation](A_List_of_Cards/TrelloFs_Installation.md)
8
+ - [TrelloFs Features](A_List_of_Cards/TrelloFs_Features.md)
9
+
10
+ ## [A Second List of Cards](A_Second_List_of_Cards/README.md)
11
+
12
+ - [A card with an image](A_Second_List_of_Cards/A_card_with_an_image.md)
13
+ - [This one has a puppy](A_Second_List_of_Cards/This_one_has_a_puppy.md)
@@ -0,0 +1,8 @@
1
+ require_relative '../lib/trello-fs'
2
+
3
+ TrelloFs.build({
4
+ path: 'demo_board',
5
+ developer_public_key: 'f19ae1a07b4a7112b3227bb6fd99abec',
6
+ member_token: 'cf2db23395ea7d0507930218eaec1e4b2f1783b9e6798be92b601f429de517cd',
7
+ board_id: '54e8e79e3bebac45c537327c'
8
+ })
@@ -0,0 +1,12 @@
1
+ # [Get the apps for iOS, Android, and Windows 8!](https://trello.com/c/nrGRIe2t/18-get-the-apps-for-ios-android-and-windows-8)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ - iPhone and iPad app: https://itunes.apple.com/us/app/trello-organize-anything/id461504587
8
+
9
+ - Android app: https://play.google.com/store/apps/details?id=com.trello
10
+
11
+ - Windows 8 app: http://apps.microsoft.com/windows/en-us/app/trello/bd4fa6c1-0994-4caa-b0e1-04eec135667b
12
+
@@ -0,0 +1,10 @@
1
+ # [Need help?](https://trello.com/c/FKdMs5cb/16-need-help)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ We got you covered: https://trello.com/help
8
+
9
+ You can get to the help page any time by clicking your name in the header and selecting “Help”.
10
+
@@ -0,0 +1,10 @@
1
+ # Advanced
2
+
3
+ [Welcome Board](../README.md)
4
+
5
+ - [Use as many boards as you want!](Use_as_many_boards_as_you_want.md)
6
+ - [Want tips, usage examples, or API info?](Want_tips_usage_examples_or_API_info.md)
7
+ - [Want to use keyboard shortcuts? We have them!](Want_to_use_keyboard_shortcuts_We_have_them.md)
8
+ - [Get the apps for iOS, Android, and Windows 8!](Get_the_apps_for_iOS_Android_and_Windows_8.md)
9
+ - [Want updates on new features?](Want_updates_on_new_features.md)
10
+ - [Need help?](Need_help.md)
@@ -0,0 +1,8 @@
1
+ # [Use as many boards as you want!](https://trello.com/c/PDaBJB6d/13-use-as-many-boards-as-you-want)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ To make a new board, click on the **+** button in the top right hand corner and select “New Board”.
8
+
@@ -0,0 +1,8 @@
1
+ # [Want tips, usage examples, or API info?](https://trello.com/c/d18dplPl/17-want-tips-usage-examples-or-api-info)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ We have a board full of Trello resources for that! Check it out here: https://trello.com/resources
8
+
@@ -0,0 +1,10 @@
1
+ # [Want to use keyboard shortcuts? We have them!](https://trello.com/c/bmKSjFcU/14-want-to-use-keyboard-shortcuts-we-have-them)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ They are all listed here: https://trello.com/shortcuts
8
+
9
+ Or just use the “?” shortcut to bring up that page any time.
10
+
@@ -0,0 +1,14 @@
1
+ # [Want updates on new features?](https://trello.com/c/CYNb1cbF/15-want-updates-on-new-features)
2
+
3
+ [Welcome Board](../README.md) > [Advanced](README.md)
4
+
5
+
6
+
7
+ Read the blog: http://blog.trello.com/
8
+
9
+ Follow us on Twitter: http://twitter.com/trello
10
+
11
+ Like us on Facebook: https://www.facebook.com/trelloapp
12
+
13
+ Follow us on Google+: https://plus.google.com/103127084407107005900/posts
14
+
@@ -0,0 +1,8 @@
1
+ # [Click on a card to see what's behind it.](https://trello.com/c/nOJohWLO/3-click-on-a-card-to-see-what-s-behind-it)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+
6
+
7
+ You can put a detailed description here...
8
+
@@ -0,0 +1,10 @@
1
+ # Basics
2
+
3
+ [Welcome Board](../README.md)
4
+
5
+ - [Welcome to Trello!](Welcome_to_Trello.md)
6
+ - [This is a card.](This_is_a_card.md)
7
+ - [Click on a card to see what's behind it.](Click_on_a_card_to_see_whats_behind_it.md)
8
+ - [You can attach pictures and files...](You_can_attach_pictures_and_files.md)
9
+ - [... any kind of hyperlink ...](any_kind_of_hyperlink_.md)
10
+ - [... or checklists.](or_checklists.md)
@@ -0,0 +1,8 @@
1
+ # [This is a card.](https://trello.com/c/bzDsCs2P/2-this-is-a-card)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # [Welcome to Trello!](https://trello.com/c/7jfQU1RW/1-welcome-to-trello)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,13 @@
1
+ # [You can attach pictures and files...](https://trello.com/c/kXPi0va2/4-you-can-attach-pictures-and-files)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+ [`red one`](../Labels/red_one.md)
6
+
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
+
9
+
10
+
11
+ ## Attachments
12
+
13
+ ![taco.png](../Attachments/You_can_attach_pictures_and_files/taco.png)
@@ -0,0 +1,8 @@
1
+ # [... any kind of hyperlink ...](https://trello.com/c/t5JfKVor/5-any-kind-of-hyperlink)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # [... or checklists.](https://trello.com/c/tdxCA39r/6-or-checklists)
2
+
3
+ [Welcome Board](../README.md) > [Basics](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,31 @@
1
+ # [Welcome Board](https://trello.com/b/bkskcUIO/welcome-board)
2
+
3
+ [`no name`](Labels/no_name.md) [`red one`](Labels/red_one.md)
4
+
5
+ ## [Basics](Basics/README.md)
6
+
7
+ - [Welcome to Trello!](Basics/Welcome_to_Trello.md)
8
+ - [This is a card.](Basics/This_is_a_card.md)
9
+ - [Click on a card to see what's behind it.](Basics/Click_on_a_card_to_see_whats_behind_it.md)
10
+ - [You can attach pictures and files...](Basics/You_can_attach_pictures_and_files.md)
11
+ - [... any kind of hyperlink ...](Basics/any_kind_of_hyperlink_.md)
12
+ - [... or checklists.](Basics/or_checklists.md)
13
+
14
+ ## [Intermediate](Intermediate/README.md)
15
+
16
+ - [Invite your team to this board using the Add Members button](Intermediate/Invite_your_team_to_this_board_using_the_Add_Members_button.md)
17
+ - [Drag people onto a card to indicate that they're responsible for it.](Intermediate/Drag_people_onto_a_card_to_indicate_that_theyre_responsible_for_it.md)
18
+ - [Use color-coded labels for organization](Intermediate/Use_color-coded_labels_for_organization.md)
19
+ - [You can change the board background.](Intermediate/You_can_change_the_board_background.md)
20
+ - [Make as many lists as you need!](Intermediate/Make_as_many_lists_as_you_need.md)
21
+ - [Try dragging cards anywhere.](Intermediate/Try_dragging_cards_anywhere.md)
22
+ - [Finished with a card? Archive it.](Intermediate/Finished_with_a_card_Archive_it.md)
23
+
24
+ ## [Advanced](Advanced/README.md)
25
+
26
+ - [Use as many boards as you want!](Advanced/Use_as_many_boards_as_you_want.md)
27
+ - [Want tips, usage examples, or API info?](Advanced/Want_tips_usage_examples_or_API_info.md)
28
+ - [Want to use keyboard shortcuts? We have them!](Advanced/Want_to_use_keyboard_shortcuts_We_have_them.md)
29
+ - [Get the apps for iOS, Android, and Windows 8!](Advanced/Get_the_apps_for_iOS_Android_and_Windows_8.md)
30
+ - [Want updates on new features?](Advanced/Want_updates_on_new_features.md)
31
+ - [Need help?](Advanced/Need_help.md)
@@ -0,0 +1,8 @@
1
+ # [Drag people onto a card to indicate that they're responsible for it.](https://trello.com/c/hdPn172M/8-drag-people-onto-a-card-to-indicate-that-they-re-responsible-for-it)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,12 @@
1
+ # [Finished with a card? Archive it.](https://trello.com/c/rZubWzHc/12-finished-with-a-card-archive-it)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+ From the *front* of the card, archive it using the menu in the top right corner.
8
+
9
+ From the *back* of the card, archive it using the **Archive** button at the bottom right.
10
+
11
+ Want to bring it back to the board? Open the menu in the sidebar on the right and select “Archived Items”.
12
+
@@ -0,0 +1,8 @@
1
+ # [Invite your team to this board using the Add Members button](https://trello.com/c/XJoGqr42/7-invite-your-team-to-this-board-using-the-add-members-button)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # [Make as many lists as you need!](https://trello.com/c/nOo2zsdl/10-make-as-many-lists-as-you-need)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+ Just click “Add List” at the end of the board. You can also double click a free space on the board to add a list there.
8
+
@@ -0,0 +1,11 @@
1
+ # Intermediate
2
+
3
+ [Welcome Board](../README.md)
4
+
5
+ - [Invite your team to this board using the Add Members button](Invite_your_team_to_this_board_using_the_Add_Members_button.md)
6
+ - [Drag people onto a card to indicate that they're responsible for it.](Drag_people_onto_a_card_to_indicate_that_theyre_responsible_for_it.md)
7
+ - [Use color-coded labels for organization](Use_color-coded_labels_for_organization.md)
8
+ - [You can change the board background.](You_can_change_the_board_background.md)
9
+ - [Make as many lists as you need!](Make_as_many_lists_as_you_need.md)
10
+ - [Try dragging cards anywhere.](Try_dragging_cards_anywhere.md)
11
+ - [Finished with a card? Archive it.](Finished_with_a_card_Archive_it.md)
@@ -0,0 +1,8 @@
1
+ # [Try dragging cards anywhere.](https://trello.com/c/zdfradqE/11-try-dragging-cards-anywhere)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # [Use color-coded labels for organization](https://trello.com/c/iWj84rl0/9-use-color-coded-labels-for-organization)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+ [`no name`](../Labels/no_name.md) [`red one`](../Labels/red_one.md)
6
+
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # [You can change the board background.](https://trello.com/c/lxDp5eEi/19-you-can-change-the-board-background)
2
+
3
+ [Welcome Board](../README.md) > [Intermediate](README.md)
4
+
5
+
6
+
7
+ Open the sidebar menu, select “Settings”, and select “Change Background...“.
8
+
@@ -0,0 +1,4 @@
1
+ # `no name`
2
+
3
+ [Welcome Board](../README.md)
4
+
@@ -0,0 +1,6 @@
1
+ # `red one`
2
+
3
+ [Welcome Board](../README.md)
4
+
5
+ - [Use color-coded labels for organization](../Intermediate/Use_color-coded_labels_for_organization.md)
6
+ - [You can attach pictures and files...](../Basics/You_can_attach_pictures_and_files.md)
@@ -0,0 +1,31 @@
1
+ # [Welcome Board](https://trello.com/b/bkskcUIO/welcome-board)
2
+
3
+ [`no name`](Labels/no_name.md) [`red one`](Labels/red_one.md)
4
+
5
+ ## [Basics](Basics/README.md)
6
+
7
+ - [Welcome to Trello!](Basics/Welcome_to_Trello.md)
8
+ - [This is a card.](Basics/This_is_a_card.md)
9
+ - [Click on a card to see what's behind it.](Basics/Click_on_a_card_to_see_whats_behind_it.md)
10
+ - [You can attach pictures and files...](Basics/You_can_attach_pictures_and_files.md)
11
+ - [... any kind of hyperlink ...](Basics/any_kind_of_hyperlink_.md)
12
+ - [... or checklists.](Basics/or_checklists.md)
13
+
14
+ ## [Intermediate](Intermediate/README.md)
15
+
16
+ - [Invite your team to this board using the Add Members button](Intermediate/Invite_your_team_to_this_board_using_the_Add_Members_button.md)
17
+ - [Drag people onto a card to indicate that they're responsible for it.](Intermediate/Drag_people_onto_a_card_to_indicate_that_theyre_responsible_for_it.md)
18
+ - [Use color-coded labels for organization](Intermediate/Use_color-coded_labels_for_organization.md)
19
+ - [You can change the board background.](Intermediate/You_can_change_the_board_background.md)
20
+ - [Make as many lists as you need!](Intermediate/Make_as_many_lists_as_you_need.md)
21
+ - [Try dragging cards anywhere.](Intermediate/Try_dragging_cards_anywhere.md)
22
+ - [Finished with a card? Archive it.](Intermediate/Finished_with_a_card_Archive_it.md)
23
+
24
+ ## [Advanced](Advanced/README.md)
25
+
26
+ - [Use as many boards as you want!](Advanced/Use_as_many_boards_as_you_want.md)
27
+ - [Want tips, usage examples, or API info?](Advanced/Want_tips_usage_examples_or_API_info.md)
28
+ - [Want to use keyboard shortcuts? We have them!](Advanced/Want_to_use_keyboard_shortcuts_We_have_them.md)
29
+ - [Get the apps for iOS, Android, and Windows 8!](Advanced/Get_the_apps_for_iOS_Android_and_Windows_8.md)
30
+ - [Want updates on new features?](Advanced/Want_updates_on_new_features.md)
31
+ - [Need help?](Advanced/Need_help.md)
@@ -0,0 +1,8 @@
1
+ require_relative '../lib/trello-fs'
2
+
3
+ TrelloFs.build({
4
+ path: 'welcome_board',
5
+ developer_public_key: 'f19ae1a07b4a7112b3227bb6fd99abec',
6
+ member_token: 'cf2db23395ea7d0507930218eaec1e4b2f1783b9e6798be92b601f429de517cd',
7
+ board_id: '54e79539bda3e89c0bf454ec'
8
+ })