bullet_train 1.3.16 → 1.3.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c7c67395912d62c74ed42642fb51037668bfa8ea0564fabcbb42656c9eb781e
4
- data.tar.gz: b29f54f1828514bba91bf11fcaef3f0ff9d9dbe004a01813df7bb15901f65325
3
+ metadata.gz: c51ee37f41fe5f9ca7f9532a7c17ce33bef715effb3fee84a598ebcae4900ce7
4
+ data.tar.gz: 8798d8b4a2badc16e5dcceeca245cadf4c2faf3fec55ee83a5fe8967566f128e
5
5
  SHA512:
6
- metadata.gz: 4e51c2facc7cc39166452820f19481f2f1da5c6a3aafa4cf1c7e6877b0763df43eacd6a5e6ea1fbdaa415f76be0f4636ca1a79f2864eb8b48d20c7d4ee882d62
7
- data.tar.gz: c9a4ad75b5bd0f93c294b6f0a58a8412ee7fef251abdf214e30f37124d91767095fb3c9a007738649c0fc22e2c5ff95f752eeb9317ddddc527d70f5939b6e1f6
6
+ metadata.gz: 61e70c5ad42169a14357577569cdcb3beb1123e1029c16f98fd6c69ad7d23c3962af14db7a91de508d4e24fcbd00d630c9b41b5700986e244fb6251f34d6e8ae
7
+ data.tar.gz: 411fdfebfcb92c3a58229f42f618721f9a63c53013c9a945ebba425958a4b592f77e9751dc23c540085cbed3165b5b8a8552a9b28e49d8b9bdc11c748e0d084e
@@ -1,7 +1,7 @@
1
1
  module EmailHelper
2
- def email_image_tag(image, **options)
2
+ def email_image_tag(image, **)
3
3
  image_underscore = image.tr("-", "_")
4
4
  attachments.inline[image_underscore] = File.read(Rails.root.join("app/assets/images/#{image}"))
5
- image_tag attachments.inline[image_underscore].url, **options
5
+ image_tag(attachments.inline[image_underscore].url, **)
6
6
  end
7
7
  end
@@ -78,7 +78,6 @@ en:
78
78
  resent: 'Invitation was successfully resent.'
79
79
  resent_error: Sorry, we couldn't find an invitation to resend.
80
80
  doesnt_exist: Sorry, but we couldn't find your invitation. Please contact an administrator on the team to have them send you another one.
81
- duplicate: 'Sorry, a member with the email %{user_email} has already been invited.'
82
81
  values:
83
82
  name: 'Invitation to Join %{team_name}'
84
83
  account:
data/docs/tunneling.md CHANGED
@@ -11,7 +11,7 @@ You should specifically sign up for a paid account. Although ngrok offers a free
11
11
  Once you have ngrok installed, you can start your tunnel like so, replacing `YOUR-SUBDOMAIN` with whatever subdomain you reserved in your ngrok account:
12
12
 
13
13
  ```
14
- ngrok http 3000 --subdomain=YOUR-SUBDOMAIN
14
+ ngrok http --domain=YOUR-SUBDOMAIN 3000
15
15
  ```
16
16
 
17
17
  ## Updating Your Configuration
@@ -160,7 +160,7 @@ module BulletTrain
160
160
  _, partial_view_package, partial_path_without_package = @needle.partition(/(bullet_train-core\/)?bullet_train[a-z|\-._0-9]*/)
161
161
 
162
162
  # Pop off `bullet_train-core` and the gem's version so we can call `bundle show` correctly.
163
- partial_view_package.gsub!(/bullet_train-core\//, "")
163
+ partial_view_package.gsub!("bullet_train-core/", "")
164
164
  partial_view_package.gsub!(/[-|.0-9]*$/, "") if partial_view_package.match?(/[-|.0-9]*$/)
165
165
 
166
166
  local_package_path = `bundle show #{partial_view_package}`.chomp
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.3.16"
2
+ VERSION = "1.3.17"
3
3
  end
@@ -144,6 +144,7 @@ namespace :bullet_train do
144
144
  puts "bin/hack --link: " + "Link all of your Bullet Train gems to `local/bullet_train-core`.".blue
145
145
  puts "bin/hack --link github: " + "Link all of your Bullet Train gems to the public repositories on GitHub".blue
146
146
  puts "bin/hack --link (version-number): " + "Link all of your Bullet Train gems to the version number passed.".blue
147
+ puts "bin/hack --link (custom path to package): " + "Pass a custom path to where your bullet_train-core gems are.".blue
147
148
  puts "bin/hack --reset: " + "Resets all of your gems to their original definition.".blue
148
149
  puts "bin/hack --watch-js: " + "Watches for any changes in JavaScript files gems that have an npm package.".blue
149
150
  puts "bin/hack --clean-js: " + "Resets all of your npm packages from `local/bullet_train-core` to their original definition.".blue
@@ -259,7 +260,7 @@ namespace :bullet_train do
259
260
  def set_core_gems(flag, link_flag_value, framework_packages)
260
261
  packages = framework_packages.keys
261
262
  gemfile_lines = File.readlines("./Gemfile")
262
- version_regexp = /[\d|.]/
263
+ version_regexp = /^[\d|.]$/
263
264
 
264
265
  packages.each do |package|
265
266
  original_path = "gem \"#{package}\""
@@ -285,6 +286,9 @@ namespace :bullet_train do
285
286
  "#{line.chomp}, git: 'http://github.com/bullet-train-co/bullet_train-core.git'\n"
286
287
  elsif link_flag_value&.match?(version_regexp)
287
288
  "#{line.chomp}, \"#{link_flag_value}\"\n"
289
+ elsif link_flag_value.present?
290
+ link_flag_value.gsub!(/\/$/, "") # Ensure the custom path doesn't have a slash at the end.
291
+ local_path.gsub(/path:.*/, "path: \"#{link_flag_value}/#{package}\"\n")
288
292
  else
289
293
  line.gsub(original_path, local_path)
290
294
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.16
4
+ version: 1.3.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-24 00:00:00.000000000 Z
11
+ date: 2023-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard