Skip to content

Commit a26e08e

Browse files
committed
Update gemspec
1 parent 375a7e6 commit a26e08e

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

nyaplot.gemspec

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,47 @@ Gem::Specification.new do |spec|
88
spec.version = Nyaplot::VERSION
99
spec.authors = ["Naoki Nishida"]
1010
spec.email = ["[email protected]"]
11-
spec.summary = %q{interactive plots generator for Ruby users}
12-
spec.description = %q{interactive plots generator for Ruby users. Visit the GitHub repository to get more information.}
11+
spec.summary = %q{Nyaplot is an interactive plots generator based on Web technology like SVG, WebGL, and JavaScript.}
12+
spec.description = %q{Nyaplot is an Interactive plots generator based on Web technology like SVG, WebGL, and JavaScript. It enables us to create interactive plots interactively on IRuby notebook, a web-based Ruby environment. Nyaplot is totally web-based gem and plots can be embedded into Rails or Sinatra seemlesly. Supported charts include basic 2D plot, 3D plot, Map plot and plot for Biology. See nbviewer (http://nbviewer.ipython.org/github/domitry/nyaplot/blob/master/examples/notebook/Index.ipynb) to overview what plots can be done with nyaplot and how to create them.}
1313
spec.homepage = "https://www.github.com/domitry/nyaplot"
1414
spec.license = "MIT"
15+
spec.post_install_message = <<-EOF
16+
************************************************************************
17+
Welcome to Nyaplot
18+
19+
___/|
20+
\o.O|
21+
(___)
22+
U
23+
24+
Thank you for installing Nyaplot gem.
25+
26+
We strongly recommend you to install IRuby, an interactive
27+
Ruby environment on web browser at the same time.
28+
29+
$ gem install iruby
30+
31+
If you wonder how to use Nyaplot, see /path/to/nyaplot/examples/notebook
32+
and run `iruby notebook` in the directory.
33+
You can find these notebook on your browser:
34+
http://nbviewer.ipython.org/github/domitry/nyaplot/blob/master/examples/notebook/Index.ipynb
35+
36+
You can also use nyaplot without IRuby like /path/to/nyaplot/examples/rb
37+
or on your browser:
38+
https://github.com/domitry/nyaplot/tree/master/examples/rb
39+
40+
Feel free to raise Issue or Pull-request on GitHub.
41+
Most pull-request might be accepted unless it is broken or too destructive.
42+
43+
Enjoy Nyaplot!
44+
************************************************************************
45+
EOF
1546

1647
spec.files = `git ls-files -z`.split("\x0")
1748
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
1849
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1950
spec.require_paths = ["lib"]
51+
spec.required_ruby_version = ">= 1.9"
2052

2153
spec.add_development_dependency "bundler", "~> 1.5"
2254
spec.add_development_dependency "rake"

0 commit comments

Comments
 (0)