reactionview 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51a255c22b69bc455279795b79a46d0390cc95831c67c9581d1911ba2234d40b
4
- data.tar.gz: 648e076ce374e61f4878c41fb4fe39b6dbf4c8092bda379757981acf558ac646
3
+ metadata.gz: 621333d27b931ffd09b19bb6093da53a62512dcc9c84003788f1830a20ac6bfd
4
+ data.tar.gz: fdf651f1394eeb2bbb1abb6a2cad629aad7632604afc913c98bf0020110d33cf
5
5
  SHA512:
6
- metadata.gz: 50000407786468ea49d87b8b694d4a37ed128900f8af4e046f89d3c70b06c1b9965fb40c8102d637b5109ad52e153555f4fe20d0d93e3adbb63100e553088518
7
- data.tar.gz: ba5bd10f9c843b5131707ddc4958d6f6cad361f9e11e116c95a43b21314e5d2c465de0afd213277b52d89af6b69094bd7511fea3733bb5ee01cfa9789899e4f4
6
+ metadata.gz: c1c7a2fd88ce0ef154d3b86bf03c17ac9f1f6eb189b0eb3ce30bb2fd02ea9dfb6b6d6a39dccc0e5ac1dfb9257cd0560267091e44e4b693c1032c57318cc9b50d
7
+ data.tar.gz: 17a8008f77dce184b7466fee9bd8941de334b9c3ae22be3f5f4506f92b96b855f6edaaa38ca2ac4f5c1c96c14be53d3a8191e508b1b1f79093669906289d5fa7
data/README.md CHANGED
@@ -46,8 +46,14 @@ ReActionView.configure do |config|
46
46
  # Enable debug mode
47
47
  config.debug_mode = Rails.env.development?
48
48
 
49
+ # Custom path for editor "open in editor" links (optional, defaults to Rails.root)
50
+ # config.project_path = ENV.fetch('PROJECT_PATH', Rails.root.to_s)
51
+
49
52
  # Validation mode (:raise, :overlay, or :none) — defaults to :raise in test, :overlay otherwise
50
53
  # config.validation_mode = :overlay
54
+
55
+ # How to handle templates that come from gems (:fallback, :skip, or :compile), defaults to :fallback
56
+ # config.external_template_mode = :skip
51
57
  end
52
58
  ```
53
59