forked from bofh/fetsite
96 lines
2.2 KiB
Ruby
Executable File
96 lines
2.2 KiB
Ruby
Executable File
source 'https://rubygems.org'
|
|
|
|
gem 'rails', '3.2.9'
|
|
|
|
# Bundle edge Rails instead:
|
|
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
|
gem 'mysql2'
|
|
gem 'sqlite3'
|
|
gem 'execjs', '~>1.4.0'
|
|
|
|
gem 'sanitize'
|
|
# Gems used only for assets and not required
|
|
# in production environments by default.
|
|
gem 'sass-rails', '~> 3.2'
|
|
gem 'coffee-rails', '~> 3.2.1'
|
|
gem 'bootstrap-sass','~> 2.3.2.1'
|
|
|
|
group :assets do
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
gem 'therubyracer', :platforms => :ruby
|
|
gem 'uglifier', '>= 1.0.3'
|
|
end
|
|
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# To use ActiveModel has_secure_password
|
|
# gem 'bcrypt-ruby', '~> 3.0.0'
|
|
|
|
# To use Jbuilder templates for JSON
|
|
# gem 'jbuilder'
|
|
|
|
# Use unicorn as the app server
|
|
# gem 'unicorn'
|
|
|
|
# Deploy with Capistrano
|
|
# gem 'capistrano'
|
|
|
|
# To use debugger
|
|
# gem 'debugger'
|
|
|
|
|
|
# Formbuilder for easier form generation
|
|
gem 'formtastic', '~>2.2.1'
|
|
gem 'formtastic-bootstrap', '~>2.1.3' #, :git => "git://github.com/mjbellantoni/formtastic-bootstrap.git"
|
|
# TinyMCE
|
|
gem "tinymce-rails" , '>=3.5.8'
|
|
|
|
# Internationalisierung
|
|
#gem "globalize3" ,'~>3.0.4'
|
|
gem "globalize" ,'~>3.0.4'#,:git =>'git://github.com/globalize/globalize.git'
|
|
gem 'globalize-versioning'
|
|
# Version controll
|
|
gem "paper_trail" , '>=2.7.0', :git=>'git://github.com/airblade/paper_trail.git'
|
|
|
|
# User management
|
|
gem "devise" ,'~>2.2.3'
|
|
gem "omniauth"
|
|
gem "omniauth-facebook"
|
|
gem "omniauth-ldap"
|
|
|
|
# Roles for users
|
|
gem "rolify"
|
|
|
|
# Abilities
|
|
gem "cancan"
|
|
|
|
# Fileupload
|
|
|
|
gem 'paperclip' ,'~>3.4.0'
|
|
|
|
gem 'git'
|
|
gem 'haml'
|
|
#gem 'RedCloth'
|
|
#gem 'gollum'
|
|
gem 'awesome_nested_set'
|
|
gem 'annotate', ">=2.5.0"
|
|
gem 'carrierwave', "~>0.9.0"
|
|
group :development, :test do
|
|
gem 'factory_girl_rails'
|
|
gem 'rspec-rails'
|
|
end
|
|
|
|
gem "simple_calendar", "~> 0.1.9"
|
|
gem 'rmagick'
|
|
|
|
gem 'bootstrap-addons-rails'
|
|
gem "jquery-fileupload-rails"
|
|
gem "jquery-ui-rails","~> 4.1.1"
|
|
|
|
# gem "jquery-sortable-rails"
|
|
gem "seed_dump", "~> 0.5.3"
|
|
#gem "themes_for_rails" ,:git =>'git://github.com/tkriplean/themes_for_rails.git'
|
|
#gem "themes_for_rails", :git=> 'git://github.com/lucasefe/themes_for_rails.git'
|
|
gem 'themes_for_rails'
|
|
gem 'remotipart', :git =>'git://github.com/JangoSteve/remotipart.git' |