dolphindeploy 0.0.2-universal-dotnet → 0.0.3-universal-dotnet

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.
@@ -9,7 +9,7 @@ end
9
9
 
10
10
  class Deployment
11
11
  def self.load
12
- conf = File.join(File.dirname(__FILE__), '..\deploy.conf')
12
+ conf = "deploy.conf"
13
13
  @deployment = DeploymentConfig.new(conf)
14
14
  end
15
15
  end
data/lib/dolphindeploy.rb CHANGED
@@ -1,9 +1,11 @@
1
1
  raise Exception, "Dolphin Deploy is only supported on IronRuby" unless Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == 'ironruby'
2
2
 
3
- $: << 'lib\configured_as'
4
- $: << 'lib\IIS'
3
+ $: << File.join(File.dirname(__FILE__), 'configured_as')
4
+ $: << File.join(File.dirname(__FILE__), 'IIS')
5
+ $: << File.join(File.dirname(__FILE__), '../external')
5
6
  require 'rubygems' #FIX: Apprantly this is bad practice
6
7
  require 'digest'
8
+ require 'mvc_deployment'
7
9
  require 'deploymentconfig'
8
10
  require 'deploycommandcreator'
9
11
  require 'IIS'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dolphindeploy
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: universal-dotnet
12
12
  authors:
13
13
  - Ben Hall