Skip to content

Commit 402ff40

Browse files
authored
Merge pull request #300 from jasnow/master
Upgraded 7 gems plus added release number to db migrations
2 parents 78083d9 + 08390b3 commit 402ff40

15 files changed

+21
-22
lines changed

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ GEM
4848
ffi (~> 1.9.10)
4949
rspec-expectations (>= 2.99)
5050
thor (~> 0.19)
51-
ast (2.3.0)
52-
backports (3.11.0)
51+
ast (2.4.0)
52+
backports (3.11.1)
5353
bcrypt (3.1.11)
5454
better_errors (2.4.0)
5555
coderay (>= 1.0.0)
@@ -153,7 +153,7 @@ GEM
153153
railties (>= 4.2.0)
154154
thor (>= 0.14, < 2.0)
155155
json (2.1.0)
156-
kgio (2.11.1)
156+
kgio (2.11.2)
157157
launchy (2.4.3)
158158
addressable (~> 2.3)
159159
libv8 (3.16.14.19)
@@ -170,13 +170,13 @@ GEM
170170
method_source (0.9.0)
171171
mini_mime (1.0.0)
172172
mini_portile2 (2.3.0)
173-
minitest (5.11.1)
173+
minitest (5.11.3)
174174
multi_json (1.13.1)
175175
multi_test (0.1.2)
176176
mysql2 (0.4.10)
177177
nenv (0.3.0)
178178
nio4r (2.2.0)
179-
nokogiri (1.8.1)
179+
nokogiri (1.8.2)
180180
mini_portile2 (~> 2.3.0)
181181
notiffany (0.1.1)
182182
nenv (~> 0.1)
@@ -198,7 +198,7 @@ GEM
198198
pry-rails (0.3.6)
199199
pry (>= 0.10.4)
200200
public_suffix (3.0.1)
201-
rack (2.0.3)
201+
rack (2.0.4)
202202
rack-livereload (0.3.16)
203203
rack
204204
rack-test (0.8.2)
@@ -257,7 +257,7 @@ GEM
257257
rspec-expectations (~> 3.7.0)
258258
rspec-mocks (~> 3.7.0)
259259
rspec-support (~> 3.7.0)
260-
rspec-support (3.7.0)
260+
rspec-support (3.7.1)
261261
rubocop (0.52.1)
262262
parallel (~> 1.10)
263263
parser (>= 2.4.0.2, < 3.0)
@@ -310,7 +310,7 @@ GEM
310310
turbolinks-source (5.1.0)
311311
tzinfo (1.2.4)
312312
thread_safe (~> 0.1)
313-
uglifier (4.1.4)
313+
uglifier (4.1.5)
314314
execjs (>= 0.3.0, < 3)
315315
unicode-display_width (1.3.0)
316316
unicorn (5.4.0)

db/migrate/20130424220355_create_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateUsers < ActiveRecord::Migration
2+
class CreateUsers < ActiveRecord::Migration[4.2]
33
def change
44
create_table :users do |t|
55
t.string :email

db/migrate/20130524222129_create_retirements.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateRetirements < ActiveRecord::Migration
2+
class CreateRetirements < ActiveRecord::Migration[4.2]
33
def change
44
create_table :retirements do |t|
55
t.string :total

db/migrate/20130525001150_create_paid_time_offs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreatePaidTimeOffs < ActiveRecord::Migration
2+
class CreatePaidTimeOffs < ActiveRecord::Migration[4.2]
33
def change
44
create_table :paid_time_offs do |t|
55
t.integer :user_id

db/migrate/20130527165832_create_schedules.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateSchedules < ActiveRecord::Migration
2+
class CreateSchedules < ActiveRecord::Migration[4.2]
33
def change
44
create_table :schedules do |t|
55
t.string :event_type

db/migrate/20130531143853_create_work_infos.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateWorkInfos < ActiveRecord::Migration
2+
class CreateWorkInfos < ActiveRecord::Migration[4.2]
33
def change
44
create_table :work_infos do |t|
55
t.integer :user_id

db/migrate/20130531182058_create_performances.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreatePerformances < ActiveRecord::Migration
2+
class CreatePerformances < ActiveRecord::Migration[4.2]
33
def change
44
create_table :performances do |t|
55
t.integer :user_id

db/migrate/20130708202859_create_benefits.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateBenefits < ActiveRecord::Migration
2+
class CreateBenefits < ActiveRecord::Migration[4.2]
33
def change
44
create_table :benefits do |t|
55

db/migrate/20131011180207_create_messages.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class CreateMessages < ActiveRecord::Migration
2+
class CreateMessages < ActiveRecord::Migration[4.2]
33
def change
44
create_table :messages do |t|
55
t.integer :creator_id

db/migrate/20131112235256_add_encrypted_ssn_to_work_infos.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
2-
class AddEncryptedSsnToWorkInfos < ActiveRecord::Migration
2+
class AddEncryptedSsnToWorkInfos < ActiveRecord::Migration[4.2]
33
def change
44
add_column :work_infos, :encrypted_ssn, :binary
55
end

0 commit comments

Comments
 (0)