sushi_fabric 0.0.6 → 0.0.7

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.
@@ -0,0 +1,7 @@
1
+ SushiFabric::Application.configure do
2
+ # sushi_fabric
3
+ config.workflow_manager = 'druby://localhost:12345'
4
+ config.gstore_dir = File.join(Dir.pwd, 'public/gstore/projects')
5
+ config.sushi_app_dir = Dir.pwd
6
+ config.scratch_dir = '/tmp/scratch'
7
+ end
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: utf-8
3
- # Version = '20131111-112007'
3
+ # Version = '20131111-113448'
4
4
 
5
5
  require 'csv'
6
6
  require 'fileutils'
@@ -13,7 +13,7 @@ module SushiFabric
13
13
  class Application < Rails::Application
14
14
  # default parameters
15
15
  config.workflow_manager = 'druby://localhost:12345'
16
- config.gstore_dir = File.join(Dir.pwd, 'gstore/projects')
16
+ config.gstore_dir = File.join(Dir.pwd, 'public/gstore/projects')
17
17
  config.sushi_app_dir = Dir.pwd
18
18
  config.scratch_dir = '/tmp/scratch'
19
19
  end
@@ -1,3 +1,3 @@
1
1
  module SushiFabric
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sushi_fabric
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -56,6 +56,7 @@ files:
56
56
  - LICENSE.txt
57
57
  - README.md
58
58
  - Rakefile
59
+ - config/environments/development.rb
59
60
  - lib/sushi_fabric/sushiApp.rb
60
61
  - lib/sushi_fabric/version.rb
61
62
  - lib/sushi_fabric.rb