textile2md 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
  SHA256:
3
- metadata.gz: a5a71df0344c7eb1aa44aed2542caec268be1eae255f6cab2ea2fe156c9d5b95
4
- data.tar.gz: 560f47797de4b9723b299ab7daf67e70c986ecfb302ca7b9eff1b87d6becb47a
3
+ metadata.gz: d0666644b86934528eede9495d70af248d66848605b3d5eb4ecc47387e982f0d
4
+ data.tar.gz: 1e09001fa1909cffe28282a65fc296fcd226f9a7c60ae87bd2476781964cdfc6
5
5
  SHA512:
6
- metadata.gz: c6984adcace5324cd68cc209f30ae8721831c8ade95c158dfeea28a062a075cbf7a08940e07812cc1dd6895ed9e1c96cb3eeec5795e253c72a9e40d2bd3b8b4c
7
- data.tar.gz: faeeaec643cdb52a6500d06b0cab3290655d34896cde93aa97d01beffeb6f4139adf57cec85d164c10de755be26186033e1bd8c680afa3491e7e02f4c2511d0d
6
+ metadata.gz: d9b10614b2c046e40bea8579e61755b6576f7c989ef32336ac46ac1b96fa386bf8c77a627fe569f1b5500ce03ca90be59661d0391f8f9e7a5f619a9a9d490c84
7
+ data.tar.gz: ce30c138e57a429224a42ef25d043110a5f87b49141d5dee1684858a12d24c00213d995fdb4468d01c2a51eecf2671dc0daf8fb29df2027f37647b770f30820b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- textile2md (0.1.2)
4
+ textile2md (0.1.3)
5
5
  RedCloth (~> 4.3)
6
6
  reverse_markdown (~> 1.1)
7
7
 
@@ -40,7 +40,7 @@ PLATFORMS
40
40
 
41
41
  DEPENDENCIES
42
42
  bundler (~> 1.16)
43
- pry
43
+ pry (~> 0)
44
44
  rake (~> 10.0)
45
45
  rspec (~> 3.0)
46
46
  textile2md!
data/README.md CHANGED
@@ -4,6 +4,14 @@ Convert textile to markdown
4
4
 
5
5
  ## Installation
6
6
 
7
+ ### gem
8
+
9
+ ```
10
+ $ gem install textile2md
11
+ ```
12
+
13
+ ### Gemfile
14
+
7
15
  Add this line to your application's Gemfile:
8
16
 
9
17
  ```ruby
@@ -53,7 +61,7 @@ puts Textile2md.convert(textile)
53
61
  ### Command
54
62
 
55
63
  ```
56
- $ textile2md some_markdown_file.txt
64
+ $ textile2md some_textile_file.txt
57
65
  ```
58
66
 
59
67
 
@@ -65,7 +73,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
65
73
 
66
74
  ## Contributing
67
75
 
68
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/textile2md. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
76
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Yumainaura/textile2md. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
69
77
 
70
78
  ## License
71
79
 
@@ -73,4 +81,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
73
81
 
74
82
  ## Code of Conduct
75
83
 
76
- Everyone interacting in the Textile2md project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/textile2md/blob/master/CODE_OF_CONDUCT.md).
84
+ Everyone interacting in the Textile2md project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/YumaInaura/textile2md/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,3 @@
1
1
  module Textile2md
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/textile2md.gemspec CHANGED
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.add_development_dependency "bundler", "~> 1.16"
30
30
  spec.add_development_dependency "rake", "~> 10.0"
31
31
  spec.add_development_dependency "rspec", "~> 3.0"
32
- spec.add_development_dependency "pry"
32
+ spec.add_development_dependency "pry", "~> 0"
33
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: textile2md
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
  - Yumainaura
@@ -84,14 +84,14 @@ dependencies:
84
84
  name: pry
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  description: Convert textile to markdown. just only do it.
@@ -113,11 +113,9 @@ files:
113
113
  - Rakefile
114
114
  - bin/console
115
115
  - bin/setup
116
- - bin/textile2md
117
116
  - exe/textile2md
118
117
  - lib/textile2md.rb
119
118
  - lib/textile2md/version.rb
120
- - textile2md-0.1.1.gem
121
119
  - textile2md.gemspec
122
120
  homepage: https://github.com/YumaInaura/textile2md
123
121
  licenses:
data/bin/textile2md DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # Usage: textile2md [FILE]...
4
- # Usage: cat FILE | textile2md
5
- require 'textile2md'
6
-
7
- puts Textile2md.convert(ARGF.read)
data/textile2md-0.1.1.gem DELETED
Binary file