avaticon 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/README.rdoc +37 -0
- data/Rakefile +142 -0
- data/lib/avaticon.rb +104 -0
- data/lib/siteinfo.json +66 -0
- data/test/avaticon_test.rb +48 -0
- data/test/html/flickr_kusaker +829 -0
- data/test/html/github_kzys +631 -0
- data/test/html/hatena_swdyh +67 -0
- data/test/html/lastfm_youpy +1666 -0
- data/test/html/nowa_yuiseki +524 -0
- data/test/html/turnyournameintoaface_ucnv +32 -0
- data/test/html/twitter_swdyh +1172 -0
- data/test/html/wassr_kotoriko +1276 -0
- data/test/test_helper.rb +3 -0
- metadata +88 -0
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: avaticon
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.6
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- swdyh
|
8
|
+
autorequire: ""
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-09-26 00:00:00 +09:00
|
13
|
+
default_executable:
|
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.6"
|
24
|
+
version:
|
25
|
+
description: A library for getting web service user icon.
|
26
|
+
email: ""
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.rdoc
|
33
|
+
- ChangeLog
|
34
|
+
files:
|
35
|
+
- README.rdoc
|
36
|
+
- ChangeLog
|
37
|
+
- Rakefile
|
38
|
+
- test/avaticon_test.rb
|
39
|
+
- test/html/flickr_kusaker
|
40
|
+
- test/html/github_kzys
|
41
|
+
- test/html/hatena_swdyh
|
42
|
+
- test/html/lastfm_youpy
|
43
|
+
- test/html/nowa_yuiseki
|
44
|
+
- test/html/turnyournameintoaface_ucnv
|
45
|
+
- test/html/twitter_swdyh
|
46
|
+
- test/html/wassr_kotoriko
|
47
|
+
- test/test_helper.rb
|
48
|
+
- lib/avaticon.rb
|
49
|
+
- lib/siteinfo.json
|
50
|
+
has_rdoc: true
|
51
|
+
homepage: http://avaticon.rubyforge.org
|
52
|
+
licenses: []
|
53
|
+
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options:
|
56
|
+
- --title
|
57
|
+
- avaticon documentation
|
58
|
+
- --charset
|
59
|
+
- utf-8
|
60
|
+
- --line-numbers
|
61
|
+
- --main
|
62
|
+
- README.rdoc
|
63
|
+
- --inline-source
|
64
|
+
- --exclude
|
65
|
+
- ^(examples|extras)/
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: "0"
|
73
|
+
version:
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
requirements: []
|
81
|
+
|
82
|
+
rubyforge_project: avaticon
|
83
|
+
rubygems_version: 1.3.5
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: A library for getting web service user icon.
|
87
|
+
test_files:
|
88
|
+
- test/test_helper.rb
|