top_gun 0.0.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.
- data/.gitignore +4 -0
- data/Gemfile +3 -0
- data/Rakefile +1 -0
- data/bin/top_gun +12 -0
- data/lib/top_gun/version.rb +3 -0
- data/lib/top_gun.rb +12 -0
- data/lyrics/danger_zone.txt +40 -0
- data/lyrics/take_my_breath_away.txt +45 -0
- data/top_gun.gemspec +20 -0
- metadata +57 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/bin/top_gun
ADDED
data/lib/top_gun.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
require "top_gun/version"
|
|
2
|
+
|
|
3
|
+
module TopGun
|
|
4
|
+
LYRICS_DIR = File.dirname(__FILE__) + '/../lyrics'
|
|
5
|
+
def self.danger_zone
|
|
6
|
+
`say -f #{LYRICS_DIR}/danger_zone.txt`
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def self.take_my_breath_away
|
|
10
|
+
`say -v Victoria -f #{LYRICS_DIR}/take_my_breath_away.txt`
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Revvin' up your engine
|
|
2
|
+
Listen to her howlin' roar
|
|
3
|
+
Metal under tension
|
|
4
|
+
Beggin' you to touch and go
|
|
5
|
+
|
|
6
|
+
Highway to the Danger Zone
|
|
7
|
+
Ride into the Danger Zone
|
|
8
|
+
|
|
9
|
+
Headin' into twilight
|
|
10
|
+
Spreadin' out her wings tonight
|
|
11
|
+
She got you jumpin' off the deck
|
|
12
|
+
And shovin' into overdrive
|
|
13
|
+
|
|
14
|
+
Highway to the Danger Zone
|
|
15
|
+
I'll take you right into the Danger Zone
|
|
16
|
+
|
|
17
|
+
You'll never say hello to you
|
|
18
|
+
Until you get it on the red line overload
|
|
19
|
+
You'll never know what you can do
|
|
20
|
+
Until you get it up as high as you can go
|
|
21
|
+
|
|
22
|
+
Out along the edges
|
|
23
|
+
Always where I burn to be
|
|
24
|
+
The further on the edge
|
|
25
|
+
The hotter the intensity
|
|
26
|
+
|
|
27
|
+
Highway to the Danger Zone
|
|
28
|
+
Gonna take it right into the Danger Zone
|
|
29
|
+
Highway to the Danger Zone
|
|
30
|
+
Ride into the Danger Zone
|
|
31
|
+
|
|
32
|
+
Highway to the Danger Zone
|
|
33
|
+
Gonna take it right into the Danger Zone
|
|
34
|
+
Highway to the Danger Zone
|
|
35
|
+
Ride into the Danger Zone
|
|
36
|
+
|
|
37
|
+
Highway to the Danger Zone
|
|
38
|
+
Gonna take it right into the Danger Zone
|
|
39
|
+
Highway to the Danger Zone
|
|
40
|
+
Ride into the Danger Zone
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Watching every motion
|
|
2
|
+
In my foolish lover's game
|
|
3
|
+
On this endless ocean
|
|
4
|
+
Finally lovers know no shame
|
|
5
|
+
Turning and returning
|
|
6
|
+
To some secret place inside
|
|
7
|
+
Watching in slow motion
|
|
8
|
+
As you turn around and say
|
|
9
|
+
|
|
10
|
+
Take my breath away
|
|
11
|
+
Take my breath away
|
|
12
|
+
|
|
13
|
+
Watching I keep waiting
|
|
14
|
+
Still anticipating love
|
|
15
|
+
Never hesitating
|
|
16
|
+
To become the fated ones
|
|
17
|
+
Turning and returning
|
|
18
|
+
To some secret place to hide
|
|
19
|
+
Watching in slow motion
|
|
20
|
+
As you turn to me and say
|
|
21
|
+
|
|
22
|
+
Take my breath away
|
|
23
|
+
Take my breath away
|
|
24
|
+
|
|
25
|
+
Through the hourglass I saw you
|
|
26
|
+
In time you slipped away
|
|
27
|
+
When the mirror crashed I called you
|
|
28
|
+
And turned to hear you say
|
|
29
|
+
If only for today
|
|
30
|
+
I am unafraid
|
|
31
|
+
|
|
32
|
+
Take my breath away
|
|
33
|
+
Take my breath away
|
|
34
|
+
|
|
35
|
+
Watching every motion
|
|
36
|
+
In this foolish lover's game
|
|
37
|
+
Haunted by the notion
|
|
38
|
+
Somewhere there's a love in flames
|
|
39
|
+
Turning and returning
|
|
40
|
+
To some secret place inside
|
|
41
|
+
Watching in slow motion
|
|
42
|
+
As you turn my way and say
|
|
43
|
+
|
|
44
|
+
Take my breath away
|
|
45
|
+
Take my breath away
|
data/top_gun.gemspec
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "top_gun/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "top_gun"
|
|
7
|
+
s.version = TopGun::VERSION
|
|
8
|
+
s.authors = ["Dylan Egan"]
|
|
9
|
+
s.email = ["dylanegan@gmail.com"]
|
|
10
|
+
s.homepage = "https://github.com/dylanegan/top_gun"
|
|
11
|
+
s.summary = %q{Top Gun}
|
|
12
|
+
s.description = %q{Danger Zone}
|
|
13
|
+
|
|
14
|
+
s.rubyforge_project = "top_gun"
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
+
s.require_paths = ["lib"]
|
|
20
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: top_gun
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Dylan Egan
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-07-29 00:00:00.000000000 +10:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
description: Danger Zone
|
|
16
|
+
email:
|
|
17
|
+
- dylanegan@gmail.com
|
|
18
|
+
executables:
|
|
19
|
+
- top_gun
|
|
20
|
+
extensions: []
|
|
21
|
+
extra_rdoc_files: []
|
|
22
|
+
files:
|
|
23
|
+
- .gitignore
|
|
24
|
+
- Gemfile
|
|
25
|
+
- Rakefile
|
|
26
|
+
- bin/top_gun
|
|
27
|
+
- lib/top_gun.rb
|
|
28
|
+
- lib/top_gun/version.rb
|
|
29
|
+
- lyrics/danger_zone.txt
|
|
30
|
+
- lyrics/take_my_breath_away.txt
|
|
31
|
+
- top_gun.gemspec
|
|
32
|
+
has_rdoc: true
|
|
33
|
+
homepage: https://github.com/dylanegan/top_gun
|
|
34
|
+
licenses: []
|
|
35
|
+
post_install_message:
|
|
36
|
+
rdoc_options: []
|
|
37
|
+
require_paths:
|
|
38
|
+
- lib
|
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
|
+
requirements:
|
|
42
|
+
- - ! '>='
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
|
+
none: false
|
|
47
|
+
requirements:
|
|
48
|
+
- - ! '>='
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '0'
|
|
51
|
+
requirements: []
|
|
52
|
+
rubyforge_project: top_gun
|
|
53
|
+
rubygems_version: 1.6.2
|
|
54
|
+
signing_key:
|
|
55
|
+
specification_version: 3
|
|
56
|
+
summary: Top Gun
|
|
57
|
+
test_files: []
|