autoluv 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d51c73c3127c1247d9aa92393cb6564946e0f59fadd1e40fd50c5b01c3c1ee4
4
- data.tar.gz: 2533c26d888db4d95cafc1165d59423d2d287485a85a271e74b3687dabb7bfb8
3
+ metadata.gz: 6041a300159cacdee0647a8d80cdc02455a9d3b75c05fa3a0425083635975f41
4
+ data.tar.gz: 31f5f4315884761e5943c7f89fe741b985c7f3eb75adab347c693fd1913ef445
5
5
  SHA512:
6
- metadata.gz: de5f6df35800981ad99500975c96143d8596ab5cd42437e335c622e246d0dde50ee5790ee134e7eb2356324a5d0a53c993ff6f1101c659bf71dc6161c6033546
7
- data.tar.gz: c70a7031a4e27844ff6cfd1579c42b6e746abeca6488d57075a025a17409105d27c85f89365734651e57b9d3e0b79e4776d6c69fcfb837ecde68ce2a1cd61047
6
+ metadata.gz: 1e7b8092eb200f0fd8a4db123707fecb6115b325f110bac8b0fbb093e53ece3172c969201faf59fd0ad784b97ed54ba33d39779b577db9f5908d413e057c1035
7
+ data.tar.gz: e4ed6cf0e6149f4acffbcb4b435829d47ac1031f70f35d0b891b3f2658635082879e9ab6d38114322b9454693f5ac0b5d3a3e23d7df94739178038d0f5f6c401
data/bin/autoluv CHANGED
@@ -10,6 +10,10 @@ to = ARGV[4]
10
10
  bcc = ARGV[5]
11
11
 
12
12
  begin
13
+ unless File.exist?(ENV["LUV_HEADERS_FILE"].to_s)
14
+ abort "Please create a valid Southwest header file before continuing. Learn more: https://github.com/byalextran/southwest-headers"
15
+ end
16
+
13
17
  case command.downcase
14
18
  when "schedule"
15
19
  Autoluv::SouthwestClient.schedule(confirmation_number, first_name, last_name, to, bcc)
@@ -3,9 +3,6 @@ require "securerandom"
3
3
  require "json"
4
4
  require "tzinfo"
5
5
  require "shellwords"
6
- require "dotenv"
7
-
8
- Dotenv.load("#{Dir.home}/.autoluv.env")
9
6
 
10
7
  module Autoluv
11
8
  class SouthwestClient
@@ -22,8 +19,6 @@ module Autoluv
22
19
  TIME_ZONES_PATH = File.expand_path("../../data/airport_time_zones.json", __dir__)
23
20
 
24
21
  def self.schedule(confirmation_number, first_name, last_name, to = nil, bcc = nil)
25
- self.check_for_header_file
26
-
27
22
  flights = self.departing_flights(confirmation_number, first_name, last_name)
28
23
 
29
24
  flights.each_with_index do |flight, x|
@@ -39,8 +34,6 @@ module Autoluv
39
34
  end
40
35
 
41
36
  def self.check_in(confirmation_number, first_name, last_name, to = nil, bcc = nil)
42
- self.check_for_header_file
43
-
44
37
  check_in = attempt = nil
45
38
 
46
39
  # try checking in multiple times in case the our server time is out of sync with Southwest's.
@@ -94,12 +87,6 @@ module Autoluv
94
87
  DEFAULT_HEADERS.merge({ "X-User-Experience-ID": SecureRandom.uuid })
95
88
  end
96
89
 
97
- def self.check_for_header_file
98
- unless File.exist?(ENV["LUV_HEADERS_FILE"])
99
- abort "Please create a valid Southwest header file before continuing. Learn more: https://github.com/byalextran/southwest-headers"
100
- end
101
- end
102
-
103
90
  def self.departing_flights(confirmation_number, first_name, last_name)
104
91
  reservation = RestClient.get("#{RESERVATION_URL}/#{confirmation_number}?first-name=#{first_name}&last-name=#{last_name}", self.headers)
105
92
  reservation_json = JSON.parse(reservation)
@@ -1,3 +1,3 @@
1
1
  module Autoluv
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoluv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Tran