tracks/Gemfile

91 lines
2.3 KiB
Text
Raw Normal View History

2012-04-05 10:43:56 +02:00
source 'https://rubygems.org'
2018-08-30 16:22:35 +02:00
gem 'rails', '~> 4.2.10'
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.1.0'
2013-05-11 23:12:20 +02:00
2014-04-11 22:45:57 +02:00
#gem 'json'
2013-07-28 13:36:47 +02:00
2013-12-26 22:01:17 -06:00
# todo: remove xml api
gem 'actionpack-xml_parser', '>=1.0.1'
2013-05-11 23:12:20 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2015-02-24 21:29:10 -05:00
gem 'therubyracer', group: :therubyracer
2013-05-11 23:12:20 +02:00
gem 'uglifier', '>=1.3.0'
2018-07-24 14:36:13 -07:00
gem 'jquery-rails' , '~> 3.1.3'
gem 'jquery-ui-rails' , '~>5.0.5'
2012-03-19 14:05:54 +01:00
# you may comment out the database driver(s) you will not be using.
2013-12-26 22:01:17 -06:00
# This will prevent a native build of the driver. Building native drivers is not
# always possible on all platforms
# Alternatively use --without <group> arguments to bundler to not install that group
gem "sqlite3", group: :sqlite
gem "mysql2", "~> 0.3.17", group: :mysql
gem "RedCloth"
gem "sanitize", ">=3.0.0"
2014-06-28 12:16:21 -04:00
gem "will_paginate"
gem "acts_as_list"
2018-07-24 14:36:13 -07:00
gem "aasm", '~> 3.4.0'
gem "htmlentities"
2012-04-11 17:36:22 +02:00
gem "swf_fu"
gem "rails_autolink"
2015-02-25 00:44:13 -05:00
gem 'thin'
2015-08-05 12:58:52 +02:00
gem 'paperclip'
2012-04-11 17:36:22 +02:00
2012-04-05 10:43:56 +02:00
# To use ActiveModel has_secure_password
2014-06-24 23:07:03 -04:00
gem 'bcrypt', '~> 3.1.7'
2012-04-05 10:43:56 +02:00
2013-05-11 23:12:20 +02:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 1.2'
2013-05-11 23:12:20 +02:00
2015-08-20 22:03:44 -05:00
gem "bootstrap-sass", "3.3.3"
2016-01-31 12:51:14 -05:00
gem "font-awesome-sass", "~> 4.5.0"
2015-08-07 23:15:30 -04:00
group :development do
gem "spring"
gem "yard"
2015-08-09 17:05:04 -04:00
gem 'tolk', '~> 1.9.3'
gem "bullet"
2014-01-11 14:33:14 +01:00
gem "rack-mini-profiler"
gem "rack-dev-mark"
end
2012-04-27 14:22:16 +02:00
2016-01-31 11:06:45 -05:00
group :development, :test do
gem 'pry'
2018-06-18 20:13:13 -05:00
gem "rubocop", "~> 0.49", require: false
2016-01-31 11:06:45 -05:00
end
2012-04-27 14:22:16 +02:00
group :test do
# Pull in the fix for rails-dom-testing issue #42
# TODO: Remove with Rails 5 and rails-dom-testing 2.x
2018-07-28 11:05:25 -07:00
gem 'rails-dom-testing', git: 'https://github.com/rails/rails-dom-testing', ref: 'a64f30514ee65f172c43f42cfd4500b5e11a561a'
gem "factory_bot_rails"
2013-02-23 15:16:03 +01:00
gem "rspec-expectations"
gem "database_cleaner"
gem "mocha", :require => false
gem "minitest-stub-const"
2013-02-23 15:16:03 +01:00
gem "selenium-webdriver", "~> 2.53"
2013-12-26 22:01:17 -06:00
2013-06-17 10:06:38 +02:00
# uncomment to use the webkit option. This depends on Qt being installed
# gem "capybara-webkit"
2013-12-26 22:01:17 -06:00
# uncomment to be able to make screenshots from scenarios
#gem "capybara-screenshot"
#gem "launchy"
2013-09-23 16:49:59 +02:00
gem "simplecov"
# get test coverage info on codeclimate
2018-08-02 10:32:35 -07:00
gem "codeclimate-test-reporter", "1.0.7", group: :test, require: nil
2012-08-28 08:41:25 -05:00
end