medium-editor-rails 0.1.1 → 0.1.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 +5 -2
- data/lib/medium-editor-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/{medium-editor.css → medium-editor/medium-editor.css} +0 -0
- data/vendor/assets/stylesheets/{themes → medium-editor/themes}/bootstrap.css +0 -0
- data/vendor/assets/stylesheets/{themes → medium-editor/themes}/flat.css +0 -0
- data/vendor/assets/stylesheets/{themes → medium-editor/themes}/mani.css +0 -0
- data/vendor/assets/stylesheets/{themes → medium-editor/themes}/roman.css +0 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f36eb81def745913d9a5c697e857f6a75ab992c
|
|
4
|
+
data.tar.gz: 39486e0d250286fd5ceb14d5406844121ecd61d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49376b69d9a73bf1e6a5bc2370b605ddad430af22077e256946a70b2e2e8d54b017a82fd4f763fbc3b5016a33533bfeae8ece2038df8d0ed25186f83cb12b57c
|
|
7
|
+
data.tar.gz: a25b866d0adeaa6c3da1f45c5cbd3d5986190243103ef4570662a4c9a2efb17845db8039a3a1e20f4f397fc2ca96f48a755542f1606eb6b62eb6beb688d0d303
|
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Medium Editor for Rails
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/medium-editor-rails)
|
|
4
|
+
[](https://codeclimate.com/github/marjinal1st/medium-editor-rails)
|
|
5
|
+
|
|
3
6
|
This gem integrates [Medium Editor](https://github.com/daviferreira/medium-editor) with Rails asset pipeline.
|
|
4
7
|
|
|
5
8
|
## Version
|
|
@@ -25,13 +28,13 @@ $ bundle install
|
|
|
25
28
|
Include javascript file in **app/assets/javascripts/application.js**:
|
|
26
29
|
|
|
27
30
|
```javascript
|
|
28
|
-
//= require medium-
|
|
31
|
+
//= require medium-editor
|
|
29
32
|
```
|
|
30
33
|
|
|
31
34
|
Include stylesheet file on **app/assets/stylesheets/application.css**:
|
|
32
35
|
|
|
33
36
|
```scss
|
|
34
|
-
*= require medium-editor
|
|
37
|
+
*= require medium-editor/medium-editor
|
|
35
38
|
```
|
|
36
39
|
|
|
37
40
|
You can also include themes from **themes** folder, example:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: medium-editor-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ahmet Sezgin Duran
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Medium Editor integrated in Rails asset pipeline
|
|
14
14
|
email:
|
|
@@ -28,11 +28,11 @@ files:
|
|
|
28
28
|
- lib/medium-editor-rails/version.rb
|
|
29
29
|
- medium-editor-rails.gemspec
|
|
30
30
|
- vendor/assets/javascripts/medium-editor.js
|
|
31
|
-
- vendor/assets/stylesheets/medium-editor.css
|
|
32
|
-
- vendor/assets/stylesheets/themes/bootstrap.css
|
|
33
|
-
- vendor/assets/stylesheets/themes/flat.css
|
|
34
|
-
- vendor/assets/stylesheets/themes/mani.css
|
|
35
|
-
- vendor/assets/stylesheets/themes/roman.css
|
|
31
|
+
- vendor/assets/stylesheets/medium-editor/medium-editor.css
|
|
32
|
+
- vendor/assets/stylesheets/medium-editor/themes/bootstrap.css
|
|
33
|
+
- vendor/assets/stylesheets/medium-editor/themes/flat.css
|
|
34
|
+
- vendor/assets/stylesheets/medium-editor/themes/mani.css
|
|
35
|
+
- vendor/assets/stylesheets/medium-editor/themes/roman.css
|
|
36
36
|
homepage: https://github.com/marjinal1st/medium-editor-rails
|
|
37
37
|
licenses:
|
|
38
38
|
- MIT
|