tiqav 0.0.4 → 0.0.5
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/History.txt +16 -0
- data/lib/tiqav.rb +1 -2
- metadata +3 -3
data/History.txt
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
=== 0.0.5 2012-06-11
|
|
2
|
+
|
|
3
|
+
* fix require path
|
|
4
|
+
|
|
5
|
+
=== 0.0.4 2012-06-11
|
|
6
|
+
|
|
7
|
+
* add function Tiqav.feeling_lucky
|
|
8
|
+
|
|
9
|
+
=== 0.0.3 2012-06-11
|
|
10
|
+
|
|
11
|
+
* Tiqav::Image#glitch,thumbnail
|
|
12
|
+
|
|
13
|
+
=== 0.0.2 2012-06-11
|
|
14
|
+
|
|
15
|
+
* use http://api.tiqav.com
|
|
16
|
+
|
|
1
17
|
=== 0.0.1 2012-06-09
|
|
2
18
|
|
|
3
19
|
* Search Images, Random Image.
|
data/lib/tiqav.rb
CHANGED
|
@@ -2,7 +2,6 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
|
3
3
|
|
|
4
4
|
require 'net/http'
|
|
5
|
-
require 'uri'
|
|
6
5
|
require 'json'
|
|
7
6
|
require 'addressable/uri'
|
|
8
7
|
require 'tiqav/error'
|
|
@@ -11,5 +10,5 @@ require 'tiqav/search'
|
|
|
11
10
|
require 'tiqav/alpha_num'
|
|
12
11
|
|
|
13
12
|
module Tiqav
|
|
14
|
-
VERSION = '0.0.
|
|
13
|
+
VERSION = '0.0.5'
|
|
15
14
|
end
|
metadata
CHANGED