debshots/Gemfile
Christoph Haas 87f545414f 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 :)
2014-11-16 18:26:03 +01:00

85 lines
2.2 KiB
Ruby

source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# Funky side-effects - so we better not use Turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
# PostgreSQL support
gem 'pg'
group :development do
gem "better_errors"
gem "binding_of_caller"
# Chrome Rails debugging app
gem 'meta_request'
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'
# Zurb Foundation
gem 'foundation-rails'
# Pagination
# Hint: rails generate kaminari:views bootstrap
gem 'kaminari'
# Lightbox image viewer for full-sized images
gem 'fancybox2-rails', '~> 0.2.4'
# Full-text search… texticle is nowadays called textacular… and it's very inflexible
#gem 'textacular', require: 'textacular/rails'
# Trying pg_search for full-text search… too slow with ranking… screw PostgreSQL
#gem 'pg_search'
# Let's use Elasticsearch. "tire" has been retired but there is not yet a worthy alternative.
#gem 'tire'
# Use SLIM as our templating language
gem 'slim-rails'