howkast 0.0.0

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.
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Howkast" do
4
+ #it "fails" do
5
+ # fail "hey buddy, you should probably rename this file and start specing for real"
6
+ #end
7
+ end
@@ -0,0 +1,13 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'howkast'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+
11
+ RSpec.configure do |config|
12
+
13
+ end
metadata ADDED
@@ -0,0 +1,199 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: howkast
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 0
9
+ version: 0.0.0
10
+ platform: ruby
11
+ authors:
12
+ - Juris Galang
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-01-03 00:00:00 -08:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 2
29
+ - 3
30
+ - 0
31
+ version: 2.3.0
32
+ type: :development
33
+ prerelease: false
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: yard
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ~>
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 0
44
+ - 6
45
+ - 0
46
+ version: 0.6.0
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: cucumber
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ type: :development
61
+ prerelease: false
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: bundler
65
+ requirement: &id004 !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 1
72
+ - 0
73
+ - 0
74
+ version: 1.0.0
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: *id004
78
+ - !ruby/object:Gem::Dependency
79
+ name: jeweler
80
+ requirement: &id005 !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ segments:
86
+ - 1
87
+ - 5
88
+ - 2
89
+ version: 1.5.2
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: *id005
93
+ - !ruby/object:Gem::Dependency
94
+ name: rcov
95
+ requirement: &id006 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: *id006
106
+ description: "\n This gem implements Ruby bindings for the [Howcast](http://howcast.com) API\n Howcast empowers people with engaging, useful how-to information wherever, whenever they need to know how.\n "
107
+ email: jurisgalang@gmail.com
108
+ executables: []
109
+
110
+ extensions: []
111
+
112
+ extra_rdoc_files:
113
+ - README.md
114
+ files:
115
+ - .document
116
+ - .rspec
117
+ - GPL-LICENSE
118
+ - Gemfile
119
+ - Gemfile.lock
120
+ - MIT-LICENSE
121
+ - README.md
122
+ - RELEASENOTES
123
+ - Rakefile
124
+ - VERSION
125
+ - features/howkast.feature
126
+ - features/step_definitions/howkast_steps.rb
127
+ - features/support/env.rb
128
+ - howkast.gemspec
129
+ - lib/howkast.rb
130
+ - lib/howkast/api.rb
131
+ - lib/howkast/base.rb
132
+ - lib/howkast/configuration.rb
133
+ - lib/howkast/errors.rb
134
+ - lib/howkast/ext/icebox.rb
135
+ - lib/howkast/ext/string.rb
136
+ - lib/howkast/model.rb
137
+ - lib/howkast/processors/base.rb
138
+ - lib/howkast/processors/categories.rb
139
+ - lib/howkast/processors/playlists.rb
140
+ - lib/howkast/processors/search.rb
141
+ - lib/howkast/processors/users.rb
142
+ - lib/howkast/processors/videos.rb
143
+ - sample/adhoc.rb
144
+ - sample/quickstart.rb
145
+ - spec/howkast/api_service_spec.rb
146
+ - spec/howkast/api_spec.rb
147
+ - spec/howkast/model_spec.rb
148
+ - spec/howkast/processors/categories_spec.rb
149
+ - spec/howkast/processors/playlists_spec.rb
150
+ - spec/howkast/processors/search_spec.rb
151
+ - spec/howkast/processors/users_spec.rb
152
+ - spec/howkast/processors/videos_spec.rb
153
+ - spec/howkast_spec.rb
154
+ - spec/spec_helper.rb
155
+ has_rdoc: true
156
+ homepage: http://github.com/jurisgalang/howkast
157
+ licenses:
158
+ - - MIT
159
+ - GPL
160
+ post_install_message:
161
+ rdoc_options: []
162
+
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ none: false
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ hash: -371204580777301459
171
+ segments:
172
+ - 0
173
+ version: "0"
174
+ required_rubygems_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ segments:
180
+ - 0
181
+ version: "0"
182
+ requirements: []
183
+
184
+ rubyforge_project:
185
+ rubygems_version: 1.3.7
186
+ signing_key:
187
+ specification_version: 3
188
+ summary: Ruby bindings for the [Howcast](http://howcast.com) API
189
+ test_files:
190
+ - spec/howkast/api_service_spec.rb
191
+ - spec/howkast/api_spec.rb
192
+ - spec/howkast/model_spec.rb
193
+ - spec/howkast/processors/categories_spec.rb
194
+ - spec/howkast/processors/playlists_spec.rb
195
+ - spec/howkast/processors/search_spec.rb
196
+ - spec/howkast/processors/users_spec.rb
197
+ - spec/howkast/processors/videos_spec.rb
198
+ - spec/howkast_spec.rb
199
+ - spec/spec_helper.rb