yanapi 0.1.1 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,23 +0,0 @@
1
- = YANAPI
2
-
3
- * {RubyGems}[http://rubygems.org/gems/yanapi]
4
- * Developers {Homepage}[http://www.uni-trier.de/index.php?id=24140]
5
- * {YANAPI Project Page}[http://yanapi.rubyforge.org/]
6
-
7
- == DESCRIPTION
8
-
9
- YANAPI is an API for Yahoo! Answers web services.
10
-
11
- == SYNOPSIS
12
- $ require 'yanapi'
13
- $ params = {:query => 'car', :appid => 'YahooDemo'}
14
- $ api = YANAPI::TermQuery.new(params)
15
- $ api.get # => default xml structure
16
-
17
- See RDOC documentation for details on particular methods.
18
-
19
- == LICENSE
20
-
21
- YANAPI is a copyrighted software by Andrei Beliankou, 2011.
22
- You may use, redistribute and change it under the terms
23
- provided in the LICENSE file.
data/Rakefile DELETED
@@ -1,14 +0,0 @@
1
- require 'rubygems'
2
- require 'rake'
3
- # we can require 'rake/clean' to add 'clobber' and 'clean' tasks
4
- require 'rake/clean'
5
- require 'rake/testtask'
6
-
7
-
8
- SRC = FileList['**/*.rb']
9
-
10
- CLOBBER.include('doc', '**/*.html', '**/*.gem')
11
-
12
- Rake::TestTask.new do |t|
13
- t.test_files = FileList.new('test/test_yanapi.rb')
14
- end