Browse Source

Install rspec

master
Dylan Baker 4 years ago
parent
commit
585828341d
2 changed files with 20 additions and 15 deletions
  1. 5
    15
      Gemfile
  2. 15
    0
      Gemfile.lock

+ 5
- 15
Gemfile View File

@@ -1,25 +1,15 @@
1 1
 # frozen_string_literal: true
2 2
 
3 3
 source 'https://rubygems.org'
4
-
5 4
 git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6 5
 
7
-# gem "rails"
8
-
6
+gem 'dotenv', '~> 2.7'
9 7
 gem 'httparty', '~> 0.18.0'
10
-
11 8
 gem 'nokogiri', '~> 1.10'
12
-
13 9
 gem 'pg', '~> 1.2'
14
-
10
+gem 'rack', '~> 2.2'
11
+gem 'rake', '~> 13.0'
12
+gem 'rspec', '~> 3.9'
13
+gem 'sassc', '~> 2.2'
15 14
 gem 'sequel', '~> 5.30'
16
-
17 15
 gem 'sinatra', '~> 2.0'
18
-
19
-gem 'dotenv', '~> 2.7'
20
-
21
-gem 'sassc', '~> 2.2'
22
-
23
-gem 'rake', '~> 13.0'
24
-
25
-gem 'rack', '~> 2.2'

+ 15
- 0
Gemfile.lock View File

@@ -1,6 +1,7 @@
1 1
 GEM
2 2
   remote: https://rubygems.org/
3 3
   specs:
4
+    diff-lcs (1.3)
4 5
     dotenv (2.7.5)
5 6
     ffi (1.12.2)
6 7
     httparty (0.18.0)
@@ -20,6 +21,19 @@ GEM
20 21
     rack-protection (2.0.8.1)
21 22
       rack
22 23
     rake (13.0.1)
24
+    rspec (3.9.0)
25
+      rspec-core (~> 3.9.0)
26
+      rspec-expectations (~> 3.9.0)
27
+      rspec-mocks (~> 3.9.0)
28
+    rspec-core (3.9.1)
29
+      rspec-support (~> 3.9.1)
30
+    rspec-expectations (3.9.1)
31
+      diff-lcs (>= 1.2.0, < 2.0)
32
+      rspec-support (~> 3.9.0)
33
+    rspec-mocks (3.9.1)
34
+      diff-lcs (>= 1.2.0, < 2.0)
35
+      rspec-support (~> 3.9.0)
36
+    rspec-support (3.9.2)
23 37
     ruby2_keywords (0.0.2)
24 38
     sassc (2.2.1)
25 39
       ffi (~> 1.9)
@@ -41,6 +55,7 @@ DEPENDENCIES
41 55
   pg (~> 1.2)
42 56
   rack (~> 2.2)
43 57
   rake (~> 13.0)
58
+  rspec (~> 3.9)
44 59
   sassc (~> 2.2)
45 60
   sequel (~> 5.30)
46 61
   sinatra (~> 2.0)

Loading…
Cancel
Save