Skip to content

Commit bc2d5e2

Browse files
committed
Addressing pull request comments
1 parent eb29a69 commit bc2d5e2

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

AUTHORS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Andrey Cañón <[email protected]>
1+
Andrey Cañón <[email protected]>

README.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,8 @@ Features include
7777
About this xblock
7878
-----------------
7979

80-
The Flow control Xblock was built by `eduNEXT <https://www.edunext.co>`_, a company specialized in open edX development and open edX cloud services.
80+
The RocketChat Xblock was built by `eduNEXT <https://www.edunext.co>`_, a company specialized in open edX development and open edX cloud services.
8181

82-
It was presented at the open edX con 2016 at Stanford University.
8382

8483

8584
How to contribute

rocketc/requirements/base.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base requirements
2-
nose
2+
nose==1.3.7
33
django==1.8
44
requests==2.9.1
55
git+https://github.com/edx/[email protected]#egg=XBlock==1.1.1

rocketc/requirements/test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pep8==1.7.0
55
pylint==1.8
66
pyyaml==3.11
77
mako==1.0.4
8-
mock
8+
mock==2.0.0
99
#-e git://github.com/edx/[email protected]#egg=xblock-sdk==v0.1.2
1010
#-e git://github.com/nosedjango/nosedjango.git@ed7d7f9aa969252ff799ec159f828eaa8c1cbc5a#egg=nosedjango-dev
1111
# mock project for couserware.model_data

rocketc/rocketc.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@
1515
@XBlock.wants("user") # pylint: disable=too-many-ancestors
1616
class RocketChatXBlock(XBlock):
1717
"""
18-
TO-DO: document what your XBlock does.
18+
This class allows to embed a chat window inside a unit course
19+
and set the necessary variables to config the rocketChat enviroment
1920
"""
20-
21-
# Fields are defined on the class. You can access them in your code as
22-
# self.<fieldname>.
23-
2421
count = Integer(
2522
default=0, scope=Scope.user_state,
2623
help="A simple counter, to show something happening",

0 commit comments

Comments
 (0)