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

Gemfile 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 'font-awesome-rails'
  27. gem 'bootstrap-timepicker-rails'
  28. gem 'simple_form'
  29. gem 'friendly_id', '~> 5.0.0'
  30. gem 'devise'
  31. gem "letter_opener", :group => :development
  32. gem 'redcarpet'
  33. gem 'summernote-rails'
  34. # Use ActiveModel has_secure_password
  35. # gem 'bcrypt', '~> 3.1.7'
  36. # Use unicorn as the app server
  37. # gem 'unicorn'
  38. # Use Capistrano for deployment
  39. # gem 'capistrano', group: :development
  40. # Use debugger
  41. # gem 'debugger', group: [:development, :test]