A website template with lots of features, built with ruby on rails.

Gemfile 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '4.0.4'
  4. # Use postgresql as the database for Active Record
  5. gem 'pg'
  6. # Use Uglifier as compressor for JavaScript assets
  7. gem 'uglifier', '>= 1.3.0'
  8. # Use CoffeeScript for .js.coffee assets and views
  9. gem 'coffee-rails', '~> 4.0.0'
  10. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  11. # gem 'therubyracer', platforms: :ruby
  12. # Use jquery as the JavaScript library
  13. gem 'jquery-rails'
  14. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  15. gem 'turbolinks'
  16. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  17. gem 'jbuilder', '~> 1.2'
  18. group :doc do
  19. # bundle exec rake doc:rails generates the API under doc/api.
  20. gem 'sdoc', require: false
  21. end
  22. gem "therubyracer"
  23. gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
  24. gem "twitter-bootstrap-rails"
  25. gem 'flatstrap-rails'
  26. gem 'bootstrap-timepicker-rails'
  27. gem 'simple_form'
  28. gem 'friendly_id', '~> 5.0.0'
  29. gem 'devise'
  30. gem "letter_opener", :group => :development
  31. gem 'redcarpet'
  32. gem 'summernote-rails'
  33. # Use ActiveModel has_secure_password
  34. # gem 'bcrypt', '~> 3.1.7'
  35. # Use unicorn as the app server
  36. # gem 'unicorn'
  37. # Use Capistrano for deployment
  38. # gem 'capistrano', group: :development
  39. # Use debugger
  40. # gem 'debugger', group: [:development, :test]