tdiary-style-markdown 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +36 -0
- data/Gemfile +6 -0
- data/LICENSE +675 -0
- data/README.md +41 -0
- data/Rakefile +1 -0
- data/lib/tdiary/style/markdown/version.rb +7 -0
- data/lib/tdiary/style/markdown.rb +208 -0
- data/lib/tdiary-style-markdown.rb +1 -0
- data/tdiaty-style-markdown.gemspec +29 -0
- data/test/run-test.rb +29 -0
- data/test/tdiary/style/markdown-test.rb +536 -0
- data/test/test-helper.rb +10 -0
- metadata +157 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 38526451bd0f0f6f80ac55c9b6eb8e76dfa61c28
|
4
|
+
data.tar.gz: 69ad909151791d52c40f15ce3fe561973de16308
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d41f46a7e97aeec2ebda59beebfe21b1850a69de8d64112ed9be96ab6402a9bdd9c8e3722b8833c23a460a4241da08be6ac50e471fb4ce8dce3ac9a60634526b
|
7
|
+
data.tar.gz: 1f77d2c2df4037614e2c5166b35821e37c7e2c21a4e0260704a1320e7001de6ffc349addb57684f425112ce5215748e7cf3e1c0da1efeb5ca205f30e8c1ec7d9
|
data/.gitignore
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
/Gemfile.lock
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
/.config
|
5
|
+
/coverage/
|
6
|
+
/InstalledFiles
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
## Specific to RubyMotion:
|
14
|
+
.dat*
|
15
|
+
.repl_history
|
16
|
+
build/
|
17
|
+
|
18
|
+
## Documentation cache and generated files:
|
19
|
+
/.yardoc/
|
20
|
+
/_yardoc/
|
21
|
+
/doc/
|
22
|
+
/rdoc/
|
23
|
+
|
24
|
+
## Environment normalisation:
|
25
|
+
/.bundle/
|
26
|
+
/vendor/bundle
|
27
|
+
/lib/bundler/man/
|
28
|
+
|
29
|
+
# for a library or gem, you might want to ignore these files since the code is
|
30
|
+
# intended to run in multiple environments; otherwise, check them in:
|
31
|
+
# Gemfile.lock
|
32
|
+
# .ruby-version
|
33
|
+
# .ruby-gemset
|
34
|
+
|
35
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
36
|
+
.rvmrc
|