vim_printer 0.0.6 → 0.0.7

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: 794403cc35fff7f41e02d06aac06951b0767c342
4
- data.tar.gz: f28af061e28706b4e3b8c72acbf6d577346bc66e
3
+ metadata.gz: c6ae99c514338632b1d9465e98a19fa21251fd4a
4
+ data.tar.gz: b873f41010687e53a17b443573ce4ce84645395e
5
5
  SHA512:
6
- metadata.gz: 1fdd9a5dc0a9e058ce70bddea10f413806dbd5baae20f966798ba5c93e955ae02c5477e7d16049ac8db0fda72e70ac7f5f4f204fe6722e41fe1f0ece03f9de44
7
- data.tar.gz: f16b7505f09ea14f7c49c7e6718bf8554374742e83b2755e8e498478ed6eaedc40c111a8543a8c3a8d545873e3e36250ad40ec8938e48ac45b15e476e864fa71
6
+ metadata.gz: 2a2dfbfd01bac1faeaf826b6ab33e2515814216a0a75754c06fb56f250a88eb1bc43b2775639e1b1fa314ab0ed2bc50c5ba1389fb1b74ea0fca571888b0d1d24
7
+ data.tar.gz: 7d814db7d5066843569b47e8b303e6c97ae12aaa910eaf2e2873471b201880799d27047bfb7aad28b4d83ed43d8f5fc97f391e5c06d2fc41d4f1e3eec01e22b1
data/.gitignore CHANGED
@@ -15,8 +15,6 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
-
19
18
  # Custom ignore files
20
- TODOs.md
21
19
  output.tar.gz
22
20
  output.tgz
data/Changelogs.md ADDED
@@ -0,0 +1,42 @@
1
+ ### Changelog
2
+
3
+ #### 0.0.7
4
+
5
+ - Update dependency gems to the latest version
6
+ - Add Changelogs.md
7
+ - Add links to gemnasium and codeclimate
8
+
9
+ #### 0.0.6
10
+
11
+ - Move the theme option to [vim_printer][]
12
+ - Use [agile_utils][] versino 0.0.8
13
+ - Make location of the 'index.html' to the current run directory
14
+
15
+ #### 0.0.5
16
+
17
+ - Use [agile_utils][] version 0.0.5 that have the option bug fix
18
+
19
+ #### 0.0.4
20
+
21
+ - Fix the output path of 'index.html' to root directory to make links valid.
22
+ - Update [agile_utils][] to '0.0.4'
23
+ - Code cleanup using rubocop
24
+
25
+ #### 0.0.3
26
+
27
+ - Use generic functions from [agile_utils][] gem
28
+ - Update [index_html][] gem to 0.0.7
29
+ - Fix the bug in generated 'index.html' due to bug from index_html gem
30
+
31
+ #### 0.0.2
32
+
33
+ - Add the 'index_html' gem to generate the 'index.html' to the output
34
+ - Fix the error in documentation (YARD syntax error)
35
+
36
+ #### 0.0.1
37
+
38
+ - Initial release
39
+
40
+ [agile_utils]: https://rubygems.org/gems/agile_utils
41
+ [index_html]: https://rubygems.org/gems/index_html
42
+ [vim_printer]: https://rubygems.org/gems/vim_printer
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## vim_printer
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/vim_printer.svg)](http://badge.fury.io/rb/vim_printer)
4
+ [![Dependency Status](https://gemnasium.com/agilecreativity/vim_printer.png)](https://gemnasium.com/agilecreativity/vim_printer)
5
+ [![Code Climate](https://codeclimate.com/github/agilecreativity/vim_printer.png)](https://codeclimate.com/github/agilecreativity/vim_printer)
6
+
3
7
  Print any files to html using the power of Vim. Output will be saved to `output.tar.gz` and ready for
4
8
  extract and viewing in your favourite browser.
5
9
 
@@ -8,8 +12,6 @@ extract and viewing in your favourite browser.
8
12
  - Use the power of [Vim][] to print the code without any other tools.
9
13
  - Tested in Linux/OSX and should also works with Windows.
10
14
 
11
- [![Gem Version](https://badge.fury.io/rb/vim_printer.svg)](http://badge.fury.io/rb/vim_printer)
12
-
13
15
  ### Example Outputs:
14
16
 
15
17
  - The original input using [seoul256.vim][] colorscheme in Vim
@@ -40,7 +42,7 @@ The html output as renderd in the browser
40
42
 
41
43
  * If you like you can use [my dotvim][] which is based on the [NeoBundle][].
42
44
 
43
- * Use any [vim colorschemes][] if not the `default` scheme will be used.
45
+ * Use any [vim colorschemes][] if not the `default` colorscheme will be used.
44
46
 
45
47
  My personal favourite are [seoul256.vim][] and [Tomorrow-Theme][]
46
48
 
@@ -157,52 +159,6 @@ rake
157
159
 
158
160
  - Will be listed here if any.
159
161
 
160
- ### Disclaimers
161
-
162
- - This is still early release of the gem, I may make several changes to the API.
163
- - If you find any issues please let me know.
164
- - Pull request is always welcome.
165
-
166
- ### Changelog
167
-
168
- #### 0.0.6
169
-
170
- - Move the theme option to [vim_printer][]
171
-
172
- - Use [agile_utils][] versino 0.0.8
173
-
174
- - Make location of the 'index.html' to the current run directory
175
-
176
- #### 0.0.5
177
-
178
- - Use [agile_utils][] version 0.0.5 that have the option bug fix
179
-
180
- #### 0.0.4
181
-
182
- - Fix the output path of 'index.html' to root directory to make links valid.
183
-
184
- - Update [agile_utils][] to '0.0.4'
185
-
186
- - Code cleanup using rubocop
187
-
188
- #### 0.0.3
189
-
190
- - Use generic functions from [agile_utils][] gem
191
-
192
- - Update [index_html][] gem to 0.0.7
193
-
194
- - Fix the bug in generated 'index.html' due to bug from index_html gem
195
-
196
- #### 0.0.2
197
-
198
- - Add the 'index_html' gem to generate the 'index.html' to the output
199
-
200
- - Fix the error in documentation (YARD syntax error)
201
-
202
- #### 0.0.1
203
-
204
- - Initial release
205
-
206
162
  ### Contributing
207
163
 
208
164
  1. Fork it
@@ -220,5 +176,3 @@ rake
220
176
  [vim colorschemes]: https://github.com/flazz/vim-colorschemes/tree/master/colors
221
177
  [seoul256.vim]: https://github.com/junegunn/seoul256.vim
222
178
  [Tomorrow-theme]: https://github.com/ChrisKempson/Tomorrow-Theme
223
- [agile_utils]: https://rubygems.org/gems/agile_utils
224
- [index_html]: https://rubygems.org/gems/index_html
@@ -1,3 +1,3 @@
1
1
  module VimPrinter
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
data/vim_printer.gemspec CHANGED
@@ -17,15 +17,15 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ['lib']
19
19
  spec.add_runtime_dependency 'thor', '~> 0.18'
20
- spec.add_runtime_dependency 'code_lister', '~> 0.0.6'
21
- spec.add_runtime_dependency 'index_html', '~> 0.0.7'
22
- spec.add_runtime_dependency 'agile_utils', '~> 0.0.8'
20
+ spec.add_runtime_dependency 'code_lister', '~> 0.0.8'
21
+ spec.add_runtime_dependency 'index_html', '~> 0.1.0'
22
+ spec.add_runtime_dependency 'agile_utils', '~> 0.0.9'
23
23
  spec.add_development_dependency 'bundler', '~> 1.3'
24
24
  spec.add_development_dependency 'rake'
25
25
  spec.add_development_dependency 'awesome_print', '~> 1.2'
26
26
  spec.add_development_dependency 'minitest-spec-context', '~> 0.0.3'
27
27
  spec.add_development_dependency 'guard-minitest', '~> 2.2'
28
- spec.add_development_dependency 'minitest', '~> 4.2'
28
+ spec.add_development_dependency 'minitest', '~> 5.3'
29
29
  spec.add_development_dependency 'guard', '~> 2.6'
30
30
  spec.add_development_dependency 'pry', '~> 0.9'
31
31
  spec.add_development_dependency 'gem-ctags', '~> 1.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vim_printer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Burin Choomnuan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-28 00:00:00.000000000 Z
11
+ date: 2014-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -30,42 +30,42 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.0.6
33
+ version: 0.0.8
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.0.6
40
+ version: 0.0.8
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: index_html
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.0.7
47
+ version: 0.1.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.0.7
54
+ version: 0.1.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: agile_utils
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.0.8
61
+ version: 0.0.9
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.0.8
68
+ version: 0.0.9
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: bundler
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -142,14 +142,14 @@ dependencies:
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: '4.2'
145
+ version: '5.3'
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: '4.2'
152
+ version: '5.3'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: guard
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -222,6 +222,7 @@ files:
222
222
  - 01-seoul256-output.png
223
223
  - 02-Tomorrow-Night-input.png
224
224
  - 02-Tomorrow-Night-output.png
225
+ - Changelogs.md
225
226
  - Gemfile
226
227
  - Guardfile
227
228
  - LICENSE