ordino_sdk 0.0.6

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: f654d6e2e2ebad46f430b40d5e92ea4342e0baf9
4
+ data.tar.gz: 4c21b0fb5b8437ca000a46d69f7f86623bbb5525
5
+ SHA512:
6
+ metadata.gz: 9efc79240dc2437b051bd96510770cb9044cbd1de2efe6f3e0734b7d04f6c73fa68a9df4f4adf0dcc4d9b2b78046f92f2e95d3be11c435c05bc7b99d19c39b45
7
+ data.tar.gz: a2eb6d45933f94b9fa06653930394a865008f864a5b446697d70593aa1b22027566260c5025cf13e1f1dffd970339bb98a7e2b863bb831479e564fb16ac6dba8
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/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ # 0.0.6 / 2014-06-17
2
+ * [FEATURE] Rename to Ordino
3
+
4
+ # 0.0.5 / 2014-06-16
5
+ * [FEATURE] Added reimport_metadata to resource.
6
+
7
+ # 0.0.4 / 2014-06-13
8
+ * [FEATURE] Added entry and resource.
9
+
10
+ # 0.0.3 / 2014-06-12
11
+ * [FEATURE] Added name to user.
12
+
13
+ # 0.0.2 / 2014-06-10
14
+ * [FEATURE] User Resource based off devise user not meducation used
15
+
16
+ # 0.0.1 / 2014-06-03
17
+ * [FEATURE] Initial Version ported from MeducationSDK
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