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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47f836f3c39c2d08cb0486e8bc290cabb8cd5a2a
4
- data.tar.gz: 60d3dd01611db3148667d40280961b6ba030a476
3
+ metadata.gz: e226476eef95f1dafd384212eb38dc91757027b0
4
+ data.tar.gz: 1892c9948170796a39df38c40fa38c4009e4bd18
5
5
  SHA512:
6
- metadata.gz: fd30376f1af46f179c769d4070292bf77ae1da3c1aebe97ad299108a74b9133c0e990a2524821a00852c72664e665976383a38cef1a78a27ced9ddd583ae7336
7
- data.tar.gz: 31f1f80dd0ab784c687040be72afb4725cc7533a9b08acba97728e9af692ede521e916595c5cc3e4c0a756f9f65647eba937d44d8a9a565b910d5f35a00e2d87
6
+ metadata.gz: 4072e9b1029133b10e3b9c2a5ef12e27c878a252591ccf8dde77aed00b7c1937b01c2e24c37756eba88c576f579d52d87d823925c908bad4d280d34cad114cf4
7
+ data.tar.gz: e2fd395d3567f41f9f2899cf8561869affc3efba6966514a2865eac18fdb10a1bfdcfd77cf6e1ecbd6c2ca0c98fddb78fccca1157db18525d60308f054399851
@@ -1,3 +1,3 @@
1
1
  module Rubykhan
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
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.6
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"
@@ -1,3 +0,0 @@
1
- module Rubykhan
2
- VERSION = "0.0.1"
3
- end
@@ -1,5 +0,0 @@
1
- require "rubykhan/version"
2
-
3
- module Rubykhan
4
- # Your code goes here...
5
- end
@@ -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
data/spec/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt