Skip to content

Commit 3b6526b

Browse files
committed
added mysql gem
1 parent 08aa955 commit 3b6526b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source 'https://rubygems.org'
22
gem 'sinatra'
33
gem 'sinatra-subdomain'
44
gem 'json'
5-
gem 'neatjson'
65
gem 'sequel'
6+
gem 'mysql2'

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GEM
33
specs:
44
json (2.1.0)
55
mustermann (1.0.0)
6-
neatjson (0.8.3)
6+
mysql2 (0.4.6)
77
rack (2.0.3)
88
rack-protection (2.0.0)
99
rack
@@ -22,7 +22,7 @@ PLATFORMS
2222

2323
DEPENDENCIES
2424
json
25-
neatjson
25+
mysql2
2626
sequel
2727
sinatra
2828
sinatra-subdomain

app.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
require 'sinatra/subdomain'
55
require 'json'
66
require 'date'
7+
require 'mysql2'
78
require 'sequel'
89
require './data/company_info.rb'
910
require './data/falcon9.rb'

0 commit comments

Comments
 (0)