qiita-markdown-cli 0.0.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 68618e5a4ef62a6467c18cf0a49afa4d7fb59146
4
- data.tar.gz: ab63b9e01e2499cbeb751f67c57b17046da13e2e
3
+ metadata.gz: 9f716d433b1fc93f492b03f714001f6eef56170b
4
+ data.tar.gz: 3a2cc4e6ad87de9797e3cb34d0bf8ad5c229231e
5
5
  SHA512:
6
- metadata.gz: 2431a6d07ba1c879cfec37189de1dca976a491d476ebb5bfda616ec2f5090ebe9f23b8caf5608a5cbcec31c7c93c7fd810945776213471f31e33e27a05676530
7
- data.tar.gz: cddac8b754f4f0cc6ed7ee38df0fd1c0d0faad875d64ea9d6cc47fd492148b3ebc7d2d719cc9acd12638aa65a9e20a27eb6608c052be6a0316f232a19c3c7a7f
6
+ metadata.gz: 476a3b934ad3a0bf9b24cc5084c82bd191c691e750ab06747878a59d8c92ce03da500ae48c81caff9b5e03553d793d13f404b9621be37f61fd369267d4d51dd4
7
+ data.tar.gz: 1550b10aca92e73a75f9576340f16d2b755bc06dac6879c3aebb542c9c94911c83e34ca4b784607d5daab79692d13c66bff234668fb011157867263236e74ec1
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
  *.o
13
13
  *.a
14
14
  mkmf.log
15
+ *.gem
data/README.md CHANGED
@@ -1,31 +1 @@
1
- # Qiita::Markdown::Cli
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'qiita-markdown-cli'
11
- ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install qiita-markdown-cli
20
-
21
- ## Usage
22
-
23
- TODO: Write usage instructions here
24
-
25
- ## Contributing
26
-
27
- 1. Fork it ( https://github.com/[my-github-username]/qiita-markdown-cli/fork )
28
- 2. Create your feature branch (`git checkout -b my-new-feature`)
29
- 3. Commit your changes (`git commit -am 'Add some feature'`)
30
- 4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
1
+ デベロッパーがじゃぶじゃぶコントリビュートしたくなるような射幸心をあおるような README
data/bin/qmc CHANGED
@@ -4,7 +4,7 @@ require 'qiita-markdown'
4
4
 
5
5
  input = STDIN
6
6
  input = File.open(ARGV[0]) if ARGV.length > 0
7
- processor = Qiita::Markdown::Processor.new
7
+ processor = Qiita::Markdown::Processor.new(hostname: "example.com")
8
8
  result = processor.call(input.read)
9
9
  output = result[:output].to_s
10
10
  STDOUT.write(output)
@@ -1,7 +1,7 @@
1
1
  module Qiita
2
2
  module Markdown
3
3
  module Cli
4
- VERSION = "0.0.2"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
@@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
18
18
  #spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "qiita-markdown"
22
-
21
+ spec.add_dependency "qiita-markdown", "~> 0.16"
22
+
23
23
  spec.add_development_dependency "bundler", "~> 1.7"
24
24
  spec.add_development_dependency "rake", "~> 10.0"
25
25
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qiita-markdown-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hidekazu Kobayashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-21 00:00:00.000000000 Z
11
+ date: 2017-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: qiita-markdown
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '0.16'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '0.16'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -68,7 +68,6 @@ files:
68
68
  - bin/qmc
69
69
  - lib/qiita/markdown/cli.rb
70
70
  - lib/qiita/markdown/cli/version.rb
71
- - qiita-markdown-cli-0.0.1.gem
72
71
  - qiita-markdown-cli.gemspec
73
72
  homepage: https://github.com/KOBA789/qiita-markdown-cli
74
73
  licenses:
@@ -90,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
89
  version: '0'
91
90
  requirements: []
92
91
  rubyforge_project:
93
- rubygems_version: 2.2.2
92
+ rubygems_version: 2.5.1
94
93
  signing_key:
95
94
  specification_version: 4
96
95
  summary: Command Line Qiita Markdown Compiler
Binary file