meducation_sdk 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ log/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ script:
5
+ - bundle exec rake test
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
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in meducation_sdk.gemspec
4
+ gemspec