energy_air 2017.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 +7 -0
- data/.gitignore +9 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +23 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/energy_air.gemspec +26 -0
- data/exe/energy_air +23 -0
- data/lib/energy_air.rb +10 -0
- data/lib/energy_air/bot.rb +124 -0
- data/lib/energy_air/version.rb +3 -0
- metadata +116 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0705bdff114efe7ff221df2d3ff959bb9630da5d
|
4
|
+
data.tar.gz: 22374507b524fd030a63590735a5118781f6bfe9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f2272402402ba6eb504c963a53d3deeb998d4e301913c6bccb5f4008313b05d9e02285ee5a6ef88891da3c1c4aad410423a38c956884c20fb8011aa02f195a2d
|
7
|
+
data.tar.gz: dfcd24b7e9bc879626b355a121a8251cf2274bc16f6c440b9cd449e3de525f3ee1fcc5d1fb53c3124e57aebc25f8ab139269a0e9fd1aecc779d637c5c8fe6ad0
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.4.1
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at Elektron1c97@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Yves Siegrist
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# EnergyAir
|
2
|
+
|
3
|
+
Tiny ruby bot to win [energy air](https://energy.ch/air) tickets.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install it:
|
8
|
+
(Make sure that you have [phantomjs](http://phantomjs.org/) installed)
|
9
|
+
|
10
|
+
$ gem install energy_air
|
11
|
+
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
$ energy_air <telephone_number>
|
15
|
+
|
16
|
+
## Contributing
|
17
|
+
|
18
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/energy_air. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
19
|
+
|
20
|
+
|
21
|
+
## License
|
22
|
+
|
23
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "energy_air"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/energy_air.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require_relative 'lib/energy_air/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "energy_air"
|
7
|
+
spec.version = EnergyAir::VERSION
|
8
|
+
spec.authors = ["Yves Siegrist"]
|
9
|
+
spec.email = ["Elektron1c97@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "Automatically win energy air tickets without playing by yourself."
|
12
|
+
spec.homepage = "https://github.com/siegy22/energy_air"
|
13
|
+
spec.license = "MIT"
|
14
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
15
|
+
f.match(%r{^(test|spec|features)/})
|
16
|
+
end
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "capybara", "~> 2.15"
|
22
|
+
spec.add_dependency "poltergeist", "~> 1.16"
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
25
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
26
|
+
end
|
data/exe/energy_air
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# coding: utf-8
|
3
|
+
|
4
|
+
tel_number = ARGV[0]
|
5
|
+
if tel_number.nil? || tel_number.empty?
|
6
|
+
puts <<-MSG
|
7
|
+
Please provide your telephone number to earn the tickets (don't use spaces):
|
8
|
+
$ energy_air 0791234567
|
9
|
+
MSG
|
10
|
+
exit
|
11
|
+
end
|
12
|
+
|
13
|
+
require "bundler/setup"
|
14
|
+
require "energy_air"
|
15
|
+
|
16
|
+
puts "==== Energy Air Quiz bot ===="
|
17
|
+
puts "Version: #{EnergyAir::VERSION}"
|
18
|
+
puts "Use Ctrl-C to stop"
|
19
|
+
puts "'.' means: Quiz played without winning a ticket."
|
20
|
+
puts "'√' means: Quiz played and won a ticket!"
|
21
|
+
puts "'×' means: There was an unknown error (skipped)"
|
22
|
+
|
23
|
+
EnergyAir::Bot.new(tel_number)
|
data/lib/energy_air.rb
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
module EnergyAir
|
3
|
+
class Bot
|
4
|
+
include Capybara::DSL
|
5
|
+
|
6
|
+
def initialize(tel_number)
|
7
|
+
@tel_number = tel_number
|
8
|
+
Capybara.run_server = false
|
9
|
+
Capybara.register_driver :chrome_poltergeist do |app|
|
10
|
+
chrome_poltergeist = Capybara::Poltergeist::Driver.new(app)
|
11
|
+
chrome_poltergeist.headers = {
|
12
|
+
'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36'
|
13
|
+
}
|
14
|
+
chrome_poltergeist.timeout = 100
|
15
|
+
chrome_poltergeist
|
16
|
+
end
|
17
|
+
Capybara.current_driver = :chrome_poltergeist
|
18
|
+
|
19
|
+
loop { run }
|
20
|
+
end
|
21
|
+
|
22
|
+
def run
|
23
|
+
visit 'https://game.energy.ch'
|
24
|
+
enter_tel_number
|
25
|
+
answer_question until finished?
|
26
|
+
choose_random_bubble
|
27
|
+
if won?
|
28
|
+
print "√"
|
29
|
+
else
|
30
|
+
print "."
|
31
|
+
end
|
32
|
+
rescue StandardError => e
|
33
|
+
print "× (#{e})"
|
34
|
+
ensure
|
35
|
+
reset_browser
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
def enter_tel_number
|
40
|
+
find("input#mobile").set(@tel_number)
|
41
|
+
click_on("LOS GEHTS")
|
42
|
+
end
|
43
|
+
|
44
|
+
def answer_question
|
45
|
+
current_question = find(".question h1").text
|
46
|
+
answer = QUESTIONS[current_question]
|
47
|
+
choose("option#{answer}")
|
48
|
+
click_on("WEITER")
|
49
|
+
end
|
50
|
+
|
51
|
+
def finished?
|
52
|
+
all("h2").map(&:text).include?("Glückwunsch!")
|
53
|
+
end
|
54
|
+
|
55
|
+
def choose_random_bubble
|
56
|
+
click_on("WEITER GEHTS!")
|
57
|
+
all("#wingame a").sample.click
|
58
|
+
end
|
59
|
+
|
60
|
+
def lost?
|
61
|
+
find("h1").text == "Das war das falsche Logo, knapp daneben! Versuche es erneut!"
|
62
|
+
end
|
63
|
+
|
64
|
+
def won?
|
65
|
+
!lost?
|
66
|
+
end
|
67
|
+
|
68
|
+
def reset_browser
|
69
|
+
page.driver.clear_cookies
|
70
|
+
Capybara.reset_sessions!
|
71
|
+
end
|
72
|
+
|
73
|
+
QUESTIONS = {
|
74
|
+
"Wie gross ist die Spielfläche des Stade de Suisse?" => 2, # ["100m x 70m", "105m x 68m", "90m x 40m"]
|
75
|
+
"Wie hiess das Stade de Suisse früher?" => 1, # ["Wankdorf", "Stade de YB", "Wenkdorf"]
|
76
|
+
"Was bedeutet Air auf Deutsch?" => 2, # ["Konzert", "Luft", "Liebe"]
|
77
|
+
"Von welchem ehemaligen Energy Air Act ist der Song «Bilder im Kopf»?" => 1, # ["Sido", "MoTrip", "Culcha Candela"]
|
78
|
+
"Mit welchem Künstler stand Schlangenfrau Nina Burri auf der Bühne?" => 1, # ???["RedOne", "DJ Antoine", "OneRepublic"]
|
79
|
+
"Wann wurde das Stade de Suisse offiziell fertig gestellt?" => 1, # ["2005", "2000", "2001"]
|
80
|
+
"In welcher Schweizer Stadt hat Energy KEIN Radiostudio?" => 2, # ["Bern", "Basel", "St. Gallen"]
|
81
|
+
"Welcher DJ stand noch nie auf der Energy Air Bühne?" => 2, # ["Kygo", "Felix Jaehn", "DJ Antoine"]
|
82
|
+
"Wie viele Tage dauert das Energy Air?" => 3, # ["3", "2", "1"]
|
83
|
+
"Wann findet das diesjährige Energy Air statt?" => 2, # ["3. September 2017", "2. September 2017", "31. August 2017"]
|
84
|
+
"Wo findet das Energy Air statt?" => 3, # ["Zürich, Letzigrund", "Basel, St. Jakobshalle", "Bern, Stade de Suisse"]
|
85
|
+
"Welche Plätze gibt es am Energy Air?" => 3, # ["Nur Stehplätze", "Nur Sitzplätze", "XTRA Circle-Tickets, Steh- und Sitzplätze"]
|
86
|
+
"Wann fand das erste Energy Air statt?" => 1, # ["Samstag, 6. September 2014", "Freitag, 5. September 2014", "Sonntag, 7. September 2014"]
|
87
|
+
"Wie hiess der Energy Air Song im Jahr 2014?" => 3, # ["Energy", "Air", "Dynamite"]
|
88
|
+
"Wie viele Male standen Dabu Fantastic bereits auf der Energy Air Bühne?" => 1, # ["2 Mal", "Kein Mal", "1 Mal"]
|
89
|
+
"Zum wievielten Mal findet das Energy Air statt?" => 3, # ["Zum 3. Mal", "Zum 4. Mal", "Zum 5. Mal"],
|
90
|
+
"Das Energy Air ist ...?" => 1,
|
91
|
+
"Ab wann darf man, ohne eine erwachsene Begleitperson, am Energy Air teilnehmen?" => 1,
|
92
|
+
"Was ist die obere Altersbeschränkung des Energy Air?" => 2,
|
93
|
+
"Wie viel kostet die Energy Air App?" => 2,
|
94
|
+
"Welcher dieser Acts Stand schon auf der Stade de Suisse Bühne?" => 1,
|
95
|
+
"Welcher Act stand NOCH NIE auf der Energy Air Bühne?" => 3,
|
96
|
+
"Wie viele Sitzplätze hat das Stade de Suisse bei Sportveranstaltungen?" => 1,
|
97
|
+
"Wer hatte den letzten Auftritt am Energy Air 2016?" => 3,
|
98
|
+
"Wie viele Zuschauer passen ins Stade de Suisse?" => 1,
|
99
|
+
"In welchem Monat findet das Energy Air jeweils statt?" => 2,
|
100
|
+
"Welcher Fussballverein ist im Stade de Suisse Zuhause?" => 1,
|
101
|
+
"Was ist das Energy Air als einziger Energy Event?" => 1,
|
102
|
+
"Welcher Energy Air Act aus den letzten Jahren stand nur mit seinem Gitarristen auf der Bühne?" => 1,
|
103
|
+
"Welches Stadion ist das grösste der Schweiz?" => 1,
|
104
|
+
"Welcher Act stand schon einmal auf der Energy Air Bühne?" => 1,
|
105
|
+
"Wie lautet der offizielle Energy Air Hashtag?" => 3,
|
106
|
+
"Welcher Künstler stand NOCH NIE auf der Energy Air Bühne?" => 1,
|
107
|
+
"Wie hiess die Energy Air Hymne 2015?" => 1,
|
108
|
+
"Von welchem vergangenen Energy Air Act ist der Song «Angelina»?" => 1,
|
109
|
+
"Welcher Act performte in einem Karton-Hippie-Bus?" => 3,
|
110
|
+
"Wie heissen zwei andere grosse Events von Energy?" => 1,
|
111
|
+
"In welchem Jahr stand OneRepublic auf der Bühne des Energy Air?" => 1,
|
112
|
+
"Welche deutsche Sängerin stand letztes Jahr auf der Energy Air Bühne?" => 1,
|
113
|
+
"Wie viel kostet ein Energy Air Ticket?" => 1,
|
114
|
+
"Von wem wird das Energy Air durchgeführt?" => 1,
|
115
|
+
"Wie oft pro Jahr findet das Energy Air statt?" => 3,
|
116
|
+
"Wie viele Tickets werden für das Energy Air verlost?" => 1,
|
117
|
+
"Wo kann man Energy Air Tickets kaufen?" => 3,
|
118
|
+
"Welche Farben dominieren das Energy Air Logo?" => 1,
|
119
|
+
"Welcher Pop-Sänger stand in diesem Jahr schon auf der Bühne des Stade de Suisse?" => 1,
|
120
|
+
"Wann ist die offizielle Türöffnung beim Energy Air?" => 1,
|
121
|
+
"Wann fand das Energy Air letztes Jahr statt?" => 1
|
122
|
+
}
|
123
|
+
end
|
124
|
+
end
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: energy_air
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '2017.1'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yves Siegrist
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-08-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: capybara
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.15'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: poltergeist
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.15'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.15'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '12.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '12.0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- Elektron1c97@gmail.com
|
72
|
+
executables:
|
73
|
+
- energy_air
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".ruby-version"
|
79
|
+
- ".travis.yml"
|
80
|
+
- CODE_OF_CONDUCT.md
|
81
|
+
- Gemfile
|
82
|
+
- LICENSE.txt
|
83
|
+
- README.md
|
84
|
+
- Rakefile
|
85
|
+
- bin/console
|
86
|
+
- bin/setup
|
87
|
+
- energy_air.gemspec
|
88
|
+
- exe/energy_air
|
89
|
+
- lib/energy_air.rb
|
90
|
+
- lib/energy_air/bot.rb
|
91
|
+
- lib/energy_air/version.rb
|
92
|
+
homepage: https://github.com/siegy22/energy_air
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.6.11
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: Automatically win energy air tickets without playing by yourself.
|
116
|
+
test_files: []
|