rubykhan 0.0.6 → 0.0.7
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/lib/rubykhan/version.rb +1 -1
- data/rubykhan.gemspec +1 -1
- metadata +2 -9
- data/rubykhan/LICENSE.txt +0 -22
- data/rubykhan/Rakefile +0 -1
- data/rubykhan/lib/rubykhan/version.rb +0 -3
- data/rubykhan/lib/rubykhan.rb +0 -5
- data/rubykhan/rubykhan.gemspec +0 -23
- data/spec/.document +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e226476eef95f1dafd384212eb38dc91757027b0
|
|
4
|
+
data.tar.gz: 1892c9948170796a39df38c40fa38c4009e4bd18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4072e9b1029133b10e3b9c2a5ef12e27c878a252591ccf8dde77aed00b7c1937b01c2e24c37756eba88c576f579d52d87d823925c908bad4d280d34cad114cf4
|
|
7
|
+
data.tar.gz: e2fd395d3567f41f9f2899cf8561869affc3efba6966514a2865eac18fdb10a1bfdcfd77cf6e1ecbd6c2ca0c98fddb78fccca1157db18525d60308f054399851
|
data/lib/rubykhan/version.rb
CHANGED
data/rubykhan.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["abbyghowell@gmail.com", "dancrews@me.com"]
|
|
11
11
|
spec.description = %q{A Ruby wrapper for the Khan Academy API}
|
|
12
12
|
spec.summary = %q{Simplififies API requests}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "https://github.com/DannyCrews/rubykhan"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubykhan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Crews
|
|
@@ -117,17 +117,11 @@ files:
|
|
|
117
117
|
- lib/rubykhan/version.rb
|
|
118
118
|
- lib/topics.rb
|
|
119
119
|
- rubykhan.gemspec
|
|
120
|
-
- rubykhan/LICENSE.txt
|
|
121
|
-
- rubykhan/Rakefile
|
|
122
|
-
- rubykhan/lib/rubykhan.rb
|
|
123
|
-
- rubykhan/lib/rubykhan/version.rb
|
|
124
|
-
- rubykhan/rubykhan.gemspec
|
|
125
|
-
- spec/.document
|
|
126
120
|
- spec/fixtures/probability.json
|
|
127
121
|
- spec/fixtures/topictree.json
|
|
128
122
|
- spec/rubykhan_spec.rb
|
|
129
123
|
- spec/spec_helper.rb
|
|
130
|
-
homepage:
|
|
124
|
+
homepage: https://github.com/DannyCrews/rubykhan
|
|
131
125
|
licenses:
|
|
132
126
|
- MIT
|
|
133
127
|
metadata: {}
|
|
@@ -152,7 +146,6 @@ signing_key:
|
|
|
152
146
|
specification_version: 4
|
|
153
147
|
summary: Simplififies API requests
|
|
154
148
|
test_files:
|
|
155
|
-
- spec/.document
|
|
156
149
|
- spec/fixtures/probability.json
|
|
157
150
|
- spec/fixtures/topictree.json
|
|
158
151
|
- spec/rubykhan_spec.rb
|
data/rubykhan/LICENSE.txt
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2013 Dan Crews
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
-
a copy of this software and associated documentation files (the
|
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
-
the following conditions:
|
|
12
|
-
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
|
14
|
-
included in all copies or substantial portions of the Software.
|
|
15
|
-
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/rubykhan/Rakefile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require "bundler/gem_tasks"
|
data/rubykhan/lib/rubykhan.rb
DELETED
data/rubykhan/rubykhan.gemspec
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'rubykhan/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "rubykhan"
|
|
8
|
-
spec.version = Rubykhan::VERSION
|
|
9
|
-
spec.authors = ["Dan Crews"]
|
|
10
|
-
spec.email = ["dancrews@me.com"]
|
|
11
|
-
spec.description = %q{TODO: Write a gem description}
|
|
12
|
-
spec.summary = %q{TODO: Write a gem summary}
|
|
13
|
-
spec.homepage = ""
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
|
|
16
|
-
spec.files = `git ls-files`.split($/)
|
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
|
-
spec.add_development_dependency "rake"
|
|
23
|
-
end
|