Sha256: 43068a433f83307e732faf40a5e05ab36050c8d9b7e8b25e32db9916d023b770
Contents?: true
Size: 1.71 KB
Versions: 4
Compression:
Stored size: 1.71 KB
Contents
<!DOCTYPE html> <html> <head> <title>Ruby on Jets</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <style type="text/css" media="screen" charset="utf-8"> body { text-align: center; margin: 0; } img { max-width: 320px; } .container { max-width: 648px; } @media (min-width: 768px) { img { max-width: none; } .container { max-width: none; } } .header { padding: 20px; /*background-color: #b81513;*/ /*color: white;*/ } .title { font-size: 1.5em; } .intro { text-align: left; font-size: large; margin: 0 auto; padding: 0 20px; max-width: 640px; } pre, code { padding: 0; margin: 0; } pre { margin-left: 20px; width: 99%; overflow: auto; } </style> </head> <body> <div class="container"> <header class="header"> <img src="https://s3.amazonaws.com/jets-public/jets/images/jets.png" class="logo" alt="logo" /> <h1 class="title">Welcome. Congrats on setting up Jets.</h1> </header> <div class="intro"> <p> To get started: </p> <div class="code"><pre><code> $ jets generate scaffold Post title:string $ jets db:create db:migrate $ jets server $ open http://localhost:8888/posts $ jets help </code></pre></div> <p>More on: <a href="http://rubyonjets.com">rubyonjets.com</a></p> </div> <p class="version"> <strong>Jets version:</strong> <%= Jets.version %><br /> <strong>Ruby version:</strong> <%= RUBY_VERSION %> (<%= RUBY_PLATFORM %>) </p> </div> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems