This website requires JavaScript.
Explore
Help
Sign In
root
/
elasticsearch
mirror of
https://github.com/elastic/elasticsearch.git
Watch
1
Star
0
Fork
You've already forked elasticsearch
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
11db906004
elasticsearch
/
rest-api-spec
/
utils
/
Thorfile
3 lines
99 B
Plaintext
Raw
Normal View
History
Unescape
Escape
[UTIL] Moved the JSON spec generator into the `utils` folder
2013-06-16 23:03:12 +08:00
require File.expand_path('./thor/generate_api')
[UTIL] Added a source code generator using the JSON API specs The generator is based on [Thor](https://github.com/wycats/thor), a library/framework for command line applications. The generator will read the JSON API spec file(s), and generate the Ruby source code (one file per API endpoint) with correct module namespace, method names, and RDoc documentation. It will generate a test file for each API endpoint as well. Currently it only generates Ruby source, but can easily be extended and adapted to generate source code for other programming languages. Usage example: $ thor api:code:generate ../../api-spec/*.json --force --verbose
2013-06-17 05:25:08 +08:00
require File.expand_path('./thor/generate_source')