File tree 4 files changed +17
-2
lines changed
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ == 0.5.4
2
+
3
+ * ???
4
+
1
5
== 0.5.2
2
6
3
7
* Handle case where all data is zero [Silvia Pfeiffer]
Original file line number Diff line number Diff line change 19
19
20
20
desc "Release and publish documentation"
21
21
task :repubdoc => [ :release , :publish_docs ]
22
+
23
+
24
+ desc "Simple require on packaged files to make sure they are all there"
25
+ task :verify => :package do
26
+ # An error message will be displayed if files are missing
27
+ if system %(ruby -e "require 'pkg/sparklines-#{ Sparklines ::VERSION } /lib/sparklines'")
28
+ puts "\n The library files are present"
29
+ end
30
+ end
31
+
32
+ task :release => :verify
Original file line number Diff line number Diff line change 75
75
=end
76
76
class Sparklines
77
77
78
- VERSION = '0.5.2 '
78
+ VERSION = '0.5.3 '
79
79
80
80
@@label_margin = 5.0
81
81
@@pointsize = 10.0
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |s |
2
2
s . name = %q{sparklines}
3
- s . version = "0.5.2 "
3
+ s . version = "0.5.3 "
4
4
5
5
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
6
6
s . authors = [ "Geoffrey Grosenbach" ]
You can’t perform that action at this time.
0 commit comments