locu_wrapper 0.0.1 → 0.0.2
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/lib/locu_wrapper.rb +4 -4
- data/locu_wrapper-0.0.1.gem +0 -0
- data/locu_wrapper.gemspec +14 -0
- metadata +24 -39
data/lib/locu_wrapper.rb
CHANGED
|
@@ -2,7 +2,7 @@ require 'net/http'
|
|
|
2
2
|
require 'uri'
|
|
3
3
|
require 'json'
|
|
4
4
|
|
|
5
|
-
require '
|
|
6
|
-
require '
|
|
7
|
-
require '
|
|
8
|
-
require '
|
|
5
|
+
require 'locu_wrapper/locu_object'
|
|
6
|
+
require 'locu_wrapper/client'
|
|
7
|
+
require 'locu_wrapper/menu'
|
|
8
|
+
require 'locu_wrapper/venue'
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = "locu_wrapper"
|
|
3
|
+
s.version = "0.0.2"
|
|
4
|
+
s.authors = ["Nathaniel Escribano"]
|
|
5
|
+
s.date = %q{2012-08-09}
|
|
6
|
+
s.description = 'LocuWraper - a really simple locu wrapper'
|
|
7
|
+
s.summary = s.description
|
|
8
|
+
s.email = 'nathanielescribano@gmail.com'
|
|
9
|
+
s.files = `git ls-files`.split("\n")
|
|
10
|
+
|
|
11
|
+
s.homepage = ''
|
|
12
|
+
s.has_rdoc = false
|
|
13
|
+
s.rubyforge_project = 'locu_wrapper'
|
|
14
|
+
end
|
metadata
CHANGED
|
@@ -1,32 +1,22 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: locu_wrapper
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 0
|
|
8
|
-
- 1
|
|
9
|
-
version: 0.0.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Nathaniel Escribano
|
|
13
9
|
autorequire:
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
|
-
|
|
17
|
-
date: 2012-08-09 00:00:00 -07:00
|
|
18
|
-
default_executable:
|
|
12
|
+
date: 2012-08-09 00:00:00.000000000Z
|
|
19
13
|
dependencies: []
|
|
20
|
-
|
|
21
14
|
description: LocuWraper - a really simple locu wrapper
|
|
22
15
|
email: nathanielescribano@gmail.com
|
|
23
16
|
executables: []
|
|
24
|
-
|
|
25
17
|
extensions: []
|
|
26
|
-
|
|
27
18
|
extra_rdoc_files: []
|
|
28
|
-
|
|
29
|
-
files:
|
|
19
|
+
files:
|
|
30
20
|
- README
|
|
31
21
|
- lib/locu_wrapper.rb
|
|
32
22
|
- lib/locu_wrapper/client.rb
|
|
@@ -34,35 +24,30 @@ files:
|
|
|
34
24
|
- lib/locu_wrapper/menu.rb
|
|
35
25
|
- lib/locu_wrapper/venu.rb
|
|
36
26
|
- lib/locu_wrapper/venue.rb
|
|
37
|
-
|
|
38
|
-
|
|
27
|
+
- locu_wrapper-0.0.1.gem
|
|
28
|
+
- locu_wrapper.gemspec
|
|
29
|
+
homepage: ''
|
|
39
30
|
licenses: []
|
|
40
|
-
|
|
41
31
|
post_install_message:
|
|
42
32
|
rdoc_options: []
|
|
43
|
-
|
|
44
|
-
require_paths:
|
|
33
|
+
require_paths:
|
|
45
34
|
- lib
|
|
46
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
requirements:
|
|
55
|
-
- -
|
|
56
|
-
- !ruby/object:Gem::Version
|
|
57
|
-
|
|
58
|
-
- 0
|
|
59
|
-
version: "0"
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
none: false
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
60
47
|
requirements: []
|
|
61
|
-
|
|
62
48
|
rubyforge_project: locu_wrapper
|
|
63
|
-
rubygems_version: 1.
|
|
49
|
+
rubygems_version: 1.8.10
|
|
64
50
|
signing_key:
|
|
65
51
|
specification_version: 3
|
|
66
52
|
summary: LocuWraper - a really simple locu wrapper
|
|
67
53
|
test_files: []
|
|
68
|
-
|