textile_editor_helper 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +2 -2
- data/lib/textile_editor_helper/version.rb +1 -1
- data/vendor/README +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcaa0d795eb554c103c9db2776b9369dafbe3a42
|
4
|
+
data.tar.gz: a5a3ff3fe53a497b1296e83bb5d25db9f4bb83a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2e71d23d0b38de3352da900f416886ca840878b085863f603850f4881a861862b4289ed38e42df0ba6426c7716cb629e1f19f5b820740ea952b490c37aea3db
|
7
|
+
data.tar.gz: 93ab4f9afba257e48257ce9842c024bcf4ced6dc1a00a49598ecd8d68933c822bf4ef342011e4b28b87f8be141a2e872e141410dc268205c94fcae6376620e25
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
## Textile Editor Helper
|
2
2
|
|
3
|
-
[](http://badge.fury.io/rb/textile_editor_helper)
|
4
4
|
[](http://travis-ci.org/katgironpe/textile_editor_helper)
|
5
5
|
[](https://codeclimate.com/github/katgironpe/textile_editor_helper)
|
6
6
|
[](https://gemnasium.com/katgironpe/textile_editor_helper)
|
@@ -27,7 +27,7 @@ gem 'textile_editor_helper', '0.0.31'
|
|
27
27
|
Otherwise, this should work:
|
28
28
|
|
29
29
|
```ruby
|
30
|
-
gem 'textile_editor_helper', '0.1.
|
30
|
+
gem 'textile_editor_helper', '0.1.1'
|
31
31
|
```
|
32
32
|
|
33
33
|
## Rails Quickstart
|
data/vendor/README
CHANGED
@@ -10,7 +10,7 @@ Example App
|
|
10
10
|
*********************
|
11
11
|
|
12
12
|
rails new something -d mysql
|
13
|
-
rake db:create RAILS_ENV
|
13
|
+
rake db:create RAILS_ENV
|
14
14
|
rails g scaffold Post body:text
|
15
15
|
rake db:migrate
|
16
16
|
|
@@ -22,7 +22,7 @@ Example layout
|
|
22
22
|
<html>
|
23
23
|
<head>
|
24
24
|
<title>Peace</title>
|
25
|
-
<%= stylesheet_link_tag
|
25
|
+
<%= stylesheet_link_tag 'application', media: 'all' %>
|
26
26
|
|
27
27
|
<%= csrf_meta_tags %>
|
28
28
|
<%= yield :head %>
|
@@ -30,7 +30,7 @@ Example layout
|
|
30
30
|
<body>
|
31
31
|
|
32
32
|
<%= yield %>
|
33
|
-
<%= javascript_include_tag
|
33
|
+
<%= javascript_include_tag 'application' %>
|
34
34
|
<%= yield :javascript %>
|
35
35
|
</body>
|
36
36
|
</html>
|
@@ -81,7 +81,7 @@ Example: If you use simple_form
|
|
81
81
|
********************************
|
82
82
|
|
83
83
|
<%= simple_form_for @post do |f| %>
|
84
|
-
<%= f.input :body, :
|
84
|
+
<%= f.input :body, as: :textile_editor %>
|
85
85
|
<%= f.button :submit %>
|
86
86
|
|
87
87
|
<% content_for :javascript do %>
|