Skip to content

Commit 35a6cc2

Browse files
author
Mike Butsko
committed
mysql2
1 parent 50389bd commit 35a6cc2

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# Ignore the default SQLite database.
1111
/db/*.sqlite3
1212

13+
/config/database.yml
14+
1315
# Ignore all logfiles and tempfiles.
1416
/log/*.log
1517
/tmp

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ gem 'rails'
44

55
gem 'sqlite3', :group => [:test, :development]
66

7-
gem 'mysql', :group => [:staging, :production]
7+
gem 'mysql2', :group => [:staging, :production]
8+
9+
gem 'capistrano'
810

911
gem 'json'
1012

Gemfile.lock

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ GEM
3030
multi_json (~> 1.0)
3131
arel (3.0.2)
3232
builder (3.0.0)
33+
capistrano (2.12.0)
34+
highline
35+
net-scp (>= 1.0.0)
36+
net-sftp (>= 2.0.0)
37+
net-ssh (>= 2.0.14)
38+
net-ssh-gateway (>= 1.1.0)
3339
coffee-rails (3.2.2)
3440
coffee-script (>= 2.2.0)
3541
railties (~> 3.2.0)
@@ -40,6 +46,7 @@ GEM
4046
erubis (2.7.0)
4147
execjs (1.4.0)
4248
multi_json (~> 1.0)
49+
highline (1.6.13)
4350
hike (1.2.1)
4451
i18n (0.6.0)
4552
journey (1.0.4)
@@ -53,7 +60,14 @@ GEM
5360
treetop (~> 1.4.8)
5461
mime-types (1.19)
5562
multi_json (1.3.6)
56-
mysql (2.8.1)
63+
mysql2 (0.3.11)
64+
net-scp (1.0.4)
65+
net-ssh (>= 1.99.1)
66+
net-sftp (2.0.5)
67+
net-ssh (>= 2.0.9)
68+
net-ssh (2.5.2)
69+
net-ssh-gateway (1.1.0)
70+
net-ssh (>= 1.99.1)
5771
polyglot (0.3.3)
5872
rack (1.4.1)
5973
rack-cache (1.2)
@@ -104,10 +118,11 @@ PLATFORMS
104118
ruby
105119

106120
DEPENDENCIES
121+
capistrano
107122
coffee-rails
108123
jquery-rails
109124
json
110-
mysql
125+
mysql2
111126
rails
112127
sass-rails
113128
sqlite3

0 commit comments

Comments
 (0)