Skip to content

Commit

Permalink
send tracking parameters with lead creation (#1254)
Browse files Browse the repository at this point in the history
* send tracking parameters with lead creation

* remove lastmodby

* update docker ruby version

* remove limits on updating leads

* use the url for the environment in tracking params

* upgrading deprecations and rails security fixes

* re-add mini_racer

* remove net-http (uri gem issue)

* update openstax packages

* spec todo + rack-contrib bump

* remove where clause from user query
  • Loading branch information
mwvolo authored Aug 28, 2024
1 parent 3810feb commit 3e089df
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 111 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.6.3
FROM ruby:2.7.4

WORKDIR /code

Expand Down
13 changes: 8 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ git_source(:github) do |repo_name|
end

# Rails framework
gem 'rails', '5.2.4.4'
gem 'rails', '~> 5.2'
gem 'rails-i18n', '~> 5'

# Reduces boot times through caching; required in config/boot.rb
Expand Down Expand Up @@ -44,7 +44,6 @@ gem 'compass-rails', '~> 3.1.0'
gem 'coffee-rails', '5.0.0'

# JavaScript asset compiler
# 0.4.0 crashes during our build, fixed in 0.5.0 (upgrade when it's out)
gem 'mini_racer'

# JavaScript asset compressor
Expand All @@ -61,7 +60,7 @@ gem 'bcrypt', '~> 3.1.7'
gem 'doorkeeper', '~> 5.1.0'

# OAuth clients
gem 'omniauth'
gem 'omniauth', '~> 1.9'
gem 'omniauth-identity'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
Expand Down Expand Up @@ -181,8 +180,12 @@ gem 'oj_mimic_json'
# CORS for local testing/dev
gem 'rack-cors'

# Data visualization and query
gem 'blazer'

# temp fix until we update old dependencies
# gem "net-http"

group :development, :test do
# Run specs in parallel
gem 'parallel_tests'
Expand Down Expand Up @@ -234,9 +237,9 @@ group :development, :test do
# Lint RSpec files
gem 'rubocop-rspec'

gem 'faraday', '~> 1.0.0'
gem 'faraday'

gem 'faraday_middleware', '~> 1.0.0'
gem 'faraday_middleware'
end

group :development do
Expand Down
Loading

0 comments on commit 3e089df

Please sign in to comment.