waz-storage 1.0.2 → 1.0.3
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/waz-blobs.rb +1 -1
- data/lib/waz-queues.rb +1 -1
- data/lib/waz-storage.rb +1 -1
- data/lib/waz-tables.rb +1 -1
- data/lib/waz/storage/version.rb +1 -1
- metadata +3 -3
data/lib/waz-blobs.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
$:.unshift(File.dirname(__FILE__))
|
|
2
2
|
require 'waz-storage'
|
|
3
3
|
# Application Files (massive include)
|
|
4
|
-
app_files = File.expand_path(File.join(
|
|
4
|
+
app_files = File.expand_path(File.join(File.dirname(__FILE__), 'waz','blobs', '*.rb'))
|
|
5
5
|
Dir[app_files].each(&method(:load))
|
data/lib/waz-queues.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$:.unshift(File.dirname(__FILE__))
|
|
2
2
|
require 'waz-storage'
|
|
3
3
|
# Application Files (massive include)
|
|
4
|
-
app_files = File.expand_path(File.join(
|
|
4
|
+
app_files = File.expand_path(File.join(File.dirname(__FILE__), 'waz','queues', '*.rb'))
|
|
5
5
|
Dir[app_files].each(&method(:load))
|
|
6
6
|
|
data/lib/waz-storage.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
%w{time cgi base64 rexml/document rexml/xpath restclient hmac-sha2 net/http}.each(&method(:require))
|
|
2
|
-
app_files = File.expand_path(File.join(
|
|
2
|
+
app_files = File.expand_path(File.join(File.dirname(__FILE__), 'waz', 'storage', '*.rb'))
|
|
3
3
|
Dir[app_files].each(&method(:load))
|
|
4
4
|
|
|
5
5
|
# It will depende on which version of Ruby (or if you have Rails)
|
data/lib/waz-tables.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
$:.unshift(File.dirname(__FILE__))
|
|
2
2
|
require 'waz-storage'
|
|
3
3
|
# Application Files (massive include)
|
|
4
|
-
app_files = File.expand_path(File.join(
|
|
4
|
+
app_files = File.expand_path(File.join(File.dirname(__FILE__), 'waz', 'tables', '*.rb'))
|
|
5
5
|
Dir[app_files].each(&method(:load))
|
data/lib/waz/storage/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 3
|
|
9
|
+
version: 1.0.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Johnny G. Halife
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-12-18 00:00:00 -03:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|