Skip to content

Commit

Permalink
Add generated cookbook files
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 18, 2014
1 parent 7a739c3 commit d7837d2
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 0 deletions.
13 changes: 13 additions & 0 deletions chef/site-cookbooks/wikipedia-search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
wikipedia-search CHANGELOG
==========================

This file is used to list changes made in each version of the wikipedia-search cookbook.

0.1.0
-----
- [your_name] - Initial release of wikipedia-search

- - -
Check the [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) for help with Markdown.

The [Github Flavored Markdown page](http://github.github.com/github-flavored-markdown/) describes the differences between markdown on github and standard markdown.
68 changes: 68 additions & 0 deletions chef/site-cookbooks/wikipedia-search/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
wikipedia-search Cookbook
=========================
TODO: Enter the cookbook description here.

e.g.
This cookbook makes your favorite breakfast sandwich.

Requirements
------------
TODO: List your cookbook requirements. Be sure to include any requirements this cookbook has on platforms, libraries, other cookbooks, packages, operating systems, etc.

e.g.
#### packages
- `toaster` - wikipedia-search needs toaster to brown your bagel.

Attributes
----------
TODO: List your cookbook attributes here.

e.g.
#### wikipedia-search::default
<table>
<tr>
<th>Key</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><tt>['wikipedia-search']['bacon']</tt></td>
<td>Boolean</td>
<td>whether to include bacon</td>
<td><tt>true</tt></td>
</tr>
</table>

Usage
-----
#### wikipedia-search::default
TODO: Write usage instructions for each cookbook.

e.g.
Just include `wikipedia-search` in your node's `run_list`:

```json
{
"name":"my_node",
"run_list": [
"recipe[wikipedia-search]"
]
}
```

Contributing
------------
TODO: (optional) If this is a public cookbook, detail the process for contributing. If this is a private cookbook, remove this section.

e.g.
1. Fork the repository on Github
2. Create a named feature branch (like `add_component_x`)
3. Write your change
4. Write tests for your change (if applicable)
5. Run the tests, ensuring they all pass
6. Submit a Pull Request using Github

License and Authors
-------------------
Authors: TODO: List authors
7 changes: 7 additions & 0 deletions chef/site-cookbooks/wikipedia-search/metadata.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name 'wikipedia-search'
maintainer 'YOUR_COMPANY_NAME'
maintainer_email 'YOUR_EMAIL'
license 'All rights reserved'
description 'Installs/Configures wikipedia-search'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.0'
10 changes: 10 additions & 0 deletions chef/site-cookbooks/wikipedia-search/recipes/default.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Cookbook Name:: wikipedia-search
# Recipe:: default
#
# Copyright 2014, YOUR_COMPANY_NAME
#
# All rights reserved - Do Not Redistribute
#

include_recipe "droonga::engine"

0 comments on commit d7837d2

Please sign in to comment.