autoluv 0.3.1 → 0.3.2
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 +4 -4
- data/README.md +9 -0
- data/lib/autoluv/southwestclient.rb +2 -2
- data/lib/autoluv/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69b08611a4bc4d79ee318013d6324ec4503fd8f8678af40989d46b4c6ba72564
|
|
4
|
+
data.tar.gz: 077d0fd2979117501c1742672db5e8e76babe416bbe1fcb4126efcaf43ee228e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c848c8d32f79a6c3ffb2227c6c8c030633585407cf3f0317c0b6960a2b41b9ceeaac4efdcf22ae34b2ee457309b0be6ac13ee9ca9cae3172bb714928319ee336
|
|
7
|
+
data.tar.gz: e623afb9a414e5384ac3f0136cf8ab572281cd2cd90da5bb0f0400957aec6a752b170dd081e8792251a76deeb0ce33d44491a75ec52fd5e66b5454bfce5fc623
|
data/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Automatically check in to Southwest flights using this easy-to-use gem. It'll also email you the results so you know ASAP whether a check in was successful. Seconds count when you're fighting for that window or aisle seat!
|
|
4
4
|
|
|
5
|
+
## ⚠️ February 2023 Update ⚠️
|
|
6
|
+
|
|
7
|
+
It appears [southwest-headers](https://github.com/byalextran/southwest-headers) using the latest versions of Chrome (110) and undetected-chromedriver (3.4.6) produces an invalid header file. [Read this thread for a workaround](https://github.com/byalextran/southwest-headers/issues/6).
|
|
8
|
+
|
|
5
9
|
## Requirements
|
|
6
10
|
|
|
7
11
|
* A *nix-based server that will be on when you need to check in
|
|
@@ -117,6 +121,11 @@ The last line in the output will show you the confirmation number and name.
|
|
|
117
121
|
|
|
118
122
|
at -c 11
|
|
119
123
|
|
|
124
|
+
### View All Scheduled Check-In Details
|
|
125
|
+
Display the list of all scheduled confirmation numbers and names.
|
|
126
|
+
|
|
127
|
+
atq | awk '{ print "at -c " $1 }' | bash | grep autoluv
|
|
128
|
+
|
|
120
129
|
## Update Gem
|
|
121
130
|
|
|
122
131
|
gem update autoluv --conservative
|
|
@@ -48,7 +48,7 @@ module Autoluv
|
|
|
48
48
|
check_in = RestClient.post("#{CHECK_IN_URL}", post_data.to_json, JSON.parse(File.read(ENV["LUV_HEADERS_FILE"])))
|
|
49
49
|
break
|
|
50
50
|
rescue RestClient::ExceptionWithResponse => ewr
|
|
51
|
-
sleep(
|
|
51
|
+
sleep(0.5)
|
|
52
52
|
next unless x == num_attempts - 1
|
|
53
53
|
|
|
54
54
|
raise
|
|
@@ -73,7 +73,7 @@ module Autoluv
|
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
metadata = {
|
|
76
|
-
end_time: end_time.strftime("%I:%M
|
|
76
|
+
end_time: end_time.strftime("%I:%M:%S"),
|
|
77
77
|
elapsed_time: (end_time - start_time).round(2),
|
|
78
78
|
attempts: attempt,
|
|
79
79
|
}
|
data/lib/autoluv/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoluv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Tran
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
|
-
rubygems_version: 3.
|
|
151
|
+
rubygems_version: 3.4.1
|
|
152
152
|
signing_key:
|
|
153
153
|
specification_version: 4
|
|
154
154
|
summary: Easy-to-use gem to check in to Southwest flights automatically. Also supports
|