Browse Source

Remove redundant gems (e.g. sqlite)

tags/last-sinatra-version
Adrian Short 11 years ago
parent
commit
37d3805187
2 changed files with 30 additions and 28 deletions
  1. +4
    -5
      Gemfile
  2. +26
    -23
      Gemfile.lock

+ 4
- 5
Gemfile View File

@@ -1,16 +1,15 @@
source :rubygems
source "https://rubygems.org/"

gem 'sinatra'
gem 'haml'
gem 'data_mapper'
#gem 'pat', :git => 'git://github.com/reggieb/pat.git'
#gem 'sinatra-helpers', :git => 'git://github.com/sbfaulkner/sinatra-helpers.git'
gem 'dm-postgres-adapter'
gem 'pg'

group :development do
gem 'shotgun'
gem 'dm-sqlite-adapter'
gem 'taps'
end

group :production do
gem 'dm-postgres-adapter'
end

+ 26
- 23
Gemfile.lock View File

@@ -1,5 +1,5 @@
GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
addressable (2.2.8)
bcrypt-ruby (3.0.1)
@@ -13,7 +13,7 @@ GEM
dm-transactions (~> 1.2.0)
dm-types (~> 1.2.0)
dm-validations (~> 1.2.0)
data_objects (0.10.11)
data_objects (0.10.12)
addressable (~> 2.1)
dm-aggregates (1.2.0)
dm-core (~> 1.2.0)
@@ -35,9 +35,6 @@ GEM
json (~> 1.6)
json_pure (~> 1.6)
multi_json (~> 1.0)
dm-sqlite-adapter (1.2.0)
dm-do-adapter (~> 1.2.0)
do_sqlite3 (~> 0.10.6)
dm-timestamps (1.2.0)
dm-core (~> 1.2.0)
dm-transactions (1.2.0)
@@ -52,27 +49,32 @@ GEM
uuidtools (~> 2.1)
dm-validations (1.2.0)
dm-core (~> 1.2.0)
do_postgres (0.10.11)
data_objects (= 0.10.11)
do_sqlite3 (0.10.11)
data_objects (= 0.10.11)
do_postgres (0.10.12)
data_objects (= 0.10.12)
fastercsv (1.5.5)
haml (3.1.7)
json (1.7.5)
json_pure (1.7.5)
multi_json (1.5.0)
rack (1.4.1)
rack-protection (1.3.2)
rack
haml (4.0.2)
tilt
json (1.8.0)
json_pure (1.8.0)
mime-types (1.23)
multi_json (1.7.3)
pg (0.15.1)
rack (1.5.2)
rest-client (1.6.7)
mime-types (>= 1.16)
sequel (3.20.0)
shotgun (0.9)
rack (>= 1.0)
sinatra (1.3.3)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
sinatra (1.0)
rack (>= 1.0)
stringex (1.5.1)
tilt (1.3.3)
uuidtools (2.1.3)
taps (0.3.24)
rack (>= 1.0.1)
rest-client (>= 1.4.0, < 1.7.0)
sequel (~> 3.20.0)
sinatra (~> 1.0.0)
tilt (1.4.1)
uuidtools (2.1.4)

PLATFORMS
ruby
@@ -80,7 +82,8 @@ PLATFORMS
DEPENDENCIES
data_mapper
dm-postgres-adapter
dm-sqlite-adapter
haml
pg
shotgun
sinatra
taps

Loading…
Cancel
Save