Browse Source

Add Gemfile

master
Adrian Short 9 years ago
parent
commit
3159a06c5d
2 changed files with 95 additions and 0 deletions
  1. +11
    -0
      Gemfile
  2. +84
    -0
      Gemfile.lock

+ 11
- 0
Gemfile View File

@@ -0,0 +1,11 @@
source 'https://rubygems.org'

gem 'sinatra'
gem 'data_mapper'
gem 'dm-sqlite-adapter'
gem 'haml'

group :development do
gem 'shotgun'
gem 'fastercsv'
end

+ 84
- 0
Gemfile.lock View File

@@ -0,0 +1,84 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.3.8)
bcrypt (3.1.10)
bcrypt-ruby (3.1.5)
bcrypt (>= 3.1.3)
data_mapper (1.2.0)
dm-aggregates (~> 1.2.0)
dm-constraints (~> 1.2.0)
dm-core (~> 1.2.0)
dm-migrations (~> 1.2.0)
dm-serializer (~> 1.2.0)
dm-timestamps (~> 1.2.0)
dm-transactions (~> 1.2.0)
dm-types (~> 1.2.0)
dm-validations (~> 1.2.0)
data_objects (0.10.15)
addressable (~> 2.1)
dm-aggregates (1.2.0)
dm-core (~> 1.2.0)
dm-constraints (1.2.0)
dm-core (~> 1.2.0)
dm-core (1.2.1)
addressable (~> 2.3)
dm-do-adapter (1.2.0)
data_objects (~> 0.10.6)
dm-core (~> 1.2.0)
dm-migrations (1.2.0)
dm-core (~> 1.2.0)
dm-serializer (1.2.2)
dm-core (~> 1.2.0)
fastercsv (~> 1.5)
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)
dm-core (~> 1.2.0)
dm-types (1.2.2)
bcrypt-ruby (~> 3.0)
dm-core (~> 1.2.0)
fastercsv (~> 1.5)
json (~> 1.6)
multi_json (~> 1.0)
stringex (~> 1.4)
uuidtools (~> 2.1)
dm-validations (1.2.0)
dm-core (~> 1.2.0)
do_sqlite3 (0.10.15)
data_objects (= 0.10.15)
fastercsv (1.5.5)
haml (4.0.6)
tilt
json (1.8.2)
json_pure (1.8.2)
multi_json (1.11.0)
rack (1.6.0)
rack-protection (1.5.3)
rack
shotgun (0.9)
rack (>= 1.0)
sinatra (1.4.6)
rack (~> 1.4)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
stringex (1.5.1)
tilt (2.0.1)
uuidtools (2.1.5)

PLATFORMS
ruby

DEPENDENCIES
data_mapper
dm-sqlite-adapter
fastercsv
haml
shotgun
sinatra

Loading…
Cancel
Save