mrml-rails 0.2.0 → 0.3.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -1
  3. data/lib/mrml/rails/version.rb +1 -1
  4. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b7166eb77f7777ddbffaf8c61c8b1dcd85021fd941fc8e98295a75fdad2eb6f
4
- data.tar.gz: 7e39715475061dda7e3c79db6808f28f8ec603677b4d9629630542c70d9b5b1d
3
+ metadata.gz: 3886bc4409463e90435cedd42ae1b300912ffd538c629f4ff0cec1d68e18d445
4
+ data.tar.gz: ac69f84c99f3656c7ba02a811b0795ea2b1e00098686eb8cccebe0a370e5a22e
5
5
  SHA512:
6
- metadata.gz: cafd40c3f12f77f138b8c5046bbb32d061edb21c29a47ed760afd7d31af75fa008acb47e536564a746f698d4920f31a3e33482f97d0d13c0f169627d2d9d4c4b
7
- data.tar.gz: 183b26a893dd6f2d7302dc19a86fde2e24ed410a69a3a89929837037ac5bd42a97ee7334ae085a417ec67c122f47d2a53cac9e6ee375b3c255d05f1e8fb0ce06
6
+ metadata.gz: 519b0c71a2eb4d5e1a77a66bfe2fef39cafa8564a8498318738cd4ef516feb63819ec5b0523238e0d58af0f7c97b4a4405fe97ec253d2d0c95240a1a48b483c9
7
+ data.tar.gz: 2273af58264a65b9884f364c0682fbcda4564dbed286c604aa3c1c72d248dcd0845d79a7b979877f663c7c8ea0c5094b4384038fc161eb1957a722ab5ce3f180
data/README.md CHANGED
@@ -26,7 +26,21 @@ I.e.: `sign_up.html.mjml`, `sign_up.mjml`
26
26
 
27
27
  ## Development
28
28
 
29
- TODO
29
+ 1. Setup the tools with: `asdf install` (make sure you have the Ruby and Rust asdf plugins installed)
30
+ 2. Run `bundle install`
31
+ 3. For rspec run: `bundle exec rspec`
32
+
33
+ ## Heroku Rust Setup
34
+
35
+ 1. Add the rust buildpack to the app (and app.json): `https://buildpack-registry.s3.amazonaws.com/buildpacks/emk/rust.tgz`
36
+ 2. Add a RustConfig with:
37
+
38
+ ```
39
+ VERSION=1.57.0
40
+ RUST_SKIP_BUILD=1
41
+ ```
42
+
43
+ 3. Deploy
30
44
 
31
45
  ## Contributing
32
46
 
@@ -1,5 +1,5 @@
1
1
  module Mrml
2
2
  module Rails
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mrml-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joakim Nylén
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-05 00:00:00.000000000 Z
11
+ date: 2021-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '0.2'
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
- version: '0.5'
36
+ version: '0.7'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0.2'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
- version: '0.5'
46
+ version: '0.7'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: railties
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -112,7 +112,7 @@ metadata:
112
112
  homepage_uri: https://github.com/oddcamp/mrml-rails
113
113
  source_code_uri: https://github.com/oddcamp/mrml-rails
114
114
  changelog_uri: https://github.com/oddcamp/mrml-rails/releases
115
- post_install_message:
115
+ post_install_message:
116
116
  rdoc_options: []
117
117
  require_paths:
118
118
  - lib
@@ -127,8 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 3.1.4
131
- signing_key:
130
+ rubygems_version: 3.1.6
131
+ signing_key:
132
132
  specification_version: 4
133
133
  summary: Rails Template Engine for MJML (Rust-variant called MRML)
134
134
  test_files: []