File tree Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ GITHUB_ACCESS_TOKEN=GITHUB_ACCESS_TOKEN
Original file line number Diff line number Diff line change 14
14
! /tmp /.keep
15
15
16
16
.byebug_history
17
+ .env
17
18
18
19
# Ignore master key for decrypting credentials and more.
19
20
/config /master.key
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ gem 'mongoid', '~> 6.4.0'
22
22
# Reduces boot times through caching; required in config/boot.rb
23
23
gem 'bootsnap' , '>= 1.1.0' , require : false
24
24
25
+ # Toolkit for the GitHub API
26
+ gem "octokit" , "~> 4.0"
27
+
25
28
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
26
29
gem 'rack-cors'
27
30
@@ -31,6 +34,9 @@ group :development, :test do
31
34
32
35
# Use RSpec for specs
33
36
gem 'rspec-rails' , '>= 3.5.0'
37
+
38
+ # Secure load env vars
39
+ gem 'dotenv-rails'
34
40
end
35
41
36
42
group :development do
Original file line number Diff line number Diff line change 42
42
i18n (>= 0.7 , < 2 )
43
43
minitest (~> 5.1 )
44
44
tzinfo (~> 1.1 )
45
+ addressable (2.6.0 )
46
+ public_suffix (>= 2.0.2 , < 4.0 )
45
47
arel (9.0.0 )
46
48
bootsnap (1.4.4 )
47
49
msgpack (~> 1.0 )
54
56
concurrent-ruby (1.1.5 )
55
57
crass (1.0.4 )
56
58
diff-lcs (1.3 )
59
+ dotenv (2.7.5 )
60
+ dotenv-rails (2.7.5 )
61
+ dotenv (= 2.7.5 )
62
+ railties (>= 3.2 , < 6.1 )
57
63
erubi (1.8.0 )
64
+ faraday (0.15.4 )
65
+ multipart-post (>= 1.2 , < 3 )
58
66
ffi (1.11.1 )
59
67
ffi (1.11.1-java )
60
68
ffi (1.11.1-x64-mingw32 )
88
96
msgpack (1.3.1-java )
89
97
msgpack (1.3.1-x64-mingw32 )
90
98
msgpack (1.3.1-x86-mingw32 )
99
+ multipart-post (2.1.1 )
91
100
nio4r (2.4.0 )
92
101
nio4r (2.4.0-java )
93
102
nokogiri (1.10.4 )
97
106
mini_portile2 (~> 2.4.0 )
98
107
nokogiri (1.10.4-x86-mingw32 )
99
108
mini_portile2 (~> 2.4.0 )
109
+ octokit (4.14.0 )
110
+ sawyer (~> 0.8.0 , >= 0.5.3 )
111
+ public_suffix (3.1.1 )
100
112
puma (3.12.1 )
101
113
puma (3.12.1-java )
102
114
rack (2.0.7 )
149
161
rspec-support (~> 3.8.0 )
150
162
rspec-support (3.8.2 )
151
163
ruby_dep (1.5.0 )
164
+ sawyer (0.8.2 )
165
+ addressable (>= 2.3.5 )
166
+ faraday (> 0.8 , < 2.0 )
152
167
spring (2.1.0 )
153
168
spring-watcher-listen (2.0.1 )
154
169
listen (>= 2.7 , < 4.0 )
@@ -183,8 +198,10 @@ PLATFORMS
183
198
DEPENDENCIES
184
199
bootsnap (>= 1.1.0 )
185
200
byebug
201
+ dotenv-rails
186
202
listen (>= 3.0.5 , < 3.2 )
187
203
mongoid (~> 6.4.0 )
204
+ octokit (~> 4.0 )
188
205
puma (~> 3.11 )
189
206
rack-cors
190
207
rails (~> 5.2.0 )
You can’t perform that action at this time.
0 commit comments