Getting the project working again
Replace Twitter Bootstrap by Zurb Foundation Used @import in SCSS instad of require_tree for proper order and use of variables like $debian_color Moved old files out of the way (renamed them to xx*) Welcome controller (/) works Moved templates from ERB to SLIM format Fixed database settings Reduced routes to working ones Tidied up Gemfile Checked in experimental lab files Tried to find a good description for this massive commit :)
This commit is contained in:
parent
a7e05b2b78
commit
87f545414f
38 changed files with 3341 additions and 156 deletions
18
Gemfile
18
Gemfile
|
|
@ -4,7 +4,7 @@ source 'https://rubygems.org'
|
|||
gem 'rails', '4.0.0'
|
||||
|
||||
# Use sqlite3 as the database for Active Record
|
||||
gem 'sqlite3'
|
||||
# gem 'sqlite3'
|
||||
|
||||
# Use SCSS for stylesheets
|
||||
gem 'sass-rails', '~> 4.0.0'
|
||||
|
|
@ -16,7 +16,7 @@ gem 'uglifier', '>= 1.3.0'
|
|||
gem 'coffee-rails', '~> 4.0.0'
|
||||
|
||||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
||||
gem 'therubyracer', platforms: :ruby
|
||||
# gem 'therubyracer', platforms: :ruby
|
||||
|
||||
# Use jquery as the JavaScript library
|
||||
gem 'jquery-rails'
|
||||
|
|
@ -59,8 +59,12 @@ end
|
|||
# Twitter Bootstrap template
|
||||
#gem 'bootstrap-sass'
|
||||
#gem 'anjlab-bootstrap-rails', '>= 3.0.0.0'
|
||||
gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
|
||||
:github => 'anjlab/bootstrap-rails'
|
||||
# gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
|
||||
# :github => 'anjlab/bootstrap-rails'
|
||||
|
||||
# Zurb Foundation
|
||||
gem 'foundation-rails'
|
||||
|
||||
# Pagination
|
||||
# Hint: rails generate kaminari:views bootstrap
|
||||
gem 'kaminari'
|
||||
|
|
@ -74,8 +78,8 @@ gem 'fancybox2-rails', '~> 0.2.4'
|
|||
# Trying pg_search for full-text search… too slow with ranking… screw PostgreSQL
|
||||
#gem 'pg_search'
|
||||
|
||||
# Let's use Elasticsearch… meh, tire is no longer supported
|
||||
# Let's use Elasticsearch. "tire" has been retired but there is not yet a worthy alternative.
|
||||
#gem 'tire'
|
||||
|
||||
# ElasticSearch access
|
||||
gem 'elasticsearch-ruby'
|
||||
# Use SLIM as our templating language
|
||||
gem 'slim-rails'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue