meducation_sdk 0.1.0
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 +7 -0
- data/.gitignore +18 -0
- data/.travis.yml +5 -0
- data/CONTRIBUTING.md +30 -0
- data/Gemfile +4 -0
- data/LICENCE.md +617 -0
- data/README.md +73 -0
- data/Rakefile +8 -0
- data/lib/meducation_sdk/configuration.rb +35 -0
- data/lib/meducation_sdk/mocker.rb +56 -0
- data/lib/meducation_sdk/resources/item_comment.rb +20 -0
- data/lib/meducation_sdk/resources/media_file.rb +23 -0
- data/lib/meducation_sdk/resources/mesh_heading.rb +20 -0
- data/lib/meducation_sdk/resources/mnemonic.rb +15 -0
- data/lib/meducation_sdk/resources/notification.rb +25 -0
- data/lib/meducation_sdk/resources/partner.rb +15 -0
- data/lib/meducation_sdk/resources/premium_tutorial.rb +14 -0
- data/lib/meducation_sdk/resources/syllabus_item.rb +15 -0
- data/lib/meducation_sdk/resources/user.rb +14 -0
- data/lib/meducation_sdk/version.rb +3 -0
- data/lib/meducation_sdk.rb +60 -0
- data/meducation_sdk.gemspec +30 -0
- data/test/mocker_test.rb +34 -0
- data/test/resource_test.rb +21 -0
- data/test/resources/item_comment_test.rb +15 -0
- data/test/resources/media_file_test.rb +14 -0
- data/test/resources/user_test.rb +10 -0
- data/test/test_helper.rb +28 -0
- metadata +190 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f574f7ca917eb457408a47acda4853d6a88e9e00
|
4
|
+
data.tar.gz: 59460e5b26c57345d21ba3f39f796aaa59ed1e93
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f216c7abd70fbfdfb9e232ef8b97d363c5e96e8784cbb55bb4fab72afdb38a1c42d86038f5b27d8b80c9514d25d73a8a65bbb336e6b272e8202a5d1680ff0852
|
7
|
+
data.tar.gz: dbabf2d8abf1a09c52a6c4fdceb9df57110c0c70c1899df515e3ce00e25d1375eeb081ed7eb2d8fe74d41f4f73d7b3d5f11bb54d36b55269caf6bc71847753ba
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# How To Contribute
|
2
|
+
|
3
|
+
First of all, **thank you** for contributing to this library!
|
4
|
+
|
5
|
+
## Issues
|
6
|
+
Please file issues on the [GitHub issues list](https://github.com/meducation/meducation_sdk/issues) and give as much detail as possible.
|
7
|
+
|
8
|
+
## Features / Pull Requests
|
9
|
+
|
10
|
+
If you want a feature implemented, the best way to get it done is to submit a pull request that implements it. Please make sure it has tests.
|
11
|
+
|
12
|
+
To get the implementation tests to run, you'll need to create a `test/config.yml` file. There's an example to get you started.
|
13
|
+
|
14
|
+
You can run the tests with:
|
15
|
+
|
16
|
+
```
|
17
|
+
bundle exec rake test
|
18
|
+
```
|
19
|
+
|
20
|
+
If you've not contributed to a repository before - this is the accepted pattern to use:
|
21
|
+
|
22
|
+
1. Fork it (big button on Github at the top right)
|
23
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
24
|
+
3. Make your changes (please add tests!)
|
25
|
+
4. Commit your changes (`git commit -am 'Add some feature'`)
|
26
|
+
5. Push to the branch (`git push origin my-new-feature`)
|
27
|
+
6. Create new Pull Request on Github
|
28
|
+
|
29
|
+
Thank you again!
|
30
|
+
:heart: :sparkling_heart: :heart:
|
data/Gemfile
ADDED