asciinurse 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
  SHA1:
3
- metadata.gz: 0e696ea11c55f080b823069a696f7baa35d0b7ba
4
- data.tar.gz: 89fc32d5a5c19bc31b26a93d653c1c361d2c7d73
3
+ metadata.gz: 97bf41adb8b186ff9bafd3c89ee1badbb63bd2af
4
+ data.tar.gz: 619896f4e245f9c2a3f617d00e77c8c65798f482
5
5
  SHA512:
6
- metadata.gz: 352436651420ccd8fcebd2741bb168addbb0875ff3ef357e45a39cb141846c0a45acee1124dd9cf40d6ff172d816db66e113bc7b6a63b2f3c7b4155e33d56010
7
- data.tar.gz: 0d46fcb628d98035f554f2a45491e2099fe03a314828877f4b7a0879991cb7233492bf561676de33c6adb0a0d3efb3237fc8715535b3322a233e64e182a2d01d
6
+ metadata.gz: 76fdcdd139564d6573ec8669073b3d3d9bf428191db5a980c655fc977d936146e72680973c7b02190bae6007296bb267f9911d544517adda3f05f656c88b3b34
7
+ data.tar.gz: 39ed43de7ea4d5afda27f8ce9e4a8c85485d01a79d897be27dc03772d0622ce97383ed221d1a999efdd4b01e3e9a0f1b9d76057daa2acc9d87c5f4600c97ffbb
data/.idea/asciinurse.iml CHANGED
@@ -15,10 +15,10 @@
15
15
  <orderEntry type="inheritedJdk" />
16
16
  <orderEntry type="sourceFolder" forTests="false" />
17
17
  <orderEntry type="library" scope="PROVIDED" name="Ascii85 (v1.0.2, RVM: ruby-2.2-head) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="addressable (v2.3.8, RVM: ruby-2.2-head) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="addressable (v2.4.0, RVM: ruby-2.2-head) [gem]" level="application" />
19
19
  <orderEntry type="library" scope="PROVIDED" name="afm (v0.2.2, RVM: ruby-2.2-head) [gem]" level="application" />
20
20
  <orderEntry type="library" scope="PROVIDED" name="asciidoctor (v1.5.2, RVM: ruby-2.2-head) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="asciidoctor-pdf (v1.5.0.alpha.9, RVM: ruby-2.2-head) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="asciidoctor-pdf (v1.5.0.alpha.10, RVM: ruby-2.2-head) [gem]" level="application" />
22
22
  <orderEntry type="library" scope="PROVIDED" name="bundler (v1.10.6, RVM: ruby-2.2-head) [gem]" level="application" />
23
23
  <orderEntry type="library" scope="PROVIDED" name="css_parser (v1.3.7, RVM: ruby-2.2-head) [gem]" level="application" />
24
24
  <orderEntry type="library" scope="PROVIDED" name="hashery (v2.1.1, RVM: ruby-2.2-head) [gem]" level="application" />
@@ -26,11 +26,11 @@
26
26
  <orderEntry type="library" scope="PROVIDED" name="pdf-reader (v1.3.3, RVM: ruby-2.2-head) [gem]" level="application" />
27
27
  <orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.5, RVM: ruby-2.2-head) [gem]" level="application" />
28
28
  <orderEntry type="library" scope="PROVIDED" name="prawn (v2.0.2, RVM: ruby-2.2-head) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="prawn-icon (v0.6.4, RVM: ruby-2.2-head) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="prawn-icon (v1.0.0, RVM: ruby-2.2-head) [gem]" level="application" />
30
30
  <orderEntry type="library" scope="PROVIDED" name="prawn-svg (v0.21.0, RVM: ruby-2.2-head) [gem]" level="application" />
31
31
  <orderEntry type="library" scope="PROVIDED" name="prawn-table (v0.2.2, RVM: ruby-2.2-head) [gem]" level="application" />
32
32
  <orderEntry type="library" scope="PROVIDED" name="prawn-templates (v0.0.3, RVM: ruby-2.2-head) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.2-head) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="rake (v10.3.2, RVM: ruby-2.2-head) [gem]" level="application" />
34
34
  <orderEntry type="library" scope="PROVIDED" name="ruby-rc4 (v0.1.5, RVM: ruby-2.2-head) [gem]" level="application" />
35
35
  <orderEntry type="library" scope="PROVIDED" name="safe_yaml (v1.0.4, RVM: ruby-2.2-head) [gem]" level="application" />
36
36
  <orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, RVM: ruby-2.2-head) [gem]" level="application" />
data/changelog.adoc CHANGED
@@ -1,5 +1,9 @@
1
1
  = CHANGELOG
2
2
 
3
+ == Version 0.1.3
4
+
5
+ - Use a blank title instead of the default one
6
+
3
7
  == Version 0.1.2
4
8
 
5
9
  - Centered charts by default in pdf output
@@ -11,7 +11,7 @@ module Asciinurse
11
11
  options = defaults.merge attrs if defaults
12
12
  options ||= attrs
13
13
  @engine = engine
14
- @title = options['title']
14
+ @title = (options['title'] or '')
15
15
  @type = options['type']
16
16
  @width = options['width']
17
17
  @height = options['height']
@@ -1,3 +1,3 @@
1
1
  module Asciinurse
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
@@ -6,9 +6,7 @@
6
6
  type: 'pie'
7
7
  },
8
8
  title: {
9
- <% if @title %>
10
9
  text: <%= @title.to_json %>
11
- <% end %>
12
10
  },
13
11
  tooltip: {
14
12
  pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciinurse
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
  - Ataxexe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-12 00:00:00.000000000 Z
11
+ date: 2016-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor