Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
8136f54
wave 0 completed, wrote workspace.rb
trambui09 Oct 6, 2020
1967184
added to the slack.rb
trambui09 Oct 6, 2020
1c86e02
created channel.rb class
trambui09 Oct 6, 2020
5d32730
created the recipient parent class
trambui09 Oct 6, 2020
34cbfeb
created user class
trambui09 Oct 6, 2020
6101c50
created the test files and wrote test in the recipient_test
trambui09 Oct 6, 2020
8d63f14
added details to the slack file
trambui09 Oct 6, 2020
64c4365
worked on control flow and created instance of workspace and tp
trambui09 Oct 7, 2020
7dabea5
worked on the .list_all method
trambui09 Oct 7, 2020
5eeeca7
make changes to minor methods
trambui09 Oct 7, 2020
41bce3e
wave 1 tests
marks214 Oct 7, 2020
700f0be
refactored channel, recipient, and user classes
marks214 Oct 7, 2020
196ec7b
updated wave 1 tests and refactored code
marks214 Oct 7, 2020
a6f0a6f
made changes to slack.rb and test_helper.rb
trambui09 Oct 7, 2020
c05e530
Merge branch 'master' of https://github.com/trambui09/slack-cli into …
trambui09 Oct 7, 2020
30c4f78
minor refactor
marks214 Oct 7, 2020
c8a818c
Working on Wave 2 - select methods not working yet
marks214 Oct 7, 2020
c1a5dc8
Merge branch 'master' of https://github.com/trambui09/slack-cli into …
trambui09 Oct 7, 2020
1f0a377
#select_user method working, need to verify if return value is correct
marks214 Oct 7, 2020
687e40b
worked on the select user method
trambui09 Oct 7, 2020
4f2368f
merging and adding workspace_test
trambui09 Oct 7, 2020
6de2059
wrote most tests and code for selected_channel
trambui09 Oct 7, 2020
5a040eb
add coverage directory to .gitignore file
trambui09 Oct 8, 2020
33ca33c
made minor changes to workspace
trambui09 Oct 8, 2020
c5fbb85
worked more on wave 2 tests
marks214 Oct 8, 2020
cc340fd
added tests for wave 2
marks214 Oct 8, 2020
ca9331f
wave 3
marks214 Oct 8, 2020
8f8e28c
wave 3 - working on recipient test
marks214 Oct 8, 2020
7ec809d
fixed api error test for recipient
trambui09 Oct 8, 2020
32d295f
wrote more tests for recipient_test.rb
trambui09 Oct 8, 2020
b612475
finished tests for wave 3, refactored
marks214 Oct 9, 2020
b80b25e
added tests to user and channel
trambui09 Oct 9, 2020
ea7a775
added more tests to user and channel
trambui09 Oct 9, 2020
60eb469
added tests for channel
trambui09 Oct 9, 2020
88f6d8d
added more tests to user and channel
trambui09 Oct 9, 2020
15b95b0
added tests to recipient
trambui09 Oct 9, 2020
38c116e
deleted superflous comments
trambui09 Oct 9, 2020
d6d2fe3
tests for recipient
trambui09 Oct 10, 2020
cfc14c9
more tests for user and channel
trambui09 Oct 10, 2020
33267c7
Update README.md
trambui09 Oct 15, 2020
f4b5979
Merge pull request #1 from trambui09/test
trambui09 Oct 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .floo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"url": "https://floobits.com/adajn/slack-cli"
}
6 changes: 6 additions & 0 deletions .flooignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
extern
node_modules
tmp
vendor
.idea/workspace.xml
.idea/misc.xml
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/coverage/
/old/

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add coverage to your .gitignore it keeps the pull request manageable in size.

Suggested change
/old/
/old/
coverage


.DS_Store

# Ignore environemnt variables

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Ignore environemnt variables
# Ignore environment variables

.env
old
6 changes: 6 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/.rakeTasks

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions .idea/slack-cli.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# slack.rb - A Slack Command Line App

- Testing branch merging into master

## At a Glance

- Pair, [stage 2](https://github.com/Ada-Developers-Academy/pedagogy/blob/master/classroom/rule-of-three.md#stage-2) project
Expand Down
5 changes: 5 additions & 0 deletions coverage/.last_run.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"result": {
"covered_percent": 100.0
}
}
Loading