daily 0.0.7 → 0.0.8

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.
@@ -54,14 +54,15 @@ module DailyConfig
54
54
  end
55
55
 
56
56
  def load_classes
57
- Dir[Rails.root.join("app/transforms/*")].each { |f| require_dependency f }
58
- Dir[Rails.root.join("app/formatters/*")].each { |f| require_dependency f }
59
- Dir[Rails.root.join("app/metrics/*")].each { |f| require_dependency f }
57
+ Dir[Rails.root.join("app/transforms/**/*.rb")].each { |f| require_dependency f }
58
+ Dir[Rails.root.join("app/formatters/**/*.rb")].each { |f| require_dependency f }
59
+ Dir[Rails.root.join("app/metrics/**/*.rb")].each { |f| require_dependency f }
60
60
 
61
61
  if defined? Daily::Engine
62
- Dir[Daily::Engine.root.join("app/transforms/*")].each { |f| require_dependency f }
63
- Dir[Daily::Engine.root.join("app/formatters/*")].each { |f| require_dependency f }
64
- Dir[Daily::Engine.root.join("app/metrics/*")].each { |f| require_dependency f }
62
+ Dir[Daily::Engine.root.join("app/transforms/**/*.rb")].each { |f| require_dependency f }
63
+ Dir[Daily::Engine.root.join("app/formatters/**/*.rb")].each { |f| require_dependency f }
64
+ Dir[Daily::Engine.root.join("app/metrics/**/*.rb")].each { |f| require_dependency f }
65
+ Dir[Daily::Engine.root.join("lib/**/*.rb")].each { |f| require_dependency f }
65
66
  end
66
67
  end
67
68
 
@@ -1,3 +1,3 @@
1
1
  module Daily
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daily
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
9
+ - 8
10
+ version: 0.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brian Leonard
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-01-12 00:00:00 -08:00
18
+ date: 2012-01-13 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency