rbwowhead 0.0.1
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/.gitignore +3 -0
- data/Gemfile +4 -0
- data/README.mdown +16 -0
- data/Rakefile +2 -0
- data/lib/rbwowhead.rb +3 -0
- data/lib/rbwowhead/version.rb +3 -0
- data/rbwowhead.gemspec +22 -0
- metadata +91 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.mdown
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Rbwowhead #
|
|
2
|
+
|
|
3
|
+
Rbwowhead is a library for [Wowhead](http://www.wowhead.com/)
|
|
4
|
+
|
|
5
|
+
## Usage ##
|
|
6
|
+
|
|
7
|
+
You can't use rbwowhead now. It's not ready.
|
|
8
|
+
|
|
9
|
+
## Installation ##
|
|
10
|
+
|
|
11
|
+
Rbwowhead can be installed through RubyGems using the command below:
|
|
12
|
+
gem install rbwowhead
|
|
13
|
+
|
|
14
|
+
## Author ##
|
|
15
|
+
|
|
16
|
+
Originally written by Francesco Ceccon (francesco.cek[at]me.com)
|
data/Rakefile
ADDED
data/lib/rbwowhead.rb
ADDED
data/rbwowhead.gemspec
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
require File.expand_path("../lib/rbwowhead/version", __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.name = "rbwowhead"
|
|
6
|
+
s.version = Rbwowhead::VERSION
|
|
7
|
+
s.platform = Gem::Platform::RUBY
|
|
8
|
+
s.authors = ["Francesco Ceccon"]
|
|
9
|
+
s.email = ["francesco.cek@me.com"]
|
|
10
|
+
s.homepage = "http://rubygems.org/gems/rbwowhead"
|
|
11
|
+
s.summary = "Wowhead gem"
|
|
12
|
+
s.description = "You can search items on Wowhead"
|
|
13
|
+
|
|
14
|
+
s.required_rubygems_version = ">= 1.3.6"
|
|
15
|
+
s.rubyforge_project = "rbwowhead"
|
|
16
|
+
|
|
17
|
+
s.add_development_dependency "bundler", ">= 1.0.0"
|
|
18
|
+
|
|
19
|
+
s.files = `git ls-files`.split("\n")
|
|
20
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
|
21
|
+
s.require_path = 'lib'
|
|
22
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rbwowhead
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Francesco Ceccon
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-10-30 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: bundler
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 23
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 0
|
|
33
|
+
- 0
|
|
34
|
+
version: 1.0.0
|
|
35
|
+
type: :development
|
|
36
|
+
version_requirements: *id001
|
|
37
|
+
description: You can search items on Wowhead
|
|
38
|
+
email:
|
|
39
|
+
- francesco.cek@me.com
|
|
40
|
+
executables: []
|
|
41
|
+
|
|
42
|
+
extensions: []
|
|
43
|
+
|
|
44
|
+
extra_rdoc_files: []
|
|
45
|
+
|
|
46
|
+
files:
|
|
47
|
+
- .gitignore
|
|
48
|
+
- Gemfile
|
|
49
|
+
- README.mdown
|
|
50
|
+
- Rakefile
|
|
51
|
+
- lib/rbwowhead.rb
|
|
52
|
+
- lib/rbwowhead/version.rb
|
|
53
|
+
- rbwowhead.gemspec
|
|
54
|
+
has_rdoc: true
|
|
55
|
+
homepage: http://rubygems.org/gems/rbwowhead
|
|
56
|
+
licenses: []
|
|
57
|
+
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options: []
|
|
60
|
+
|
|
61
|
+
require_paths:
|
|
62
|
+
- lib
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
none: false
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
hash: 3
|
|
69
|
+
segments:
|
|
70
|
+
- 0
|
|
71
|
+
version: "0"
|
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
hash: 23
|
|
78
|
+
segments:
|
|
79
|
+
- 1
|
|
80
|
+
- 3
|
|
81
|
+
- 6
|
|
82
|
+
version: 1.3.6
|
|
83
|
+
requirements: []
|
|
84
|
+
|
|
85
|
+
rubyforge_project: rbwowhead
|
|
86
|
+
rubygems_version: 1.3.7
|
|
87
|
+
signing_key:
|
|
88
|
+
specification_version: 3
|
|
89
|
+
summary: Wowhead gem
|
|
90
|
+
test_files: []
|
|
91
|
+
|