Advertisement
TwiceB

Gemfile

Jan 30th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. source 'https://rubygems.org'
  2. source 'https://rails-assets.org'
  3.  
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.1.5'
  6. # Use sqlite3 as the database for Active Record
  7. #gem 'sqlite3' #WebPortal uses PostgreSQL instead
  8. # Use SCSS for stylesheets
  9. gem 'sass-rails', '~> 5.0.0'
  10. # Use Uglifier as compressor for JavaScript assets
  11. gem 'uglifier', '>= 1.3.0'
  12. # Use CoffeeScript for .js.coffee assets and views
  13. gem 'coffee-rails', '~> 4.0.0'
  14. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  15. # gem 'therubyracer', platforms: :ruby
  16.  
  17. # Use jquery as the JavaScript library
  18. gem 'jquery-rails'
  19. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  20. gem 'turbolinks'
  21. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  22. gem 'jbuilder', '~> 2.0'
  23. # bundle exec rake doc:rails generates the API under doc/api.
  24. gem 'sdoc', '~> 0.4', group: :doc
  25.  
  26. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  27. gem 'spring', group: :development
  28.  
  29. # Use ActiveModel has_secure_password
  30. # gem 'bcrypt', '~> 3.1'
  31.  
  32. # Use unicorn as the app server
  33. # gem 'unicorn'
  34.  
  35. # Use Capistrano for deployment
  36. # gem 'capistrano-rails', group: :development
  37.  
  38. # Use debugger
  39. # gem 'debugger', group: [:development, :test]
  40.  
  41. #############################
  42. ## New Gems for Web Portal ##
  43. #############################
  44. gem 'pg' # PostgreSQL
  45.  
  46. gem 'jquery-turbolinks', '~> 2.0'
  47. gem 'jquery-ui-rails', '~> 5.0'
  48. gem 'js-routes'
  49.  
  50. # admin gems
  51. gem 'rails_admin', '~> 0.6.6'
  52.  
  53. gem 'attr_encrypted' # Database field encryption
  54.  
  55. group :test do
  56. gem 'shoulda-matchers', require: false
  57. end
  58.  
  59. # Testing gems
  60. group :test, :development do
  61. gem 'jazz_hands'
  62. gem 'rspec-rails', '~> 3.0'
  63. gem 'capybara', '~> 2.4'
  64. gem 'factory_girl_rails', '~> 4.4'
  65. gem 'database_cleaner'
  66. gem 'faker'
  67. gem 'random_data'
  68. gem 'selenium-webdriver'
  69. gem 'railroady'
  70. gem 'brakeman', require: false
  71. gem 'codesake-dawn', '~> 1.2'
  72. gem 'bundler-audit'
  73. gem 'rspec_junit_formatter'
  74. gem 'rdoc', '~> 4.1'
  75. gem 'bullet'
  76. gem 'awesome_print'
  77. gem 'simplecov', '~> 0.9', require: false
  78. gem 'simplecov-rcov', require: false
  79.  
  80. # Default profiler to off as it often overlaps needed buttons.
  81. gem 'rack-mini-profiler', '~> 0.9', require: false
  82. end
  83.  
  84. # Help ease development
  85. group :development do
  86. gem 'annotate'
  87. gem 'capistrano', '~> 3.3'
  88. gem 'capistrano-rails'
  89. gem 'capistrano-rvm'
  90. gem 'capistrano-passenger'
  91. gem 'meta_request'
  92. gem 'better_errors'
  93. gem 'binding_of_caller'
  94. gem 'web-console'
  95. gem 'rails_best_practices'
  96. end
  97.  
  98. # Auditing / Versioning
  99. gem 'paper_trail', '~> 3.0'
  100.  
  101. # Layout / Structure
  102. gem 'phony_rails'
  103. gem 'jc-validates_timeliness'
  104. gem 'ancestry'
  105. gem 'simple_form', '~> 3.0'
  106. gem 'cocoon', '~> 1.2'
  107. gem 'foundation-rails', '~> 5.5'
  108.  
  109. # Fonts / Icons
  110. # - List of icons available at http://fontawesome.io/icons/
  111. gem 'font-awesome-sass'
  112. gem 'humanize'
  113.  
  114. # Queries / AREL
  115. gem 'squeel'
  116.  
  117. # user Authentication/Authorization
  118. gem 'devise', '~> 3.2'
  119. ## Would probably like pundit v1.0 when it comes out.
  120. gem 'pundit'
  121. gem 'rolify'
  122.  
  123. # JQuery libraries
  124. gem 'jquery-datatables-rails', '~> 3.0'
  125.  
  126. gem 'unobtrusive_flash', '>= 3.1'
  127.  
  128. # Use paperclip for file uploading
  129. # https://github.com/thoughtbot/paperclip/
  130. gem 'paperclip', '~> 4.2'
  131.  
  132. # For easy cron jobs
  133. gem 'whenever', require: false
  134.  
  135. # All Bower components are placed below and repackaged by rails-assets.org
  136. # into usuable gems.
  137. gem 'rails-assets-jquery', '~> 2.1'
  138. gem 'rails-assets-jstree', '~> 3.0'
  139. gem 'rails-assets-jquery-autosize', '~> 1.18'
  140. gem 'rails-assets-chosen-bower'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement