This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "openssl" | |
| require "net/smtp" | |
| Net::SMTP.class_eval do | |
| private | |
| def do_start(helodomain, user, secret, authtype) | |
| raise IOError, 'SMTP session already started' if @started | |
| check_auth_args user, secret, authtype if user or secret | |
| sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Foo | |
| def bar | |
| puts "Hello, world!" | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| require 'pathname' | |
| get "/" do | |
| dir = "./files/" | |
| @links = Dir[dir+"*"].map { |file| | |
| file_link(file) | |
| }.join | |
| erb :index | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| get "/" do | |
| "<h1>Your files, sir.</h1>" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| get "/" do | |
| "<h1>Your files, sir.</h1>" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| require 'pathname' | |
| get "/" do | |
| html = "<h1>Your files, sir.</h1>" | |
| dir = "./files/" | |
| html += file_link("./files/foo.txt") | |
| html | |
| end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| require 'pathname' | |
| get "/" do | |
| html = "<h1>Your files, sir.</h1>" | |
| dir = "./files/" | |
| Dir[dir+"*"].each do |file| | |
| html+=file_link(file) | |
| end | |
| html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'sinatra' | |
| require 'pathname' | |
| get "/" do | |
| dir = "./files/" | |
| @links = Dir[dir+"*"].map { |file| | |
| file_link(file) | |
| }.join | |
| erb :index | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/> | |
| <style type="text/css" media="screen">@import "/stylesheets/iui.css";</style> | |
| <script type="application/x-javascript" src="/javascripts/iui.js"></script> | |
| </head> | |
| <body> | |
| <div class="toolbar"> | |
| <h1 id="pageTitle"></h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helpers do | |
| def file_link(file) | |
| filename = Pathname.new(file).basename | |
| "<li><a href='#{file}' target='_self'>#{filename}</a></li>" | |
| end | |
| end |
OlderNewer