jqueryte 0.0.1 → 0.0.2
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 +19 -16
- data/lib/jqueryte/engine.rb +1 -1
- data/lib/jqueryte/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10c9898761734e824af6b36b1c9061094892ff36
|
4
|
+
data.tar.gz: 049e44cc364eae8b7259d675cfaf3de1eb3c9e9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c766dd40eae2fb543d28eccdc1c705f3fd794be0d0734f1acdd388f927d9d0e8a24b15806e2cd0e830c0828fa6ebcf2b8e5cccbaa60466d6c75861576def14d1
|
7
|
+
data.tar.gz: 33ab4d889613c1c57c3e843ee06cde4b1f19fa173320346597201121786a14fb1eb4b759d291b8ad4f1458ba2a950037ce93913f3882788f5f4531f108438e89
|
data/README.md
CHANGED
@@ -1,35 +1,38 @@
|
|
1
|
-
#
|
1
|
+
# jQuery Text Editor engine for Ruby on Rails application
|
2
2
|
|
3
3
|
## Introduction
|
4
4
|
|
5
|
-
This gem jqueryte is a rails engine which makes it easy to use [
|
6
|
-
Editor][1] in Ruby on Rails
|
5
|
+
This gem jqueryte is a rails engine which makes it easy to use [jQuery Text
|
6
|
+
Editor][1] in Ruby on Rails application.
|
7
7
|
|
8
8
|
## Installation
|
9
|
-
|
10
|
-
`gem install jqueryte`
|
11
|
-
|
12
|
-
or add it to Gemfile
|
9
|
+
add this line to Gemfile
|
13
10
|
|
14
11
|
`gem jqueryte`
|
15
12
|
|
13
|
+
and issue `bundle install`
|
14
|
+
|
16
15
|
## Usage
|
17
16
|
|
18
|
-
```
|
19
|
-
|
20
|
-
|
17
|
+
```
|
18
|
+
/* in rails application's stylesheets, eg. application.css
|
19
|
+
*= require jqueryte
|
20
|
+
*/
|
21
|
+
```
|
21
22
|
|
22
|
-
# in rails application's javascript, eg. application.js
|
23
|
-
#= require jqueryte
|
24
23
|
```
|
24
|
+
// in rails application's javascript, eg. application.js
|
25
|
+
//= require jqueryte
|
26
|
+
```
|
27
|
+
|
25
28
|
Then it is ready for use. For how to use this editor itself, please refer to
|
26
|
-
[
|
29
|
+
[jQuery Text Editor Documentation][2].
|
27
30
|
|
28
31
|
## Version
|
29
|
-
This gem integrates
|
32
|
+
This gem integrates jQuery Text Editor v1.4.0.
|
30
33
|
|
31
34
|
## Licence MIT
|
32
35
|
Copyright (c) 2016 Pan Gaoyong
|
33
36
|
|
34
|
-
[1]: http://jqueryte.com '
|
35
|
-
[2]: http://jqueryte.com/documentation '
|
37
|
+
[1]: http://jqueryte.com 'jQuery Text Editor'
|
38
|
+
[2]: http://jqueryte.com/documentation 'jQuery Text Editor Documentation'
|
data/lib/jqueryte/engine.rb
CHANGED
data/lib/jqueryte/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jqueryte
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pan Gaoyong
|
@@ -9,9 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-07-
|
12
|
+
date: 2016-07-25 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description:
|
14
|
+
description: |-
|
15
|
+
The gem jqueryte is a rails engine which makes it easy to\
|
16
|
+
use a lightweight WYSIWYG HTML jQuery Text Editor in Ruby on Rails\
|
17
|
+
application.
|
15
18
|
email: pan.gaoyong@gmail.com
|
16
19
|
executables: []
|
17
20
|
extensions: []
|
@@ -48,5 +51,5 @@ rubyforge_project:
|
|
48
51
|
rubygems_version: 2.5.1
|
49
52
|
signing_key:
|
50
53
|
specification_version: 4
|
51
|
-
summary:
|
54
|
+
summary: jQuery text editor engine for Ruby on Rails application
|
52
55
|
test_files: []
|