summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/build.rb1
-rw-r--r--spec/factories/builds.rb1
-rw-r--r--spec/models/build_spec.rb1
3 files changed, 3 insertions, 0 deletions
diff --git a/app/models/build.rb b/app/models/build.rb
index ee56d3e..62540ca 100644
--- a/app/models/build.rb
+++ b/app/models/build.rb
@@ -14,6 +14,7 @@
# commit_id :integer
# coverage :float
# commands :text
+# options :text
#
class Build < ActiveRecord::Base
diff --git a/spec/factories/builds.rb b/spec/factories/builds.rb
index 5456681..92f9f05 100644
--- a/spec/factories/builds.rb
+++ b/spec/factories/builds.rb
@@ -14,6 +14,7 @@
# commit_id :integer
# coverage :float
# commands :text
+# options :text
#
# Read about factories at https://github.com/thoughtbot/factory_girl
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb
index fd349ab..b7e9672 100644
--- a/spec/models/build_spec.rb
+++ b/spec/models/build_spec.rb
@@ -14,6 +14,7 @@
# commit_id :integer
# coverage :float
# commands :text
+# options :text
#
require 'spec_helper'