waz-storage 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
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('lib', 'waz', 'blobs', '*.rb'))
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('lib', 'waz', 'queues', '*.rb'))
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('lib', 'waz', 'storage', '*.rb'))
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('lib', 'waz', 'tables', '*.rb'))
4
+ app_files = File.expand_path(File.join(File.dirname(__FILE__), 'waz', 'tables', '*.rb'))
5
5
  Dir[app_files].each(&method(:load))
@@ -3,7 +3,7 @@ module WAZ
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = '1'
5
5
  MINOR = '0'
6
- TINY = '2'
6
+ TINY = '3'
7
7
  end
8
8
 
9
9
  Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY].compact * '.'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 2
9
- version: 1.0.2
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-10-02 00:00:00 -03:00
17
+ date: 2010-12-18 00:00:00 -03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency