catalyst-rails 0.0.8 → 0.0.9

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: 3244bedb06c71590275486a4d2be60c55b1b5e3d714e6c82ce99a2162567be03
4
- data.tar.gz: acdca2cbe3aa21dbcee41f7dbed22eab296db390ca8a6f7e378e253d6ee4642f
3
+ metadata.gz: a0d65247f97e19b2d6535248e8396850700204b4e0d607148532ef90097c5c2d
4
+ data.tar.gz: 4bbb24b41713f1027ca20c2b0bd9f7aa23e8043bcfb12d13597dc2735bcc7d1f
5
5
  SHA512:
6
- metadata.gz: 4147b3ff3e9c1a5a2708ef171b2ba73bb954c01d25d7f759650cba1dab93db5a55e2ef109a295828d4f02442bdb4b009a67a4515021727442e90c587956d9395
7
- data.tar.gz: 429ea3ff2b590b836ced6990279003e2f3da7c88dbf123f770d0e06ff6118848c877d6211b76334667ce4aefef94fc2a87ed105e296969707c3790d63a8abbf7
6
+ metadata.gz: 7aaef005bfa1705c4e801425f0be77f0235aee7bc9fa1d81affbeb722b33880ee299473775261fb7981500a42cfaf7053b22f104b4a8b9c88b233cde44acbf12
7
+ data.tar.gz: c22f77a41573433610b10c4884c51bf17586cd7723e47dc613299f31f3121e72cdfbe780d9277e7b56c2fa2765f712acbd7672a83aaa3cbfbba7ecfe6149a55c
@@ -101,7 +101,7 @@ module Catalyst
101
101
  unless system 'yarn run which catalyst > /dev/null 2>&1'
102
102
  raise NotInstalled, <<~MESSAGE
103
103
  The catalyst binary is not available in this directory.
104
- Please follow the instructions here to intall it:
104
+ Please follow the instructions here to install it:
105
105
  https://github.com/friendsoftheweb/catalyst
106
106
  MESSAGE
107
107
  end
@@ -82,7 +82,7 @@ module Catalyst
82
82
 
83
83
  def asset_paths
84
84
  if ::Catalyst::Config.root_path
85
- Dir.glob(File.join(::Catalyst::Config.root_path, '**/*.{js,scss}')) + [
85
+ Dir.glob(File.join(::Catalyst::Config.root_path, '**/*.{js,ts,tsx,scss}')) + [
86
86
  File.join(Dir.pwd, 'yarn.lock')
87
87
  ]
88
88
  else
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Catalyst
4
4
  def self.version
5
- Gem::Version.new('0.0.8')
5
+ Gem::Version.new('0.0.9')
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: catalyst-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Martens