topfunky-gruff 0.3.3 → 0.3.5
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.
- data/History.txt +14 -1
- data/MIT-LICENSE +1 -1
- data/Rakefile +1 -0
- data/lib/gruff/base.rb +2 -2
- metadata +2 -2
data/History.txt
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
|
+
== 0.3.5
|
|
2
|
+
|
|
3
|
+
* ???
|
|
4
|
+
|
|
5
|
+
== 0.3.4
|
|
6
|
+
|
|
7
|
+
* Reverted DEBUG=true. Will add a check in the release process so this doesn't happen again.
|
|
8
|
+
* Future releases will end in an odd number for development (topfunky-gruff on GitHub) or even for production releases.
|
|
9
|
+
|
|
10
|
+
== 0.3.3
|
|
11
|
+
|
|
12
|
+
* Legend line wrapping [Mat Schaffer]
|
|
13
|
+
* Stacked area graph fixes [James Coglan]
|
|
14
|
+
|
|
1
15
|
== 0.3.2
|
|
2
16
|
|
|
3
17
|
* Include init.rb for use as a Rails plugin.
|
|
4
18
|
|
|
5
|
-
|
|
6
19
|
== 0.3.1
|
|
7
20
|
|
|
8
21
|
* Fixed missing bullet graph bug (experimental, will be in a future release).
|
data/MIT-LICENSE
CHANGED
data/Rakefile
CHANGED
|
@@ -21,6 +21,7 @@ task :verify => :package do
|
|
|
21
21
|
if system %(ruby -e "require 'pkg/gruff-#{Gruff::VERSION}/lib/gruff'")
|
|
22
22
|
puts "\nThe library files are present"
|
|
23
23
|
end
|
|
24
|
+
raise "\n*** Gruff::Base::DEBUG must be set to false for releases ***\n\n" if Gruff::Base::DEBUG
|
|
24
25
|
end
|
|
25
26
|
|
|
26
27
|
task :release => :verify
|
data/lib/gruff/base.rb
CHANGED
|
@@ -20,7 +20,7 @@ require File.dirname(__FILE__) + '/deprecated'
|
|
|
20
20
|
module Gruff
|
|
21
21
|
|
|
22
22
|
# This is the version of Gruff you are using.
|
|
23
|
-
VERSION = '0.3.
|
|
23
|
+
VERSION = '0.3.5'
|
|
24
24
|
|
|
25
25
|
class Base
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ module Gruff
|
|
|
28
28
|
include Deprecated
|
|
29
29
|
|
|
30
30
|
# Draw extra lines showing where the margins and text centers are
|
|
31
|
-
DEBUG =
|
|
31
|
+
DEBUG = false
|
|
32
32
|
|
|
33
33
|
# Used for navigating the array of data to plot
|
|
34
34
|
DATA_LABEL_INDEX = 0
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: topfunky-gruff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geoffrey Grosenbach
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-08-
|
|
12
|
+
date: 2008-08-18 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|