diff options
| author | Teddy Wing | 2015-12-07 22:29:38 -0500 |
|---|---|---|
| committer | Teddy Wing | 2015-12-07 22:29:38 -0500 |
| commit | c2b8fde6aa39c1ec1d6f0666823852e80df10842 (patch) | |
| tree | 407d0834faa816aa76b210cc0ad16e770823ab1e | |
| download | Ruby-Web-Sessions-Exercise-c2b8fde6aa39c1ec1d6f0666823852e80df10842.tar.bz2 | |
Initial commit. Add Gemfile.
Use Sinatra.
| -rw-r--r-- | Gemfile | 3 | ||||
| -rw-r--r-- | Gemfile.lock | 17 |
2 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'sinatra' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..ad27301 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,17 @@ +GEM + remote: https://rubygems.org/ + specs: + rack (1.6.4) + rack-protection (1.5.3) + rack + sinatra (1.4.6) + rack (~> 1.4) + rack-protection (~> 1.4) + tilt (>= 1.3, < 3) + tilt (2.0.1) + +PLATFORMS + ruby + +DEPENDENCIES + sinatra |
