Skip to content

Commit 8776906

Browse files
authored
Merge pull request #19 from 284km/charty
Supports Charty v0.2.0
2 parents d0b97ff + 1a6d8d4 commit 8776906

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/charty.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 id="you-can-write-markdown">You can write Markdown!</h2>
3232

3333
<pre><code class="language-ruby">
3434
require 'charty'
35-
charty = Charty.new(:matplot)
35+
charty = Charty::Plotter.new(:pyplot)
3636

3737
bar = charty.bar do
3838
series [0,1,2,3,4], [10,40,20,90,70]

examples/charty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
~~~ruby
1010

1111
require 'charty'
12-
charty = Charty.new(:matplot)
12+
charty = Charty::Plotter.new(:pyplot)
1313

1414
bar = charty.bar do
1515
series [0,1,2,3,4], [10,40,20,90,70]

rubydown.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Gem::Specification.new do |spec|
4040
spec.add_dependency "numo-narray", "~> 0.9.1"
4141
spec.add_dependency "numo-gnuplot", "~> 0.2.4"
4242
spec.add_dependency "rbplotly", "~> 0.1.2"
43-
spec.add_dependency "charty", "0.1.2.dev"
43+
spec.add_dependency "charty", "~> 0.2.0"
4444
spec.add_dependency "matplotlib", "~> 1.0.0"
4545

4646
spec.add_development_dependency "bundler", "~> 1.17"

0 commit comments

Comments
 (0)