jekyll-plugin-rtlify 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/.gitignore +219 -0
- data/{lib → _plugins}/rtlify.rb +0 -0
- data/jekyll-plugin-rtlify.gemspec +20 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e40a5ffc473aeccd08fecc5beb8b5f994bdc483e
|
4
|
+
data.tar.gz: 2a3199263e34a0246e16a173dc99f35cd8f1dffa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2696a18378582c8f32cd9ee20d27f29708f5f0f63c2d5034b5d59cc78e992dee71e3ab9c178815c27215a86947b279c8c75bfb4a5c2d92df7fb44280eb3d34f7
|
7
|
+
data.tar.gz: 829cb03ea3e5ee1f196b706a5a5b2d4de3da8263a64fc041fae56b33b2d2722567a4a7700726efed3632c66b2ec3dff399d2dd052cbde0371f3d404ec77d2363
|
data/.gitignore
ADDED
@@ -0,0 +1,219 @@
|
|
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/{lib → _plugins}/rtlify.rb
RENAMED
File without changes
|
@@ -0,0 +1,20 @@
|
|
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
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-plugin-rtlify
|
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
|
- Keyvan Mir Mohammad Sadeghi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -59,10 +59,12 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- ".gitignore"
|
62
63
|
- Gemfile
|
63
64
|
- LICENSE
|
64
65
|
- README.md
|
65
|
-
-
|
66
|
+
- _plugins/rtlify.rb
|
67
|
+
- jekyll-plugin-rtlify.gemspec
|
66
68
|
homepage: https://github.com/woforo/jekyll-plugin-rtlify
|
67
69
|
licenses:
|
68
70
|
- MIT
|