README.md in mastalk-0.9.0 vs README.md in mastalk-0.9.1
- old
+ new
@@ -363,10 +363,50 @@
</div>
```
`$bl_c` `$bl_m` positioning can be swapped around to switch element positions.
+### FinCap Feedback Component
+
+```
+$fincap_feedback
+ EMAIL@ADDRESS.com
+$
+```
+
+Outputs:
+
+```
+<div class="feedback-box">
+ <h3 class="feedback-box__title">
+ Give us your feedback or ask a question
+ </h3>
+ <svg xmlns="http://www.w3.org/2000/svg" class="feedback-box__icon svg-icon svg-icon--speech" focusable="false">
+ <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-icon--speech"></use>
+ </svg>
+ <a href="mailto:EMAIL@ADDRESS.com" class="feedback-box__text">
+ EMAIL@ADDRESS.com
+ </a>
+</div>
+```
+
+### FinCap Primary Button
+
+```
+$~fincap_primary_button
+ [Link Text](LINK_URL)
+$
+```
+
+Outputs:
+
+```
+<span class="article__primary-button">
+ <a href="LINK_URL">Link Text</a>
+</span>
+```
+
### Profiling Mastalk
Inside of the project you can run:
```
@@ -384,5 +424,18 @@
ruby -Ilib ./bin/mastalk-benchmarking
```
This command will print different benchmarking for Mastalk when parsing
10, 100, 200 and 500 documents.
+
+## Release the mastalk gem
+
+Get a login for rubygems.org and get added as a contributor to the mastalk
+gem.
+
+1) Update the version number in mastalk.gemspec
+2) Run bundle
+3) On the master branch, commit the changes. (e.g 'Bump version 0.0.1 ->
+0.0.2')
+4) Tag the git commit with the bump version: `git tag -a v<version here>`
+5) Build the gem: `gem build mastalk.gemspec`
+6) Publish the new gem to rubygems: `gem push mastalk-<version here>.gem