jekyll-plugin-rtlify 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e40a5ffc473aeccd08fecc5beb8b5f994bdc483e
4
- data.tar.gz: 2a3199263e34a0246e16a173dc99f35cd8f1dffa
3
+ metadata.gz: 5a54ce1f510472d14cc8b1cf8116ddb488bb4289
4
+ data.tar.gz: f9455a9f0a52ae9cc512113ea2bb29428cae9f70
5
5
  SHA512:
6
- metadata.gz: 2696a18378582c8f32cd9ee20d27f29708f5f0f63c2d5034b5d59cc78e992dee71e3ab9c178815c27215a86947b279c8c75bfb4a5c2d92df7fb44280eb3d34f7
7
- data.tar.gz: 829cb03ea3e5ee1f196b706a5a5b2d4de3da8263a64fc041fae56b33b2d2722567a4a7700726efed3632c66b2ec3dff399d2dd052cbde0371f3d404ec77d2363
6
+ metadata.gz: 0d93aa346d620ddd4106b4b1e1fa10e7c79ebac684f2fa26a7be577164be5381e9bc50bcb06176b80847674603d031f4cb277e721e2921f92de0aa851eb39a61
7
+ data.tar.gz: de1fd0ed1cca811098b3ba0744bfe8d81962f199f36a48af05bab0126c9b9f0b6c22008245975a28282dc69ad4576afe2ed2d2aa31fe1d4c19db7fc72b69bf2c
@@ -0,0 +1 @@
1
+ require 'jekyll/rtlify'
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*-
2
+
1
3
  module Jekyll
2
4
  class RTLifyTag < Liquid::Tag
3
5
 
@@ -16,6 +18,7 @@ module Jekyll
16
18
  tags.each { |tag| html = html.gsub(/<#{tag}/, "<#{tag} dir=\"auto\"")}
17
19
  html
18
20
  end
21
+
19
22
  end
20
23
  end
21
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-plugin-rtlify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keyvan Mir Mohammad Sadeghi
@@ -57,14 +57,14 @@ email:
57
57
  - keyvan.m.sadeghi@gmail.com
58
58
  executables: []
59
59
  extensions: []
60
- extra_rdoc_files: []
60
+ extra_rdoc_files:
61
+ - README.md
62
+ - LICENSE
61
63
  files:
62
- - ".gitignore"
63
- - Gemfile
64
64
  - LICENSE
65
65
  - README.md
66
- - _plugins/rtlify.rb
67
- - jekyll-plugin-rtlify.gemspec
66
+ - lib/jekyll-plugin-rtlify.rb
67
+ - lib/jekyll/rtlify.rb
68
68
  homepage: https://github.com/woforo/jekyll-plugin-rtlify
69
69
  licenses:
70
70
  - MIT
data/.gitignore DELETED
@@ -1,219 +0,0 @@
1
- *.gem
2
- .bundle
3
- .sass-cache
4
- _site
5
- Gemfile.lock
6
- # Created by https://www.gitignore.io/api/jekyll,ruby,intellij,vim,linux,windows,node
7
-
8
- ### Jekyll ###
9
- _site/
10
- .sass-cache/
11
- .jekyll-metadata
12
-
13
- ### Ruby ###
14
- *.rbc
15
- /.config
16
- /coverage/
17
- /InstalledFiles
18
- /pkg/
19
- /spec/reports/
20
- /spec/examples.txt
21
- /test/tmp/
22
- /test/version_tmp/
23
- /tmp/
24
-
25
- # Used by dotenv library to load environment variables.
26
- # .env
27
-
28
- ## Specific to RubyMotion:
29
- .dat*
30
- .repl_history
31
- build/
32
- *.bridgesupport
33
- build-iPhoneOS/
34
- build-iPhoneSimulator/
35
-
36
- ## Specific to RubyMotion (use of CocoaPods):
37
- #
38
- # We recommend against adding the Pods directory to your .gitignore. However
39
- # you should judge for yourself, the pros and cons are mentioned at:
40
- # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
41
- #
42
- # vendor/Pods/
43
-
44
- ## Documentation cache and generated files:
45
- /.yardoc/
46
- /_yardoc/
47
- /doc/
48
- /rdoc/
49
-
50
- ## Environment normalization:
51
- /.bundle/
52
- /vendor/bundle
53
- /_plugins/bundler/man/
54
-
55
- # for a library or gem, you might want to ignore these files since the code is
56
- # intended to run in multiple environments; otherwise, check them in:
57
- # Gemfile.lock
58
- # .ruby-version
59
- # .ruby-gemset
60
-
61
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
62
- .rvmrc
63
-
64
- ### Intellij ###
65
- # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
66
- # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
67
-
68
- # User-specific stuff:
69
- .idea/workspace.xml
70
- .idea/tasks.xml
71
-
72
- # Sensitive or high-churn files:
73
- .idea/dataSources/
74
- .idea/dataSources.ids
75
- .idea/dataSources.xml
76
- .idea/dataSources.local.xml
77
- .idea/sqlDataSources.xml
78
- .idea/dynamic.xml
79
- .idea/uiDesigner.xml
80
-
81
- # Gradle:
82
- .idea/gradle.xml
83
- .idea/libraries
84
-
85
- # Mongo Explorer plugin:
86
- .idea/mongoSettings.xml
87
-
88
- ## File-based project format:
89
- *.iws
90
-
91
- ## Plugin-specific files:
92
-
93
- # IntelliJ
94
- /out/
95
-
96
- # mpeltonen/sbt-idea plugin
97
- .idea_modules/
98
-
99
- # JIRA plugin
100
- atlassian-ide-plugin.xml
101
-
102
- # Crashlytics plugin (for Android Studio and IntelliJ)
103
- com_crashlytics_export_strings.xml
104
- crashlytics.properties
105
- crashlytics-build.properties
106
- fabric.properties
107
-
108
- ### Intellij Patch ###
109
- # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
110
-
111
- # *.iml
112
- # modules.xml
113
- # .idea/misc.xml
114
- # *.ipr
115
-
116
-
117
- ### Vim ###
118
- # swap
119
- [._]*.s[a-v][a-z]
120
- [._]*.sw[a-p]
121
- [._]s[a-v][a-z]
122
- [._]sw[a-p]
123
- # session
124
- Session.vim
125
- # temporary
126
- .netrwhist
127
- *~
128
- # auto-generated tag files
129
- tags
130
-
131
-
132
- ### Linux ###
133
-
134
- # temporary files which can be created if a process still has a handle open of a deleted file
135
- .fuse_hidden*
136
-
137
- # KDE directory preferences
138
- .directory
139
-
140
- # Linux trash folder which might appear on any partition or disk
141
- .Trash-*
142
-
143
- # .nfs files are created when an open file is removed but is still being accessed
144
- .nfs*
145
-
146
-
147
- ### Windows ###
148
- # Windows thumbnail cache files
149
- Thumbs.db
150
- ehthumbs.db
151
- ehthumbs_vista.db
152
-
153
- # Folder config file
154
- Desktop.ini
155
-
156
- # Recycle Bin used on file shares
157
- $RECYCLE.BIN/
158
-
159
- # Windows Installer files
160
- *.cab
161
- *.msi
162
- *.msm
163
- *.msp
164
-
165
- # Windows shortcuts
166
- *.lnk
167
-
168
-
169
- ### Node ###
170
- # Logs
171
- logs
172
- *.log
173
- npm-debug.log*
174
-
175
- # Runtime data
176
- pids
177
- *.pid
178
- *.seed
179
- *.pid.lock
180
-
181
- # Directory for instrumented libs generated by jscoverage/JSCover
182
- lib-cov
183
-
184
- # Coverage directory used by tools like istanbul
185
- coverage
186
-
187
- # nyc test coverage
188
- .nyc_output
189
-
190
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
191
- .grunt
192
-
193
- # node-waf configuration
194
- .lock-wscript
195
-
196
- # Compiled binary addons (http://nodejs.org/api/addons.html)
197
- build/Release
198
-
199
- # Dependency directories
200
- node_modules
201
- jspm_packages
202
-
203
- # Optional npm cache directory
204
- .npm
205
-
206
- # Optional eslint cache
207
- .eslintcache
208
-
209
- # Optional REPL history
210
- .node_repl_history
211
-
212
- # Output of 'npm pack'
213
- *.tgz
214
-
215
- # Yarn Integrity file
216
- .yarn-integrity
217
-
218
-
219
- # End of https://www.gitignore.io/api/jekyll,ruby,intellij,vim,linux,windows,node
data/Gemfile DELETED
@@ -1,2 +0,0 @@
1
- source "https://rubygems.org"
2
- gemspec
@@ -1,20 +0,0 @@
1
- # coding: utf-8
2
- require 'rake'
3
-
4
- Gem::Specification.new do |spec|
5
- spec.name = "jekyll-plugin-rtlify"
6
- spec.version = "0.1.2"
7
- spec.authors = ["Keyvan Mir Mohammad Sadeghi"]
8
- spec.email = ["keyvan.m.sadeghi@gmail.com"]
9
-
10
- spec.summary = "A Jekyll Liquid template for rtl contents"
11
- spec.homepage = "https://github.com/woforo/jekyll-plugin-rtlify"
12
- spec.license = "MIT"
13
-
14
- spec.files = `git ls-files`.split("\n")
15
-
16
- spec.add_runtime_dependency "jekyll", "~> 3.3"
17
-
18
- spec.add_development_dependency "bundler", "~> 1.12"
19
- spec.add_development_dependency "rake", "~> 10.0"
20
- end