Advertisement
starfry

Gemfile Trailblazer

Sep 25th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.02 KB | None | 0 0
  1. source 'https://rubygems.org'                                                        
  2.  
  3. # Rails core
  4. gem 'rails', '4.2.4'
  5.  
  6. # Trailblazer
  7. gem 'trailblazer' #, git: "https://github.com/apotonick/trailblazer.git"
  8. gem 'trailblazer-rails'
  9. gem 'cells'
  10. gem 'cells-erb'
  11.  
  12. # Styling and layout
  13. gem 'sass-rails', '~> 5.0'     # Use SCSS for stylesheets
  14. gem 'uglifier', '>= 1.3.0'     # Use Uglifier as compressor for JavaScript assets
  15. gem 'coffee-rails', '~> 4.1.0' # Use CoffeeScript for .coffee assets and views
  16. gem 'bootstrap-sass'           # Use Bootstrap for layout
  17. gem 'foundation-rails'         # Use Foundation for layout
  18. gem 'haml-rails'
  19. gem 'simple_form'
  20. gem 'font-awesome-rails'
  21.  
  22. # Model Attributes
  23. gem 'gravtastic'               # A user can have a gravatar icon
  24. gem 'bcrypt', '~> 3.1.7'       # A user has_secure_password digest
  25.  
  26. # I18N
  27. gem 'i18n-country-translations'
  28.  
  29. # Use sqlite3 as the database for Active Record
  30. gem 'sqlite3'
  31. # See https://github.com/rails/execjs#readme for more supported runtimes
  32. # gem 'therubyracer', platforms: :ruby
  33.  
  34. # Use jquery as the JavaScript library
  35. gem 'jquery-rails'
  36. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  37. gem 'turbolinks'
  38. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  39. gem 'jbuilder', '~> 2.0'
  40. # bundle exec rake doc:rails generates the API under doc/api.
  41. gem 'sdoc', '~> 0.4.0', group: :doc
  42.  
  43.  
  44. # Use Unicorn as the app server
  45. # gem 'unicorn'
  46.  
  47. # Use Capistrano for deployment
  48. # gem 'capistrano-rails', group: :development
  49.  
  50. group :development, :test do
  51.   # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  52.   gem 'byebug'
  53.   gem 'minitest-spec-rails'
  54. end
  55.  
  56. group :development do
  57.   # Access an IRB console on exception pages or by using <%= console %> in views
  58.   gem 'web-console', '~> 2.0'
  59.  
  60.   # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  61.   gem 'spring'
  62. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement