Skip to content

Commit

Permalink
inital project layout and structure, with some of the basic cruft tha…
Browse files Browse the repository at this point in the history
…t I always use, so I don't have to keep redoing the same things
  • Loading branch information
Derick Bailey committed Jan 17, 2012
0 parents commit 85ffa94
Show file tree
Hide file tree
Showing 22 changed files with 778 additions and 0 deletions.
1 change: 1 addition & 0 deletions .rvmrc
@@ -0,0 +1 @@
rvm use 1.9.2@bb.kendoui --create
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions Gemfile
@@ -0,0 +1,15 @@
source :rubygems

gem 'sinatra'
gem 'sinatra-reloader'
gem 'compass'
gem 'sass'
gem 'haml'
gem 'json'

group :development do
gem 'rb-fsevent'
gem 'guard'
gem 'guard-process'
gem 'guard-compass'
end
62 changes: 62 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,62 @@
GEM
remote: http://rubygems.org/
specs:
backports (2.3.0)
chunky_png (1.2.5)
compass (0.11.7)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
eventmachine (0.12.10)
ffi (1.0.11)
fssm (0.2.8.1)
guard (0.10.0)
ffi (>= 0.5.0)
thor (~> 0.14.6)
guard-compass (0.0.6)
compass (>= 0.10.5)
guard (>= 0.2.1)
guard-process (1.0.2)
ffi (~> 1.0.9)
guard (>= 0.4.2)
spoon (~> 0.0.1)
haml (3.1.4)
json (1.6.5)
rack (1.4.0)
rack-protection (1.2.0)
rack
rack-test (0.6.1)
rack (>= 1.0)
rb-fsevent (0.4.3.1)
sass (3.1.12)
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
sinatra-contrib (1.3.1)
backports (>= 2.0)
eventmachine
rack-protection
rack-test
sinatra (~> 1.3.0)
tilt (~> 1.3)
sinatra-reloader (1.0)
sinatra-contrib
spoon (0.0.1)
thor (0.14.6)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
compass
guard
guard-compass
guard-process
haml
json
rb-fsevent
sass
sinatra
sinatra-reloader
10 changes: 10 additions & 0 deletions Guardfile
@@ -0,0 +1,10 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'process', :name => 'Compass', :command => 'compass watch', :stop_signal => "TERM" do
end

# This is an example with all options that you can specify for guard-process
guard 'process', :name => 'Sinatra', :command => 'ruby app.rb', :stop_signal => "TERM" do
end

7 changes: 7 additions & 0 deletions app.rb
@@ -0,0 +1,7 @@
require 'haml'
require 'sinatra'
require 'compass'

get "/" do
haml :index
end
19 changes: 19 additions & 0 deletions config.rb
@@ -0,0 +1,19 @@
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "public/css"
sass_dir = "views/stylesheets"
images_dir = "public/images"
javascripts_dir = "public/javascripts"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false

preferred_syntax = :sass
5 changes: 5 additions & 0 deletions public/css/ie.css
@@ -0,0 +1,5 @@
/* Welcome to Compass. Use this file to write IE specific override styles.
* Import this file using the following HTML or equivalent:
* <!--[if IE]>
* <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
* <![endif]--> */
3 changes: 3 additions & 0 deletions public/css/print.css
@@ -0,0 +1,3 @@
/* Welcome to Compass. Use this file to define print styles.
* Import this file using the following HTML or equivalent:
* <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
68 changes: 68 additions & 0 deletions public/css/screen.css
@@ -0,0 +1,68 @@
/* Welcome to Compass.
* In this file you should write your main styles. (or centralize your imports)
* Import this file using the following HTML or equivalent:
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* line 17, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
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;
}

/* line 20, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
body {
line-height: 1;
}

/* line 22, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
ol, ul {
list-style: none;
}

/* line 24, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}

/* line 26, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}

/* line 28, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
quotes: none;
}
/* line 101, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}

/* line 30, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
a img {
border: none;
}

/* line 114, ../../../../.rvm/gems/ruby-1.9.2-p290@bb.kendoui/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
display: block;
}
33 changes: 33 additions & 0 deletions public/javascripts/backbone-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions public/javascripts/jquery-1.7.1.min.js

Large diffs are not rendered by default.

0 comments on commit 85ffa94

Please sign in to comment.