File tree 6 files changed +18
-3
lines changed
6 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 11
11
.rspec_status
12
12
.idea /
13
13
spec /vcr_cassettes
14
+ /.env
15
+ /.env. *
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- arlo (0.0.6 )
4
+ arlo (0.0.7 )
5
5
6
6
GEM
7
7
remote: https://rubygems.org/
11
11
crack (0.4.3 )
12
12
safe_yaml (~> 1.0.0 )
13
13
diff-lcs (1.3 )
14
+ dotenv (2.5.0 )
14
15
hashdiff (0.3.7 )
15
16
public_suffix (3.0.2 )
16
17
rake (10.5.0 )
@@ -40,10 +41,11 @@ PLATFORMS
40
41
DEPENDENCIES
41
42
arlo !
42
43
bundler
44
+ dotenv
43
45
rake (~> 10.0 )
44
46
rspec (~> 3.0 )
45
47
vcr (~> 4.0 )
46
48
webmock (~> 3.4 , >= 3.4.2 )
47
49
48
50
BUNDLED WITH
49
- 1.16.2
51
+ 1.16.3
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
32
32
spec . require_paths = [ 'lib' ]
33
33
34
34
spec . add_development_dependency 'bundler' , '~> 1.16'
35
+ spec . add_development_dependency 'dotenv'
35
36
spec . add_development_dependency 'rake' , '~> 10.0'
36
37
spec . add_development_dependency 'rspec' , '~> 3.0'
37
38
spec . add_development_dependency 'vcr' , '~> 4.0'
Original file line number Diff line number Diff line change 20
20
21
21
* Added API to record video from a given camera
22
22
23
+ ## 2018-08-07
24
+
25
+ ### Non-breaking
26
+
27
+ * Using the dotenv gem to store environment variables
28
+
29
+
Original file line number Diff line number Diff line change
1
+ require 'dotenv'
2
+ Dotenv . load
3
+
1
4
require_relative 'arlo/network_helper'
2
5
3
6
module Arlo
Original file line number Diff line number Diff line change 1
1
module Arlo
2
- VERSION = '0.0.6 '
2
+ VERSION = '0.0.7 '
3
3
end
You can’t perform that action at this time.
0 commit comments