-
Notifications
You must be signed in to change notification settings - Fork 257
/
Gemfile
151 lines (113 loc) · 3.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
source "https://rubygems.org"
# Declare your gem's dependencies in pwb.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
# gemspec
gem "rails", "~> 7.0"
# 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.
ruby "3.1.2"
# gem 'globalize', git: 'https://github.com/globalize/globalize'
# gem 'globalize', github: 'globalize/globalize'
# below needed by above - (in gemspec)
# gem 'activemodel-serializers-xml'
# gem 'globalize-accessors'
# gem 'carrierwave', '>= 1.0.0.rc', '< 2.0'
# To use a debugger
# gem 'byebug', group: [:development, :test]
group :development, :test do
gem "selenium-webdriver"
gem "vcr"
gem "webmock"
# gem 'jasmine-rails', github: 'searls/jasmine-rails'
# gem 'jasmine-jquery-rails', github: 'travisjeffery/jasmine-jquery-rails'
# if ENV['TRAVIS']
# gem "codeclimate-test-reporter", require: false
# else
# gem 'simplecov', require: false
# end
gem "simplecov", require: false
unless ENV["CI"]
# uncommenting below will result in travis ci prompting me to Run `bundle install` elsewhere and add the
# updated Gemfile.lock to version control
# gem 'launchy'
# gem 'annotate'
# gem 'bumpy'
# gem 'yard'
# gem 'redcarpet'
# gem 'spring'
# gem 'spring-commands-rspec'
end
gem "launchy"
# launchy allows me to use save_and_open_page
# in feature specs to see current page being tested
gem "rubocop", require: false
gem "pry-byebug"
gem "capybara"
gem "database_cleaner"
# , '~> 1.3'
gem "rails-controller-testing"
gem "factory_bot_rails"
gem "poltergeist"
# , '~> 1.10'
# gem 'rspec-activemodel-mocks', '~> 1.0'
gem "rspec-rails"
gem "shoulda-matchers"
gem "font-awesome-rails"
gem "guard"
gem "guard-rspec", require: false
gem "zeus"
gem "json_spec"
gem "rails-perftest"
gem "ruby-prof", "0.15.9"
gem "apparition"
end
group :development do
gem "guard-rubocop"
# below 2 for precompiling assets
gem "closure-compiler"
gem "yui-compressor"
end
# /Users/me/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/localeapp-2.1.1/lib/localeapp/default_value_handler.rb
# below overwrites I18n::Backend::Base above which causes seeder to break in specs
# gem 'localeapp'
# gem 'paloma', github: 'fredngo/paloma'
gem "paloma", "~> 6.1.0"
# gem 'bourbon'
# gem 'property_web_scraper', github: 'RealEstateWebTools/property_web_scraper'
gem "sassc-rails"
# capybary now requires puma as webserver by default
gem "puma"
gem "pg" #, "~> 0.21.0"
gem "carrierwave", "~> 2.2"
gem "cloudinary", "~> 1.23"
gem "devise", "~> 4.8"
gem "omniauth", "~> 2.1"
gem "geocoder", "~> 1.8"
gem "i18n", "~> 1.10"
gem "i18n-active_record", "~> 1.1"
gem "globalize", "~> 6.2"
gem "money-rails", "~> 1.15"
gem "simple_form", "~> 5.1"
gem "jsonapi-resources", "~> 0.10.7"
gem "globalize-accessors", "~> 0.3.0"
gem "active_hash", "~> 3.1"
gem "flag_shih_tzu", "~> 0.3.23"
gem "bootstrap-sass", "~> 3.4"
gem "jquery-rails", "~> 4.5"
gem "liquid", "~> 5.3"
# https://stackoverflow.com/questions/71191685/visit-psych-nodes-alias-unknown-alias-default-psychbadalias
# As per above, need to fix psych gem below v4
gem "psych", "< 4"
gem "vite_rails", "~> 3.0"
gem "graphql", "~> 2.0"
gem "graphiql-rails", group: :development
gem "faraday", "~> 2.3"
gem "rets", "~> 0.11.2"
gem "rack-cors", "~> 1.1"
gem "redis", "~> 4.7"
# redis gem needs to be before logster
gem "logster", "~> 2.11"
gem "ruby_odata", "~> 0.1.0"