cloud-crowd 0.7.2.pre → 0.7.2.pre2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9e74473f191d5e59232845fb04e2d0961f783bb
4
- data.tar.gz: 6e3ef77f35dfb2b453d31653d510dc22a00c0d09
3
+ metadata.gz: 52dd0cc70040d2355b346798e7f7b4a68fc20790
4
+ data.tar.gz: a86c0faa035fa9872c9fe19d389bdc7f96ea6213
5
5
  SHA512:
6
- metadata.gz: b1ab696032f37e92434080ab93d823e0062de027f0db79508f5950c2628bd65ccd30742da5d4ec2317fe82a42403f810cf2f7d82f9cc8eef0f04fec02f4bb40d
7
- data.tar.gz: d83a98cdc4d0d76588ca80cf6997abffea5916bab3be17205bdeda2b07b67625c44de959a2b7ef2efc3004d3b1b1339925da0790bd1b28d0e0d572491b017515
6
+ metadata.gz: 26f4e373c3d11637ebb3276a64987f8df8f0b3aa507f90d8ffffbef910fe0e2da58f07d8caaff4bc50c0a4fdec29c1890f12059447d71a2bffdf88810c5d798c
7
+ data.tar.gz: dcde328b2667fac7c16b5c186a683ee3d79ff9df476b082a83257897f672b45e0b8c2d5b3f5df673694960da4a2233ba2874cc2f2e3ce7b1c3e668964d6a5948
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'cloud-crowd'
3
- s.version = '0.7.2.pre' # Keep version in sync with cloud-cloud.rb
3
+ s.version = '0.7.2.pre2' # Keep version in sync with cloud-cloud.rb
4
4
  s.date = '2014-04-06'
5
5
 
6
6
  s.homepage = "http://wiki.github.com/documentcloud/cloud-crowd"
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
34
34
  s.add_dependency 'json', ['>= 1.1.7']
35
35
  s.add_dependency 'rest-client', ['>= 1.4']
36
36
  s.add_dependency 'thin', ['>= 1.2.4']
37
- s.add_dependency 'rake'
37
+ s.add_dependency 'rake'
38
38
 
39
39
  if s.respond_to?(:add_development_dependency)
40
40
  s.add_development_dependency 'faker', ['>= 0.3.1']
@@ -100,6 +100,10 @@ module CloudCrowd
100
100
  @config_path = File.expand_path(File.dirname(config_path))
101
101
  @config = YAML.load(ERB.new(File.read(config_path)).result)
102
102
  @config[:work_unit_retries] ||= MIN_RETRIES
103
+ if @config[:actions_path]
104
+ path = Pathname.new( @config[:actions_path] ).realpath
105
+ $LOAD_PATH.unshift( path ) unless $LOAD_PATH.include?( path )
106
+ end
103
107
  end
104
108
 
105
109
  # Configure the CloudCrowd central database (and connect to it), by passing
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud-crowd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2.pre
4
+ version: 0.7.2.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Ashkenas