binder_sdk 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +2 -0
- data/CONTRIBUTING.md +30 -0
- data/Gemfile +4 -0
- data/LICENCE.md +617 -0
- data/README.md +72 -0
- data/Rakefile +8 -0
- data/binder_sdk.gemspec +29 -0
- data/lib/binder_sdk/configuration.rb +43 -0
- data/lib/binder_sdk/email_shortcodes.rb +6 -0
- data/lib/binder_sdk/helpers.rb +27 -0
- data/lib/binder_sdk/mocker.rb +72 -0
- data/lib/binder_sdk/resource.rb +26 -0
- data/lib/binder_sdk/resources/user.rb +23 -0
- data/lib/binder_sdk/version.rb +3 -0
- data/lib/binder_sdk.rb +25 -0
- data/test/arbitary_test.rb +9 -0
- data/test/configuration_test.rb +51 -0
- data/test/mocker_test.rb +34 -0
- data/test/resource_test.rb +30 -0
- data/test/resources/user_test.rb +10 -0
- data/test/test_helper.rb +29 -0
- metadata +171 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2d3d5060275eac677ccdcd4a6c81b4d5ba1ed405
|
4
|
+
data.tar.gz: fbb65be79bc5a3780e08bf54bb337d3faa40d0e2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 81049dcc8d1af51204dc0584b26d2f327a549b5130c20da6b48de52ec1f817f08e81b15ae209013981ecdbee8b6ad618f7f86bdd38e68c93995137310dce8d56
|
7
|
+
data.tar.gz: 76b8d71d79b9524ab10b128652ba734bf6c5319ebfd41e8300f01a920a952a33263e342c5212c14a0c2a0660772365a3727be4fdc1834a7d87dd5558269c4de6
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
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