canvas_connect 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,13 +28,14 @@ module CanvasConnect
28
28
  # Returns nothing.
29
29
  def self.register
30
30
  Rails.configuration.to_prepare do
31
- view_path = File.dirname(__FILE__) + '/../app/views'
31
+ view_path = File.expand_path('../app/views', File.dirname(__FILE__))
32
32
  unless ApplicationController.view_paths.include?(view_path)
33
33
  ApplicationController.view_paths.unshift(view_path)
34
34
  end
35
35
 
36
- ActiveSupport::Dependencies.autoload_paths.unshift(File.dirname(__FILE__) + '/../app/models')
36
+ ActiveSupport::Dependencies.autoload_paths << File.expand_path('../app/models', File.dirname(__FILE__))
37
37
 
38
+ require_dependency File.expand_path('../app/models/adobe_connect_conference.rb', File.dirname(__FILE__))
38
39
  require_dependency "canvas/plugins/validators/adobe_connect_validator"
39
40
  require_dependency "canvas/plugins/adobe_connect"
40
41
 
@@ -1,3 +1,3 @@
1
1
  module CanvasConnect
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canvas_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-18 00:00:00.000000000 Z
12
+ date: 2013-02-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake