meroku 2.0.9 → 2.0.10

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.
@@ -395,7 +395,7 @@ when ENV variables present</p>
395
395
  </div>
396
396
 
397
397
  <div id="footer">
398
- Generated on Tue Oct 31 19:39:54 2017 by
398
+ Generated on Wed Nov 1 08:50:10 2017 by
399
399
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
400
400
  0.9.9 (ruby-2.4.2).
401
401
  </div>
@@ -269,7 +269,7 @@
269
269
  </div>
270
270
 
271
271
  <div id="footer">
272
- Generated on Tue Oct 31 19:39:54 2017 by
272
+ Generated on Wed Nov 1 08:50:10 2017 by
273
273
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
274
274
  0.9.9 (ruby-2.4.2).
275
275
  </div>
@@ -363,7 +363,7 @@ hosts end users applications</p>
363
363
  </div>
364
364
 
365
365
  <div id="footer">
366
- Generated on Tue Oct 31 19:39:54 2017 by
366
+ Generated on Wed Nov 1 08:50:10 2017 by
367
367
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
368
368
  0.9.9 (ruby-2.4.2).
369
369
  </div>
@@ -650,7 +650,7 @@
650
650
 
651
651
  <span class='kw'>def</span> <span class='id identifier rubyid_git_clone'>git_clone</span>
652
652
  <span class='id identifier rubyid_str'>str</span> <span class='op'>=</span> <span class='heredoc_beg'>&lt;&lt;~HEREDOC</span>
653
- <span class='tstring_content'> cd ~; git clone https://github.com/oystersauce8/meroku;
653
+ <span class='tstring_content'> cd ~; git clone https://github.com/meroku/meroku;
654
654
  </span><span class='heredoc_end'> HEREDOC
655
655
  </span> <span class='id identifier rubyid_str'>str</span><span class='period'>.</span><span class='id identifier rubyid_split'>split</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>\n</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='lbrace'>{</span> <span class='op'>|</span><span class='id identifier rubyid_cmd'>cmd</span><span class='op'>|</span> <span class='id identifier rubyid_tunnel_run'>tunnel_run</span><span class='lparen'>(</span><span class='id identifier rubyid_cmd'>cmd</span><span class='rparen'>)</span> <span class='rbrace'>}</span>
656
656
  <span class='kw'>self</span>
@@ -835,7 +835,7 @@
835
835
  </div>
836
836
 
837
837
  <div id="footer">
838
- Generated on Tue Oct 31 19:39:54 2017 by
838
+ Generated on Wed Nov 1 08:50:10 2017 by
839
839
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
840
840
  0.9.9 (ruby-2.4.2).
841
841
  </div>
@@ -195,7 +195,9 @@
195
195
  24
196
196
  25
197
197
  26
198
- 27</pre>
198
+ 27
199
+ 28
200
+ 29</pre>
199
201
  </td>
200
202
  <td>
201
203
  <pre class="code"><span class="info file"># File 'lib/meroku/tunnelable.rb', line 5</span>
@@ -221,6 +223,8 @@
221
223
  <span class='id identifier rubyid_abort'>abort</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_cmd'>cmd</span><span class='embexpr_end'>}</span><span class='tstring_content'> returned </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_code'>code</span><span class='embexpr_end'>}</span><span class='tstring_content'> !!</span><span class='tstring_end'>&quot;</span></span> <span class='kw'>if</span> <span class='id identifier rubyid_code'>code</span> <span class='op'>!=</span> <span class='int'>0</span>
222
224
  <span class='kw'>rescue</span> <span class='const'>Net</span><span class='op'>::</span><span class='const'>SSH</span><span class='op'>::</span><span class='const'>ConnectionTimeout</span>
223
225
  <span class='id identifier rubyid_puts'>puts</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Net::SSH::ConnectionTimeout</span><span class='tstring_end'>&quot;</span></span> <span class='op'>&amp;&amp;</span> <span class='kw'>retry</span> <span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_retries'>retries</span> <span class='op'>+=</span> <span class='int'>1</span><span class='rparen'>)</span> <span class='op'>&lt;</span> <span class='int'>3</span>
226
+ <span class='kw'>rescue</span> <span class='const'>Errno</span><span class='op'>::</span><span class='const'>ECONNREFUSED</span>
227
+ <span class='id identifier rubyid_puts'>puts</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Net::SSH::ConnectionTimeout</span><span class='tstring_end'>&quot;</span></span> <span class='op'>&amp;&amp;</span> <span class='kw'>retry</span> <span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_retries'>retries</span> <span class='op'>+=</span> <span class='int'>1</span><span class='rparen'>)</span> <span class='op'>&lt;</span> <span class='int'>3</span>
224
228
  <span class='kw'>end</span>
225
229
  <span class='kw'>end</span></pre>
226
230
  </td>
@@ -233,7 +237,7 @@
233
237
  </div>
234
238
 
235
239
  <div id="footer">
236
- Generated on Tue Oct 31 19:39:54 2017 by
240
+ Generated on Wed Nov 1 08:50:10 2017 by
237
241
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
238
242
  0.9.9 (ruby-2.4.2).
239
243
  </div>
@@ -263,7 +263,7 @@
263
263
  </div>
264
264
 
265
265
  <div id="footer">
266
- Generated on Tue Oct 31 19:39:53 2017 by
266
+ Generated on Wed Nov 1 08:50:09 2017 by
267
267
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
268
268
  0.9.9 (ruby-2.4.2).
269
269
  </div>
@@ -58,19 +58,22 @@
58
58
  </div>
59
59
 
60
60
  <div id="content"><div id='filecontents'>
61
- <p><a href="https://travis-ci.org/oystersauce8/meroku"><img
62
- src="https://travis-ci.org/oystersauce8/meroku.svg?branch=master"></a> <a
63
- href="https://coveralls.io/github/oystersauce8/meroku?branch=master"><img
64
- src="https://coveralls.io/repos/github/oystersauce8/meroku/badge.svg?branch=master"></a>
65
- <a
66
- href="https://codeclimate.com/github/oystersauce8/meroku/maintainability"><img
61
+ <p><a href="https://travis-ci.org/meroku/meroku"><img
62
+ src="https://travis-ci.org/meroku/meroku.svg?branch=master"></a> <a
63
+ href="https://coveralls.io/github/meroku/meroku?branch=master"><img
64
+ src="https://coveralls.io/repos/github/meroku/meroku/badge.svg?branch=master"></a>
65
+ <a href="https://codeclimate.com/github/meroku/meroku/maintainability"><img
67
66
  src="https://api.codeclimate.com/v1/badges/266f087c272cd3ca268e/maintainability"></a>
68
- <a href="https://gemnasium.com/github.com/oystersauce8/meroku"><img
69
- src="https://gemnasium.com/badges/github.com/oystersauce8/meroku.svg"></a>
70
- <a href="https://badge.fury.io/rb/meroku"><img
67
+ <a href="https://codeclimate.com/github/codeclimate/codeclimate"><img
68
+ src="https://codeclimate.com/github/codeclimate/codeclimate/badges/gpa.svg"></a>
69
+ <a href="https://gemnasium.com/github.com/meroku/meroku"><img
70
+ src="https://gemnasium.com/badges/github.com/meroku/meroku.svg"></a> <a
71
+ href="https://gratipay.com/meroku/"><img
72
+ src="https://img.shields.io/gratipay/user/meroku.svg"></a> <a
73
+ href="https://badge.fury.io/rb/meroku"><img
71
74
  src="https://badge.fury.io/rb/meroku.svg"></a></p>
72
75
 
73
- <h1 id="label-Getting+started">Getting started</h1>
76
+ <h1 id="label-My+Heroku+-28Meroku-29-2C+because+hosting+100+apps+costs+-24700+-28-247x100-29+at+heroku.com">My Heroku (Meroku), because hosting 100 apps costs $700 ($7x100) at heroku.com</h1>
74
77
 
75
78
  <p>Ruby on Rails is a popular web framework written in Ruby. This guide covers
76
79
  using Rails 5 on Meroku. To follow along, you need</p>
@@ -157,12 +160,7 @@ $</code></pre>
157
160
  <pre class="code ruby"><code class="ruby">- Only latest stable ruby is supported at the moment
158
161
  - Only latest stable rails is supported at the moment
159
162
  - Only RAILS_ENV=procution is supported at the moment
160
- - Only puma is supported at the moment
161
-
162
- - Nightly spawn
163
- - respons time sanity check and full-lifecycle topics
164
- - piper visual check
165
- - some commodity apps</code></pre>
163
+ - Only puma is supported at the moment</code></pre>
166
164
 
167
165
  <h3 id="label-To+Run+tests">To Run tests</h3>
168
166
 
@@ -171,7 +169,7 @@ $</code></pre>
171
169
  </div></div>
172
170
 
173
171
  <div id="footer">
174
- Generated on Tue Oct 31 19:39:54 2017 by
172
+ Generated on Wed Nov 1 08:50:09 2017 by
175
173
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
176
174
  0.9.9 (ruby-2.4.2).
177
175
  </div>
@@ -58,19 +58,22 @@
58
58
  </div>
59
59
 
60
60
  <div id="content"><div id='filecontents'>
61
- <p><a href="https://travis-ci.org/oystersauce8/meroku"><img
62
- src="https://travis-ci.org/oystersauce8/meroku.svg?branch=master"></a> <a
63
- href="https://coveralls.io/github/oystersauce8/meroku?branch=master"><img
64
- src="https://coveralls.io/repos/github/oystersauce8/meroku/badge.svg?branch=master"></a>
65
- <a
66
- href="https://codeclimate.com/github/oystersauce8/meroku/maintainability"><img
61
+ <p><a href="https://travis-ci.org/meroku/meroku"><img
62
+ src="https://travis-ci.org/meroku/meroku.svg?branch=master"></a> <a
63
+ href="https://coveralls.io/github/meroku/meroku?branch=master"><img
64
+ src="https://coveralls.io/repos/github/meroku/meroku/badge.svg?branch=master"></a>
65
+ <a href="https://codeclimate.com/github/meroku/meroku/maintainability"><img
67
66
  src="https://api.codeclimate.com/v1/badges/266f087c272cd3ca268e/maintainability"></a>
68
- <a href="https://gemnasium.com/github.com/oystersauce8/meroku"><img
69
- src="https://gemnasium.com/badges/github.com/oystersauce8/meroku.svg"></a>
70
- <a href="https://badge.fury.io/rb/meroku"><img
67
+ <a href="https://codeclimate.com/github/codeclimate/codeclimate"><img
68
+ src="https://codeclimate.com/github/codeclimate/codeclimate/badges/gpa.svg"></a>
69
+ <a href="https://gemnasium.com/github.com/meroku/meroku"><img
70
+ src="https://gemnasium.com/badges/github.com/meroku/meroku.svg"></a> <a
71
+ href="https://gratipay.com/meroku/"><img
72
+ src="https://img.shields.io/gratipay/user/meroku.svg"></a> <a
73
+ href="https://badge.fury.io/rb/meroku"><img
71
74
  src="https://badge.fury.io/rb/meroku.svg"></a></p>
72
75
 
73
- <h1 id="label-Getting+started">Getting started</h1>
76
+ <h1 id="label-My+Heroku+-28Meroku-29-2C+because+hosting+100+apps+costs+-24700+-28-247x100-29+at+heroku.com">My Heroku (Meroku), because hosting 100 apps costs $700 ($7x100) at heroku.com</h1>
74
77
 
75
78
  <p>Ruby on Rails is a popular web framework written in Ruby. This guide covers
76
79
  using Rails 5 on Meroku. To follow along, you need</p>
@@ -157,12 +160,7 @@ $</code></pre>
157
160
  <pre class="code ruby"><code class="ruby">- Only latest stable ruby is supported at the moment
158
161
  - Only latest stable rails is supported at the moment
159
162
  - Only RAILS_ENV=procution is supported at the moment
160
- - Only puma is supported at the moment
161
-
162
- - Nightly spawn
163
- - respons time sanity check and full-lifecycle topics
164
- - piper visual check
165
- - some commodity apps</code></pre>
163
+ - Only puma is supported at the moment</code></pre>
166
164
 
167
165
  <h3 id="label-To+Run+tests">To Run tests</h3>
168
166
 
@@ -171,7 +169,7 @@ $</code></pre>
171
169
  </div></div>
172
170
 
173
171
  <div id="footer">
174
- Generated on Tue Oct 31 19:39:54 2017 by
172
+ Generated on Wed Nov 1 08:50:09 2017 by
175
173
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
176
174
  0.9.9 (ruby-2.4.2).
177
175
  </div>
@@ -100,7 +100,7 @@
100
100
  </div>
101
101
 
102
102
  <div id="footer">
103
- Generated on Tue Oct 31 19:39:54 2017 by
103
+ Generated on Wed Nov 1 08:50:09 2017 by
104
104
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
105
105
  0.9.9 (ruby-2.4.2).
106
106
  </div>
data/lib/meroku/aws.rb CHANGED
@@ -8,7 +8,7 @@ module Meroku
8
8
  KEY_NAME = '~/crypto/meroku/meroku.id_rsa'
9
9
 
10
10
  def self.bucket_url
11
- "http://www.sam-we.com/dropbox/meroku-#{ENV['SECRET']}"
11
+ "https://s3.amazonaws.com/#{ENV['SECRET']}"
12
12
  end
13
13
  end
14
14
  end
data/lib/meroku/node.rb CHANGED
@@ -80,7 +80,7 @@ module Meroku
80
80
 
81
81
  def git_clone
82
82
  str = <<~HEREDOC
83
- cd ~; git clone https://github.com/oystersauce8/meroku;
83
+ cd ~; git clone https://github.com/meroku/meroku;
84
84
  HEREDOC
85
85
  str.split("\n").each { |cmd| tunnel_run(cmd) }
86
86
  self
@@ -1,3 +1,3 @@
1
1
  module Meroku
2
- VERSION = "2.0.9"
2
+ VERSION = "2.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meroku
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.9
4
+ version: 2.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Weerasinghe
@@ -230,12 +230,10 @@ executables:
230
230
  extensions: []
231
231
  extra_rdoc_files: []
232
232
  files:
233
- - ".env.example"
234
233
  - ".gitignore"
235
234
  - ".ruby-version"
236
235
  - ".travis.yml"
237
236
  - Gemfile
238
- - Guardfile
239
237
  - LICENSE.txt
240
238
  - README.md
241
239
  - Rakefile
@@ -243,7 +241,6 @@ files:
243
241
  - bin/meroku
244
242
  - bin/setup
245
243
  - circle.yml
246
- - exe/meroku
247
244
  - frontend/.gitignore
248
245
  - frontend/.ruby-version
249
246
  - frontend/Gemfile
@@ -377,20 +374,15 @@ files:
377
374
  - frontend/public/Meroku.html
378
375
  - frontend/public/Meroku/Api.html
379
376
  - frontend/public/Meroku/Api/Request.html
380
- - frontend/public/Meroku/Aws.html
381
377
  - frontend/public/Meroku/Aws/Ec2.html
382
378
  - frontend/public/Meroku/CLI.html
383
- - frontend/public/Meroku/CLI/AdminUser.html
384
379
  - frontend/public/Meroku/CLI/Help.html
385
380
  - frontend/public/Meroku/CLI/Secrets.html
386
381
  - frontend/public/Meroku/CLI/Session.html
387
- - frontend/public/Meroku/CLI/User.html
388
382
  - frontend/public/Meroku/Extensions.html
389
383
  - frontend/public/Meroku/Infrastructure.html
390
- - frontend/public/Meroku/Infrastructure/Node.html
391
384
  - frontend/public/Meroku/Infrastructure/Server.html
392
385
  - frontend/public/Meroku/Node.html
393
- - frontend/public/Meroku/Tunnel.html
394
386
  - frontend/public/Meroku/Tunnelable.html
395
387
  - frontend/public/_index.html
396
388
  - frontend/public/apple-touch-icon-precomposed.png
data/.env.example DELETED
@@ -1,2 +0,0 @@
1
- AWS_ACCESS_KEY="EXAMPLE"
2
- AWS_SECRET="EXAMPLE"
data/Guardfile DELETED
@@ -1,47 +0,0 @@
1
- # A sample Guardfile
2
- # More info at https://github.com/guard/guard#readme
3
-
4
- ## Uncomment and set this to only include directories you want to watch
5
- # directories %w(app lib config test spec features) \
6
- # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
-
8
- ## Note: if you are using the `directories` clause above and you are not
9
- ## watching the project directory ('.'), then you will want to move
10
- ## the Guardfile to a watched dir and symlink it back, e.g.
11
- #
12
- # $ mkdir config
13
- # $ mv Guardfile config/
14
- # $ ln -s config/Guardfile .
15
- #
16
- # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
-
18
- guard :minitest do
19
- watch(%r{^lib/*}) { 'test' }
20
-
21
- # with Minitest::Unit
22
- #watch(%r{^test/(.*)\/?test_(.*)\.rb$})
23
- #watch(%r{^test/(.*)})
24
- #watch(%r{^lib/.*}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
25
- #watch('lib/meroku.rb') { 'test/meroku_test.rb' }
26
- #watch(%r{^test/test_helper\.rb$}) { 'test' }
27
-
28
- # with Minitest::Spec
29
- # watch(%r{^spec/(.*)_spec\.rb$})
30
- # watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
31
- # watch(%r{^spec/spec_helper\.rb$}) { 'spec' }
32
-
33
- # Rails 4
34
- # watch(%r{^app/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
35
- # watch(%r{^app/controllers/application_controller\.rb$}) { 'test/controllers' }
36
- # watch(%r{^app/controllers/(.+)_controller\.rb$}) { |m| "test/integration/#{m[1]}_test.rb" }
37
- # watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" }
38
- # watch(%r{^lib/(.+)\.rb$}) { |m| "test/lib/#{m[1]}_test.rb" }
39
- # watch(%r{^test/.+_test\.rb$})
40
- # watch(%r{^test/test_helper\.rb$}) { 'test' }
41
-
42
- # Rails < 4
43
- # watch(%r{^app/controllers/(.*)\.rb$}) { |m| "test/functional/#{m[1]}_test.rb" }
44
- # watch(%r{^app/helpers/(.*)\.rb$}) { |m| "test/helpers/#{m[1]}_test.rb" }
45
- # watch(%r{^app/models/(.*)\.rb$}) { |m| "test/unit/#{m[1]}_test.rb" }
46
- end
47
-
data/exe/meroku DELETED
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # The command line Haml parser.
3
-
4
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
5
- require 'haml'
6
- require 'haml/exec'
7
-
8
- opts = Meroku::Exec::Haml.new(ARGV)
9
- opts.parse!
@@ -1,212 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>
7
- Module: Meroku::Aws
8
-
9
- &mdash; Documentation by YARD 0.9.9
10
-
11
- </title>
12
-
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
14
-
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
16
-
17
- <script type="text/javascript" charset="utf-8">
18
- pathId = "Meroku::Aws";
19
- relpath = '../';
20
- </script>
21
-
22
-
23
- <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
24
-
25
- <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
26
-
27
-
28
- </head>
29
- <body>
30
- <div class="nav_wrap">
31
- <iframe id="nav" src="../class_list.html?1"></iframe>
32
- <div id="resizer"></div>
33
- </div>
34
-
35
- <div id="main" tabindex="-1">
36
- <div id="header">
37
- <div id="menu">
38
-
39
- <a href="../_index.html">Index (A)</a> &raquo;
40
- <span class='title'><span class='object_link'><a href="../Meroku.html" title="Meroku (module)">Meroku</a></span></span>
41
- &raquo;
42
- <span class="title">Aws</span>
43
-
44
- </div>
45
-
46
- <div id="search">
47
-
48
- <a class="full_list_link" id="class_list_link"
49
- href="../class_list.html">
50
-
51
- <svg width="24" height="24">
52
- <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
- <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
- <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
- </svg>
56
- </a>
57
-
58
- </div>
59
- <div class="clear"></div>
60
- </div>
61
-
62
- <div id="content"><h1>Module: Meroku::Aws
63
-
64
-
65
-
66
- </h1>
67
- <div class="box_info">
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
- <dl>
80
- <dt>Defined in:</dt>
81
- <dd>lib/meroku/aws.rb<span class="defines">,<br />
82
- lib/meroku/aws/ec2.rb</span>
83
- </dd>
84
- </dl>
85
-
86
- </div>
87
-
88
- <h2>Overview</h2><div class="docstring">
89
- <div class="discussion">
90
-
91
- <p>Stuff related to Amazon Web Services</p>
92
-
93
-
94
- </div>
95
- </div>
96
- <div class="tags">
97
-
98
-
99
- </div><h2>Defined Under Namespace</h2>
100
- <p class="children">
101
-
102
-
103
- <strong class="modules">Modules:</strong> <span class='object_link'><a href="Aws/Ec2.html" title="Meroku::Aws::Ec2 (module)">Ec2</a></span>
104
-
105
-
106
-
107
-
108
- </p>
109
-
110
- <h2>Constant Summary</h2>
111
- <dl class="constants">
112
-
113
- <dt id="IP-constant" class="">IP =
114
-
115
- </dt>
116
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>34.239.241.218</span><span class='tstring_end'>&#39;</span></span></pre></dd>
117
-
118
- <dt id="KEY_NAME-constant" class="">KEY_NAME =
119
-
120
- </dt>
121
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>~/crypto/meroku/meroku.id_rsa</span><span class='tstring_end'>&#39;</span></span></pre></dd>
122
-
123
- </dl>
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
- <h2>
133
- Class Method Summary
134
- <small><a href="#" class="summary_toggle">collapse</a></small>
135
- </h2>
136
-
137
- <ul class="summary">
138
-
139
- <li class="public ">
140
- <span class="summary_signature">
141
-
142
- <a href="#bucket_url-class_method" title="bucket_url (class method)">.<strong>bucket_url</strong> &#x21d2; Object </a>
143
-
144
-
145
-
146
- </span>
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
- <span class="summary_desc"><div class='inline'></div></span>
157
-
158
- </li>
159
-
160
-
161
- </ul>
162
-
163
-
164
-
165
-
166
- <div id="class_method_details" class="method_details_list">
167
- <h2>Class Method Details</h2>
168
-
169
-
170
- <div class="method_details first">
171
- <h3 class="signature first" id="bucket_url-class_method">
172
-
173
- .<strong>bucket_url</strong> &#x21d2; <tt>Object</tt>
174
-
175
-
176
-
177
-
178
-
179
- </h3><table class="source_code">
180
- <tr>
181
- <td>
182
- <pre class="lines">
183
-
184
-
185
- 10
186
- 11
187
- 12</pre>
188
- </td>
189
- <td>
190
- <pre class="code"><span class="info file"># File 'lib/meroku/aws.rb', line 10</span>
191
-
192
- <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_bucket_url'>bucket_url</span>
193
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>http://www.sam-we.com/dropbox/meroku-</span><span class='embexpr_beg'>#{</span><span class='const'>ENV</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SECRET</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
194
- <span class='kw'>end</span></pre>
195
- </td>
196
- </tr>
197
- </table>
198
- </div>
199
-
200
- </div>
201
-
202
- </div>
203
-
204
- <div id="footer">
205
- Generated on Tue Oct 31 19:39:54 2017 by
206
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
207
- 0.9.9 (ruby-2.4.2).
208
- </div>
209
-
210
- </div>
211
- </body>
212
- </html>