gemfile updates
This commit is contained in:
parent
4ed2603665
commit
910bd149a5
2 changed files with 14 additions and 0 deletions
10
Gemfile
10
Gemfile
|
@ -1,7 +1,17 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
ruby '2.0.0'
|
||||||
|
|
||||||
gem "rack"
|
gem "rack"
|
||||||
gem "sinatra"
|
gem "sinatra"
|
||||||
gem "sequel"
|
gem "sequel"
|
||||||
gem "anybase"
|
gem "anybase"
|
||||||
gem "aws-s3"
|
gem "aws-s3"
|
||||||
|
|
||||||
|
group :development do
|
||||||
|
gem "sqlite3"
|
||||||
|
end
|
||||||
|
|
||||||
|
group :production do
|
||||||
|
gem "pg"
|
||||||
|
end
|
||||||
|
|
|
@ -8,6 +8,7 @@ GEM
|
||||||
xml-simple
|
xml-simple
|
||||||
builder (3.2.2)
|
builder (3.2.2)
|
||||||
mime-types (2.3)
|
mime-types (2.3)
|
||||||
|
pg (0.17.1)
|
||||||
rack (1.5.2)
|
rack (1.5.2)
|
||||||
rack-protection (1.5.3)
|
rack-protection (1.5.3)
|
||||||
rack
|
rack
|
||||||
|
@ -16,6 +17,7 @@ GEM
|
||||||
rack (~> 1.4)
|
rack (~> 1.4)
|
||||||
rack-protection (~> 1.4)
|
rack-protection (~> 1.4)
|
||||||
tilt (~> 1.3, >= 1.3.4)
|
tilt (~> 1.3, >= 1.3.4)
|
||||||
|
sqlite3 (1.3.9)
|
||||||
tilt (1.4.1)
|
tilt (1.4.1)
|
||||||
xml-simple (1.1.4)
|
xml-simple (1.1.4)
|
||||||
|
|
||||||
|
@ -25,6 +27,8 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
anybase
|
anybase
|
||||||
aws-s3
|
aws-s3
|
||||||
|
pg
|
||||||
rack
|
rack
|
||||||
sequel
|
sequel
|
||||||
sinatra
|
sinatra
|
||||||
|
sqlite3
|
||||||
|
|
Loading…
Reference in a new issue