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
 # frozen_string_literal: true
1
 # frozen_string_literal: true
2
 
2
 
3
 source 'https://rubygems.org'
3
 source 'https://rubygems.org'
4
-
5
 git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
 git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
 
5
 
7
-# gem "rails"
8
-
6
+gem 'dotenv', '~> 2.7'
9
 gem 'httparty', '~> 0.18.0'
7
 gem 'httparty', '~> 0.18.0'
10
-
11
 gem 'nokogiri', '~> 1.10'
8
 gem 'nokogiri', '~> 1.10'
12
-
13
 gem 'pg', '~> 1.2'
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
 gem 'sequel', '~> 5.30'
14
 gem 'sequel', '~> 5.30'
16
-
17
 gem 'sinatra', '~> 2.0'
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
 GEM
1
 GEM
2
   remote: https://rubygems.org/
2
   remote: https://rubygems.org/
3
   specs:
3
   specs:
4
+    diff-lcs (1.3)
4
     dotenv (2.7.5)
5
     dotenv (2.7.5)
5
     ffi (1.12.2)
6
     ffi (1.12.2)
6
     httparty (0.18.0)
7
     httparty (0.18.0)
20
     rack-protection (2.0.8.1)
21
     rack-protection (2.0.8.1)
21
       rack
22
       rack
22
     rake (13.0.1)
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
     ruby2_keywords (0.0.2)
37
     ruby2_keywords (0.0.2)
24
     sassc (2.2.1)
38
     sassc (2.2.1)
25
       ffi (~> 1.9)
39
       ffi (~> 1.9)
41
   pg (~> 1.2)
55
   pg (~> 1.2)
42
   rack (~> 2.2)
56
   rack (~> 2.2)
43
   rake (~> 13.0)
57
   rake (~> 13.0)
58
+  rspec (~> 3.9)
44
   sassc (~> 2.2)
59
   sassc (~> 2.2)
45
   sequel (~> 5.30)
60
   sequel (~> 5.30)
46
   sinatra (~> 2.0)
61
   sinatra (~> 2.0)

Loading…
Cancel
Save