mason-server 0.0.4 → 0.0.5

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.
@@ -32,7 +32,7 @@ module MasonServer
32
32
  end
33
33
 
34
34
  def run
35
- BuildJob.enqueue(id)
35
+ BuildJob.enqueue(self)
36
36
  end
37
37
 
38
38
  def run!
@@ -8,8 +8,8 @@ module MasonServer
8
8
  Resque.enqueue(self, build.id)
9
9
  end
10
10
 
11
- def self.perform(id)
12
- Build.get!(id).run!
11
+ def self.perform(build_id)
12
+ Build.get!(build_id).run!
13
13
  end
14
14
  end
15
15
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
- s.name = "mason-server"
3
- s.version = "0.0.4"
2
+ s.name = "mason-server"
3
+ s.version = "0.0.5"
4
4
  s.summary = "builds things"
5
5
 
6
6
  s.add_dependency "dm-core", "~>1.0.2"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 4
9
- version: 0.0.4
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors: []
12
12