add casperjs.gemspec for build gem.
Showing
1 changed file
with
21 additions
and
0 deletions
casperjs.gemspec
0 → 100644
1 | |||
2 | |||
3 | Gem::Specification.new do |s| | ||
4 | s.name = "casperjs" | ||
5 | s.version = "1.0.0.RC1" | ||
6 | s.homepage = "http://casperjs.org/" | ||
7 | s.authors = ["Nicolas Perriault", ] | ||
8 | s.email = ["nperriault@gmail.com",] | ||
9 | s.description = "CasperJS is a navigation scripting & testing utility for [PhantomJS](http://www.phantomjs.org/). | ||
10 | It eases the process of defining a full navigation scenario and provides useful | ||
11 | high-level functions, methods & syntaxic sugar for doing common tasks." | ||
12 | s.summary = "Navigation scripting & testing utility for PhantomJS" | ||
13 | s.extra_rdoc_files = ["LICENSE.md", "README.md"] | ||
14 | s.files = Dir["LICENSE.md", "README.md", "CHANGELOG.md", "package.json", "casperjs.gemspec", | ||
15 | "bin/bootstrap.js", "bin/usage.txt", "bin/casperjs_python", | ||
16 | "docs/**/*", "modules/**/*", "samples/**/*", "tests/**/*"] | ||
17 | s.bindir = "rubybin" | ||
18 | s.executables = [ "casperjs" ] | ||
19 | s.license = "MIT" | ||
20 | s.requirements = [ "PhantomJS v1.5" ] | ||
21 | end |
-
Please register or sign in to post a comment