punndit_youtube 0.0.1 → 0.0.2

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.
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in simple_youtube.gemspec
3
+ # Specify your gem's dependencies in punndit_youtube.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # SimpleYoutube
1
+ # PunnditYoutube
2
2
 
3
3
  TODO: Write a gem description
4
4
 
@@ -6,7 +6,7 @@ TODO: Write a gem description
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'simple_youtube'
9
+ gem 'punndit_youtube'
10
10
 
11
11
  And then execute:
12
12
 
@@ -14,7 +14,7 @@ And then execute:
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install simple_youtube
17
+ $ gem install punndit_youtube
18
18
 
19
19
  ## Usage
20
20
 
data/Rakefile CHANGED
@@ -2,5 +2,4 @@
2
2
  require "bundler/gem_tasks"
3
3
  require "net/http"
4
4
  require "uri"
5
- require "json"
6
-
5
+ require "json"
@@ -0,0 +1,10 @@
1
+ require "punndit_youtube/version"
2
+ require "punndit_youtube/model/playlist"
3
+ require "punndit_youtube/model/video"
4
+ require "punndit_youtube/model/user"
5
+
6
+ module PunnditYoutube
7
+ # Base error class for the extension
8
+ class Error < RuntimeError
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module PunnditYoutube
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/punndit_youtube/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["David Slone"]
6
+ gem.email = ["dbslone@gmail.com"]
7
+ gem.description = %q{simple_youtube is a Ruby client for parsing the YouTube API v2 using JSON objects. This is a lot cleaner and simpler method than trying to use the XML data provided. As the name implies this is for simple tasks involving YouTube like getting a Playlist, Channel, or single video information. This version does not currently support advances searches on the YouTube API.}
8
+ gem.summary = %q{Ruby client for the YouTube API v2}
9
+ gem.homepage = "http://www.punndit.com"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "punndit_youtube"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = PunnditYoutube::VERSION
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: punndit_youtube
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,11 +11,11 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-08-28 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: ! '%q{simple_youtube is a Ruby client for parsing the YouTube API v2
15
- using JSON objects. This is a lot cleaner and simpler method than trying to use
16
- the XML data provided. As the name implies this is for simple tasks involving YouTube
17
- like getting a Playlist, Channel, or single video information. This version does
18
- not currently support advances searches on the YouTube API.}'
14
+ description: simple_youtube is a Ruby client for parsing the YouTube API v2 using
15
+ JSON objects. This is a lot cleaner and simpler method than trying to use the XML
16
+ data provided. As the name implies this is for simple tasks involving YouTube like
17
+ getting a Playlist, Channel, or single video information. This version does not
18
+ currently support advances searches on the YouTube API.
19
19
  email:
20
20
  - dbslone@gmail.com
21
21
  executables: []
@@ -27,10 +27,10 @@ files:
27
27
  - LICENSE
28
28
  - README.md
29
29
  - Rakefile
30
- - lib/simple_youtube.rb
31
- - lib/simple_youtube/version.rb
32
- - simple_youtube.gemspec
33
- homepage: http://www.dbslone.com
30
+ - lib/punndit_youtube.rb
31
+ - lib/punndit_youtube/version.rb
32
+ - punndit_youtube.gemspec
33
+ homepage: http://www.punndit.com
34
34
  licenses: []
35
35
  post_install_message:
36
36
  rdoc_options: []
@@ -1,12 +0,0 @@
1
- require "simple_youtube/version"
2
- require "simple_youtube/model/playlist"
3
- require "simple_youtube/model/video"
4
- require "simple_youtube/model/user"
5
-
6
- class SimpleYoutube
7
-
8
- # Base error class for the extension
9
- class Error < RuntimeError
10
- end
11
-
12
- end
@@ -1,3 +0,0 @@
1
- class SimpleYoutube
2
- VERSION = "0.0.1"
3
- end
@@ -1,17 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/simple_youtube/version', __FILE__)
3
-
4
- Gem::Specification.new do |gem|
5
- gem.authors = ["David Slone"]
6
- gem.email = ["dbslone@gmail.com"]
7
- gem.description = "%q{simple_youtube is a Ruby client for parsing the YouTube API v2 using JSON objects. This is a lot cleaner and simpler method than trying to use the XML data provided. As the name implies this is for simple tasks involving YouTube like getting a Playlist, Channel, or single video information. This version does not currently support advances searches on the YouTube API.}"
8
- gem.summary = %q{Ruby client for the YouTube API v2}
9
- gem.homepage = "http://www.dbslone.com"
10
-
11
- gem.files = `git ls-files`.split($\)
12
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
- gem.name = "punndit_youtube"
15
- gem.require_paths = ["lib"]
16
- gem.version = SimpleYoutube::VERSION
17
- end