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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7690ff33ddef4c3811e8b1d3704d5a8c3a934591
4
- data.tar.gz: c0a8b1d611535cd71ff31cbaca39c59d781e3e5a
3
+ metadata.gz: 10c9898761734e824af6b36b1c9061094892ff36
4
+ data.tar.gz: 049e44cc364eae8b7259d675cfaf3de1eb3c9e9f
5
5
  SHA512:
6
- metadata.gz: 62ace69a7a568cec513260009e439231c78f80bfa1fd0d81003d5c2d193275ff7eedd6e95d3686a989d719acfbda58710082ab9188b4bfeb357b78f915a0a30d
7
- data.tar.gz: 1a5e67206c9fc7fe25e089b5c8293213c4d85d53ce10cc5daa2013dc36b29065341a7cb5108466a96fea3853c62e1f495ca570104fa41471456b6c65d4d85e51
6
+ metadata.gz: c766dd40eae2fb543d28eccdc1c705f3fd794be0d0734f1acdd388f927d9d0e8a24b15806e2cd0e830c0828fa6ebcf2b8e5cccbaa60466d6c75861576def14d1
7
+ data.tar.gz: 33ab4d889613c1c57c3e843ee06cde4b1f19fa173320346597201121786a14fb1eb4b759d291b8ad4f1458ba2a950037ce93913f3882788f5f4531f108438e89
data/README.md CHANGED
@@ -1,35 +1,38 @@
1
- # JQuery Text Editor for Ruby on Rails application
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 [JQuery Text
6
- Editor][1] in Ruby on Rails' application.
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
- ```ruby
19
- # in rails application's stylesheets, eg. application.css
20
- #= require jqueryte
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
- [JQuery Text Editor Documentation][2].
29
+ [jQuery Text Editor Documentation][2].
27
30
 
28
31
  ## Version
29
- This gem integrates JQuery Text Editor v1.4.0.
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 'JQuery Text Editor'
35
- [2]: http://jqueryte.com/documentation 'JQuery Text Editor Documentation'
37
+ [1]: http://jqueryte.com 'jQuery Text Editor'
38
+ [2]: http://jqueryte.com/documentation 'jQuery Text Editor Documentation'
@@ -1,7 +1,7 @@
1
1
  module JQueryte
2
2
  class Engine < ::Rails::Engine
3
3
  initializer 'jqueryte.assets.precompile' do |app|
4
- app.config.assets.precompile += %w(jquery-te.css jquery-te.js)
4
+ app.config.assets.precompile += %w(jqueryte.css jqueryte.js)
5
5
  end
6
6
  end
7
7
  end
@@ -1,3 +1,3 @@
1
1
  module JQueryte
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
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.1
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-24 00:00:00.000000000 Z
12
+ date: 2016-07-25 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: A lightweight HTML editor works with WYSIWYG model
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: JQuery text editor for rails
54
+ summary: jQuery text editor engine for Ruby on Rails application
52
55
  test_files: []