-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
47 lines (41 loc) · 1.49 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
source "https://rubygems.org"
# Declare your gem's dependencies in awesome_translations.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# gem "baza", path: "/home/dev/Development/baza"
# gem "baza_models", path: "/home/dev/Development/baza_models" # github: "kaspernj/baza_models"
# gem "baza_migrations", path: "/home/dev/Development/baza_migrations"
# gem "simple_form_ransack", path: "/Users/kaspernj/Dev/Rails/simple_form_ransack"
group :development, :test do
gem "activerecord-jdbcsqlite3-adapter", platform: :jruby
gem "best_practice_project"
gem "capybara"
gem "database_cleaner"
gem "factory_bot_rails"
gem "forgery"
gem "globalize", git: "https://github.com/globalize/globalize.git"
gem "money-rails"
gem "net-smtp"
gem "pry-rails"
gem "rails_best_practices"
gem "rails-controller-testing"
gem "rspec-rails"
gem "rubocop"
gem "rubocop-capybara"
gem "rubocop-factory_bot"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "sassc"
gem "simple_form", ">= 0"
# gem "scss_lint", "0.47.1"
gem "sqlite3", platform: :ruby
gem "tzinfo-data"
end
# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.
# To use debugger
# gem 'debugger'