diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..900748c --- /dev/null +++ b/Gemfile @@ -0,0 +1,6 @@ +gem 'sinatra' + +group :development do + gem 'heroku' + gem 'shotgun' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..cb27412 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,33 @@ +GEM + specs: + addressable (2.2.7) + heroku (2.21.2) + launchy (>= 0.3.2) + rest-client (~> 1.6.1) + rubyzip + term-ansicolor (~> 1.0.5) + launchy (2.0.5) + addressable (~> 2.2.6) + mime-types (1.17.2) + rack (1.4.1) + rack-protection (1.2.0) + rack + rest-client (1.6.7) + mime-types (>= 1.16) + rubyzip (0.9.6.1) + shotgun (0.9) + rack (>= 1.0) + sinatra (1.3.2) + rack (~> 1.3, >= 1.3.6) + rack-protection (~> 1.2) + tilt (~> 1.3, >= 1.3.3) + term-ansicolor (1.0.7) + tilt (1.3.3) + +PLATFORMS + ruby + +DEPENDENCIES + heroku + shotgun + sinatra diff --git a/Readme.markdown b/Readme.markdown new file mode 100644 index 0000000..c42e674 --- /dev/null +++ b/Readme.markdown @@ -0,0 +1,3 @@ +# Nothing Magical + +Our website. We hope you like it. diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..9bd8fc7 --- /dev/null +++ b/config.ru @@ -0,0 +1,6 @@ +require 'rubygems' +require 'bundler' +Bundler.require + +require './main' +run Sinatra::Application diff --git a/main.rb b/main.rb new file mode 100644 index 0000000..291bd8b --- /dev/null +++ b/main.rb @@ -0,0 +1,3 @@ +get '/' do + erb :index +end diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/humans.txt b/public/humans.txt new file mode 100644 index 0000000..0231eb0 --- /dev/null +++ b/public/humans.txt @@ -0,0 +1,6 @@ +/* TEAM */ + +Creator: Sam Soffes +Site: http://samsoff.es +Twitter: samsoffes +Location: San Francisco diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..95dcc5d --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# It's cool. Do what you want, robots. diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..2888d2f --- /dev/null +++ b/public/style.css @@ -0,0 +1,32 @@ +/* Reset */ +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}section,header,footer,nav,article,aside,figure{display:block;width:100%}mark,time,meter,progress{display:inline} + +/* General */ + +html { + -webkit-font-smoothing:antialiased; +} + +body { + width: 640px; + padding: 2em 0; + margin: 0 auto; +} + +body, input { + color: #444; + font-family: 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-weight: 300; + font-size: 17px; +} + +h1 { + color: #000; + font-size: 2em; + font-weight: 700; + margin-bottom: 0.5em; +} + +p { + margin:0 0 1em; +} diff --git a/views/index.erb b/views/index.erb new file mode 100644 index 0000000..0010841 --- /dev/null +++ b/views/index.erb @@ -0,0 +1,19 @@ + + + + + Nothing Magical + + + + +

Nothing Magical

+

We're making some stuff we hope you'll like.

+

It's not ready yet.

+
+ + +
+ + + \ No newline at end of file