howcast-howcast 0.4.8 → 0.4.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/CHANGELOG +4 -0
  2. data/Manifest +0 -1
  3. data/README.markdown +1 -1
  4. data/Rakefile +3 -2
  5. data/howcast.gemspec +7 -1
  6. metadata +22 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.4.9 2009-08-19
2
+
3
+ * require hpricot, update readme
4
+
1
5
  == 0.4.8 2009-08-19
2
6
 
3
7
  * Move gem to github, use echoe to clean up configuration, remove dependency on hpricot
data/Manifest CHANGED
@@ -1,5 +1,4 @@
1
1
  CHANGELOG
2
- howcast.gemspec
3
2
  lib/howcast/client/base.rb
4
3
  lib/howcast/client/category.rb
5
4
  lib/howcast/client/search.rb
@@ -6,7 +6,7 @@ Author: Jingshen Jimmy Zhang <jimmy@howcast.com>
6
6
 
7
7
  ## Installing
8
8
 
9
- sudo gem install howcast
9
+ sudo gem install howcast-howcast
10
10
 
11
11
  ## Example
12
12
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('howcast', '0.4.8') do |x|
5
+ Echoe.new('howcast', '0.4.9') do |x|
6
6
  x.summary = "Howcast API Ruby Wrapper"
7
7
  x.description = <<-EOS
8
8
  Howcast offers an Application Programming Interface (API) which allows developers to build applications that interface with Howcast. The Howcast API is RESTful (REpresentational State Transfer) and users of this API will be able: 1) Retreive detailed information about a single video, including metadata such as title, description, video views, rating etc; 2) Retrieve a list of videos restricted by a set of filters offered by Howcast and sorted using several metrics that you can specify (most recent, most views, etc); 3) Search for video; 4) And much more. Note: Before you can use our APIs, you must register an API key, that is submitted with each request.
@@ -11,7 +11,8 @@ Echoe.new('howcast', '0.4.8') do |x|
11
11
  x.author = "Jingshen Jimmy Zhang"
12
12
  x.email = "jimmy@howcast.com"
13
13
  x.ignore_pattern = ["tmp/*", "script/*"]
14
- x.development_dependencies = []
14
+ x.runtime_dependencies = ['hpricot']
15
+ x.development_dependencies = ['hpricot']
15
16
  end
16
17
 
17
18
  Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{howcast}
5
- s.version = "0.4.8"
5
+ s.version = "0.4.9"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jingshen Jimmy Zhang"]
@@ -24,8 +24,14 @@ Gem::Specification.new do |s|
24
24
  s.specification_version = 3
25
25
 
26
26
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
28
+ s.add_development_dependency(%q<hpricot>, [">= 0"])
27
29
  else
30
+ s.add_dependency(%q<hpricot>, [">= 0"])
31
+ s.add_dependency(%q<hpricot>, [">= 0"])
28
32
  end
29
33
  else
34
+ s.add_dependency(%q<hpricot>, [">= 0"])
35
+ s.add_dependency(%q<hpricot>, [">= 0"])
30
36
  end
31
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: howcast-howcast
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jingshen Jimmy Zhang
@@ -11,8 +11,27 @@ cert_chain: []
11
11
 
12
12
  date: 2009-08-19 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hpricot
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: hpricot
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
16
35
  description: "Howcast offers an Application Programming Interface (API) which allows developers to build applications that interface with Howcast. The Howcast API is RESTful (REpresentational State Transfer) and users of this API will be able: 1) Retreive detailed information about a single video, including metadata such as title, description, video views, rating etc; 2) Retrieve a list of videos restricted by a set of filters offered by Howcast and sorted using several metrics that you can specify (most recent, most views, etc); 3) Search for video; 4) And much more. Note: Before you can use our APIs, you must register an API key, that is submitted with each request."
17
36
  email: jimmy@howcast.com
18
37
  executables: []