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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41820014e81f8ce165810bd83a434462d85c2d75
4
- data.tar.gz: 5c939501caa475a10e9577293c7714820272393a
3
+ metadata.gz: dcaa0d795eb554c103c9db2776b9369dafbe3a42
4
+ data.tar.gz: a5a3ff3fe53a497b1296e83bb5d25db9f4bb83a9
5
5
  SHA512:
6
- metadata.gz: 6ae61f5807b37f54e2e1e4c12f4d1de0bad8d8dbc1e6f3776fb573c1793d226cd871338782d2fde1a0fb39fb961a42375dc7c9eaccb8e5346861eee5ea592d6e
7
- data.tar.gz: 7bebfa151ebecfdc046d9a4fb80f2f44bf1347f93f0a3ddad1120fbe4c3fecf6df92fe7e608f5d6d14f575b4a68b753e1ded8c7ebf4c6101506e88bcac7ca0f9
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
- [![Gem Version](https://badge.fury.io/katgironpe/textile_editor_helper.svg)](http://badge.fury.io/katgironpe/textile_editor_helper)
3
+ [![Gem Version](https://badge.fury.io/rb/textile_editor_helper.svg)](http://badge.fury.io/rb/textile_editor_helper)
4
4
  [![Build Status](https://secure.travis-ci.org/katgironpe/textile_editor_helper.png)](http://travis-ci.org/katgironpe/textile_editor_helper)
5
5
  [![Code Climate](https://codeclimate.com/github/katgironpe/textile_editor_helper.png)](https://codeclimate.com/github/katgironpe/textile_editor_helper)
6
6
  [![Dependency Status](https://gemnasium.com/katgironpe/textile_editor_helper.svg)](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.0'
30
+ gem 'textile_editor_helper', '0.1.1'
31
31
  ```
32
32
 
33
33
  ## Rails Quickstart
@@ -1,3 +1,3 @@
1
1
  module TextileEditorHelper
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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=development
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 "application", :media => "all" %>
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 "application" %>
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, :as=>:textile_editor %>
84
+ <%= f.input :body, as: :textile_editor %>
85
85
  <%= f.button :submit %>
86
86
 
87
87
  <% content_for :javascript do %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: textile_editor_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katherine Pe