Upgrade to Rails 4.2.1 - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit a854808fa38ec04cb24b08264908c20bb0015cde
(DIR) parent 598eb2fb1ce09f6c2848f1f5a5514cc498accf51
(HTM) Author: Chee Yeo <ckyeo.1@gmail.com>
Date: Thu, 18 Aug 2016 17:14:14 +0100
Upgrade to Rails 4.2.1
Update Gemfile
Update db/schema.rb
Diffstat:
M Gemfile | 2 +-
M Gemfile.lock | 62 ++++++++++++++++----------------
M db/schema.rb | 24 ++++++++++++------------
3 files changed, 44 insertions(+), 44 deletions(-)
---
(DIR) diff --git a/Gemfile b/Gemfile
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
gem 'unicorn'
-gem 'rails', '4.2.0'
+gem 'rails', '4.2.1'
gem 'pg', '>=0.17'
gem 'jquery-rails', '>= 3.1.2'
(DIR) diff --git a/Gemfile.lock b/Gemfile.lock
@@ -19,36 +19,36 @@ GIT
GEM
remote: https://rubygems.org/
specs:
- actionmailer (4.2.0)
- actionpack (= 4.2.0)
- actionview (= 4.2.0)
- activejob (= 4.2.0)
+ actionmailer (4.2.1)
+ actionpack (= 4.2.1)
+ actionview (= 4.2.1)
+ activejob (= 4.2.1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
- actionpack (4.2.0)
- actionview (= 4.2.0)
- activesupport (= 4.2.0)
- rack (~> 1.6.0)
+ actionpack (4.2.1)
+ actionview (= 4.2.1)
+ activesupport (= 4.2.1)
+ rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.1)
- actionview (4.2.0)
- activesupport (= 4.2.0)
+ actionview (4.2.1)
+ activesupport (= 4.2.1)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.1)
- activejob (4.2.0)
- activesupport (= 4.2.0)
+ activejob (4.2.1)
+ activesupport (= 4.2.1)
globalid (>= 0.3.0)
- activemodel (4.2.0)
- activesupport (= 4.2.0)
+ activemodel (4.2.1)
+ activesupport (= 4.2.1)
builder (~> 3.1)
- activerecord (4.2.0)
- activemodel (= 4.2.0)
- activesupport (= 4.2.0)
+ activerecord (4.2.1)
+ activemodel (= 4.2.1)
+ activesupport (= 4.2.1)
arel (~> 6.0)
- activesupport (4.2.0)
+ activesupport (4.2.1)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
@@ -197,16 +197,16 @@ GEM
rack (1.6.4)
rack-test (0.6.3)
rack (>= 1.0)
- rails (4.2.0)
- actionmailer (= 4.2.0)
- actionpack (= 4.2.0)
- actionview (= 4.2.0)
- activejob (= 4.2.0)
- activemodel (= 4.2.0)
- activerecord (= 4.2.0)
- activesupport (= 4.2.0)
+ rails (4.2.1)
+ actionmailer (= 4.2.1)
+ actionpack (= 4.2.1)
+ actionview (= 4.2.1)
+ activejob (= 4.2.1)
+ activemodel (= 4.2.1)
+ activerecord (= 4.2.1)
+ activesupport (= 4.2.1)
bundler (>= 1.3.0, < 2.0)
- railties (= 4.2.0)
+ railties (= 4.2.1)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
@@ -219,9 +219,9 @@ GEM
rails-settings-cached (0.4.1)
rails (>= 4.0.0)
rails_layout (1.0.29)
- railties (4.2.0)
- actionpack (= 4.2.0)
- activesupport (= 4.2.0)
+ railties (4.2.1)
+ actionpack (= 4.2.1)
+ activesupport (= 4.2.1)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
raindrops (0.16.0)
@@ -345,7 +345,7 @@ DEPENDENCIES
pg (>= 0.17)
protected_attributes (~> 1.0.7)
psych_shield
- rails (= 4.2.0)
+ rails (= 4.2.1)
rails-settings-cached (>= 0.4.1)
rails_layout
reportable!
(DIR) diff --git a/db/schema.rb b/db/schema.rb
@@ -17,7 +17,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
enable_extension "plpgsql"
enable_extension "intarray"
- create_table "call_media", force: true do |t|
+ create_table "call_media", force: :cascade do |t|
t.integer "call_id", null: false
t.integer "project_id", null: false
t.binary "audio"
@@ -32,7 +32,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "call_media", ["call_id"], name: "index_call_media_on_call_id", using: :btree
add_index "call_media", ["project_id"], name: "index_call_media_on_project_id", using: :btree
- create_table "calls", force: true do |t|
+ create_table "calls", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.text "number", null: false
@@ -58,7 +58,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "calls", ["number"], name: "index_calls_on_number", using: :btree
add_index "calls", ["provider_id"], name: "index_calls_on_provider_id", using: :btree
- create_table "jobs", force: true do |t|
+ create_table "jobs", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.integer "project_id", null: false
@@ -76,7 +76,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "jobs", ["project_id"], name: "index_jobs_on_project_id", using: :btree
- create_table "line_attributes", force: true do |t|
+ create_table "line_attributes", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.integer "line_id", null: false
@@ -89,7 +89,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "line_attributes", ["line_id"], name: "index_line_attributes_on_line_id", using: :btree
add_index "line_attributes", ["project_id"], name: "index_line_attributes_on_project_id", using: :btree
- create_table "lines", force: true do |t|
+ create_table "lines", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.text "number", null: false
@@ -101,7 +101,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "lines", ["number"], name: "index_lines_on_number", using: :btree
add_index "lines", ["project_id"], name: "index_lines_on_project_id", using: :btree
- create_table "projects", force: true do |t|
+ create_table "projects", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.text "name", null: false
@@ -111,7 +111,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
t.string "created_by"
end
- create_table "providers", force: true do |t|
+ create_table "providers", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.text "name", null: false
@@ -123,7 +123,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
t.boolean "enabled", default: true
end
- create_table "reportable_cache", force: true do |t|
+ create_table "reportable_cache", force: :cascade do |t|
t.string "model_name", limit: 100, null: false
t.string "report_name", limit: 100, null: false
t.string "grouping", limit: 10, null: false
@@ -138,7 +138,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "reportable_cache", ["model_name", "report_name", "grouping", "aggregation", "conditions", "reporting_period"], name: "name_model_grouping_aggregation_period", unique: true, using: :btree
add_index "reportable_cache", ["model_name", "report_name", "grouping", "aggregation", "conditions"], name: "name_model_grouping_agregation", using: :btree
- create_table "settings", force: true do |t|
+ create_table "settings", force: :cascade do |t|
t.string "var", null: false
t.text "value"
t.integer "thing_id"
@@ -149,14 +149,14 @@ ActiveRecord::Schema.define(version: 20130113004653) do
add_index "settings", ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true, using: :btree
- create_table "signature_fp", force: true do |t|
+ create_table "signature_fp", force: :cascade do |t|
t.integer "signature_id", null: false
t.integer "fprint", array: true
end
add_index "signature_fp", ["signature_id"], name: "index_signature_fp_on_signature_id", using: :btree
- create_table "signatures", force: true do |t|
+ create_table "signatures", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.text "name", null: false
@@ -167,7 +167,7 @@ ActiveRecord::Schema.define(version: 20130113004653) do
t.integer "risk"
end
- create_table "users", force: true do |t|
+ create_table "users", force: :cascade do |t|
t.string "login", null: false
t.string "email"
t.string "crypted_password", null: false