learn-co 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
- data/README.md +6 -13
- data/lib/learn/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: 611f59ed6b9866d9da279270d8c5bbfadf9ed120
|
|
4
|
+
data.tar.gz: fc9542be3a14aa654c17bec968657327d30a4a57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfefde4f674d31c67774e83c054b38913df2796bc0d69901128c4488b09518ecf165995233f68860e0338360945b9b4d7e0d8a7c93801daa657d16d7f5a92933
|
|
7
|
+
data.tar.gz: 66461d5fe7356b85985ee789b398856321ee84727804f43a65f358a41be5bbbb9815d39270d2ba759a34bc27b7c29caba174ad7af74608f12951de86215ba10a
|
data/README.md
CHANGED
|
@@ -1,26 +1,19 @@
|
|
|
1
|
-
#
|
|
1
|
+
# learn-co
|
|
2
2
|
|
|
3
|
-
Runs RSpec and
|
|
4
|
-
School's Learn.
|
|
3
|
+
Runs RSpec, Jasmine, and Python Unit Test test suites and uploads the results to Learn.
|
|
5
4
|
|
|
6
5
|
## Installation
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
Install with:
|
|
9
8
|
|
|
10
9
|
```
|
|
11
|
-
$ gem
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
And then install with:
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
$ gem install learn
|
|
10
|
+
$ gem install learn-co
|
|
18
11
|
```
|
|
19
12
|
|
|
20
13
|
Alternatively, add this line to your application's Gemfile:
|
|
21
14
|
|
|
22
15
|
```ruby
|
|
23
|
-
gem 'learn'
|
|
16
|
+
gem 'learn-co'
|
|
24
17
|
```
|
|
25
18
|
|
|
26
19
|
And then execute:
|
|
@@ -29,7 +22,7 @@ And then execute:
|
|
|
29
22
|
|
|
30
23
|
## Usage
|
|
31
24
|
|
|
32
|
-
From within a directory with
|
|
25
|
+
From within a directory with an RSpec, Jasmine, or Python Unit Test test suite, run:
|
|
33
26
|
|
|
34
27
|
```
|
|
35
28
|
$ learn
|
data/lib/learn/version.rb
CHANGED