Skip to content

Commit

Permalink
Twitter Bootstrap added. Theme: Slate. TODO: implement dynamic themes…
Browse files Browse the repository at this point in the history
… loading
  • Loading branch information
AlexDenisov committed Jun 22, 2012
1 parent bf23319 commit 114fc67
Show file tree
Hide file tree
Showing 78 changed files with 5,095 additions and 4,821 deletions.
110 changes: 67 additions & 43 deletions .rails_generators~
@@ -1,4 +1,19 @@
---
bootstrap:install:
- --force
- --pretend
- --quiet
- --skip
bootstrap:layout:
- --force
- --pretend
- --quiet
- --skip
bootstrap:themed:
- --force
- --pretend
- --quiet
- --skip
slim:controller:
- --force
- --pretend
Expand Down Expand Up @@ -133,12 +148,62 @@ rspec:view:
- --skip-namespace
- --old-style-hash
- --template-engine=
jquery:install:
less:assets:
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
model:
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
resource:
- --template-engine=
- --test-framework
- --helper
- --assets
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
- --force-plural
- --resource-controller=
- --actions=
- --resource-route
scaffold:
- --template-engine=
- --test-framework
- --helper
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
- --force-plural
- --resource-route
- --stylesheets
- --stylesheet-engine=
- --scaffold-controller=
- --assets
less:scaffold:
- --force
- --pretend
- --quiet
- --skip
htmlkickstart:install:
- --skip-namespace
- --old-style-hash
jquery:install:
- --force
- --pretend
- --quiet
Expand Down Expand Up @@ -263,14 +328,6 @@ migration:
- --skip-namespace
- --old-style-hash
- --orm
model:
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
observer:
- --force
- --pretend
Expand Down Expand Up @@ -312,46 +369,13 @@ plugin_new:
- --full
- --mountable
- --skip-gemspec
resource:
- --template-engine=
- --test-framework
- --helper
- --assets
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
- --force-plural
- --resource-controller=
- --actions=
- --resource-route
resource_route:
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
scaffold:
- --template-engine=
- --test-framework
- --helper
- --force
- --pretend
- --quiet
- --skip
- --skip-namespace
- --old-style-hash
- --orm
- --force-plural
- --resource-route
- --stylesheets
- --stylesheet-engine=
- --scaffold-controller=
- --assets
scaffold_controller:
- --force
- --pretend
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -4,14 +4,14 @@ gem 'rails', '3.2.6'
gem 'jquery-rails'
gem 'devise'
gem 'slim'
gem 'twitter-bootstrap-rails'

group :production do

end

group :development do
gem 'htmlkickstart'
gem "slim-rails"
gem 'slim-rails'
gem 'ruby_parser'
gem 'hpricot'
end
Expand Down
17 changes: 15 additions & 2 deletions Gemfile.lock
Expand Up @@ -48,6 +48,7 @@ GEM
coffee-script-source
execjs
coffee-script-source (1.3.3)
commonjs (0.2.6)
cucumber (1.2.1)
builder (>= 2.1.2)
diff-lcs (>= 1.1.3)
Expand Down Expand Up @@ -88,13 +89,18 @@ GEM
spork (>= 0.8.4)
hike (1.2.1)
hpricot (0.8.6)
htmlkickstart (0.0.1)
i18n (0.6.0)
journey (1.0.3)
jquery-rails (2.0.2)
railties (>= 3.2.0, < 5.0)
thor (~> 0.14)
json (1.7.3)
less (2.2.1)
commonjs (~> 0.2.6)
less-rails (2.2.3)
actionpack (>= 3.1)
less (~> 2.2.0)
libv8 (3.3.10.4)
libwebsocket (0.1.3)
addressable
listen (0.4.6)
Expand Down Expand Up @@ -184,11 +190,18 @@ GEM
tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.6)
temple (0.4.0)
therubyracer (0.10.1)
libv8 (~> 3.3.10)
thor (0.15.2)
tilt (1.3.3)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
twitter-bootstrap-rails (2.1.0)
actionpack (>= 3.1)
less-rails (~> 2.2.2)
railties (>= 3.1)
therubyracer (~> 0.10.1)
tzinfo (0.3.33)
uglifier (1.2.4)
execjs (>= 0.3.0)
Expand All @@ -212,7 +225,6 @@ DEPENDENCIES
guard-rspec
guard-spork
hpricot
htmlkickstart
jquery-rails
rails (= 3.2.6)
rspec-rails
Expand All @@ -222,4 +234,5 @@ DEPENDENCIES
slim
slim-rails
sqlite3
twitter-bootstrap-rails
uglifier (>= 1.0.3)
Binary file added app/assets/javascripts/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion app/assets/javascripts/application.js
Expand Up @@ -12,5 +12,5 @@
//
//= require jquery
//= require jquery_ujs
//= require kickstart
//= require twitter/bootstrap
//= require_tree .
4 changes: 4 additions & 0 deletions app/assets/javascripts/bootstrap.js.coffee
@@ -0,0 +1,4 @@
jQuery ->
$("a[rel=popover]").popover()
$(".tooltip").tooltip()
$("a[rel=tooltip]").tooltip()

0 comments on commit 114fc67

Please sign in to comment.