README.md in appium_thor-0.0.6 vs README.md in appium_thor-0.0.7

- old
+ new

@@ -8,23 +8,35 @@ # Example configuration ```ruby Appium::Thor::Config.set do gem_name 'appium_thor' + github_owner 'appium' github_name 'appium_thor' version_file 'lib/appium_thor/version.rb' docs_block do run 'docs/helpers_docs.md', globs('/lib/appium_thor/helpers.rb') end end ``` +# Defaults + + Option | Default + --:|:-- +gem_name | must be provided +github_owner | `appium` +github_name | `#{gem_name}` +version_file | `lib/#{gem_name}/version.rb` +docs_block | no docs are generated + + -- # Available tasks -Note to see gem warnings, run `gem build appium_thor.gemspec` and replace `appium_thor.gemspec` with the gemspec of your gem. +Note to see gem warnings, run `gem build your_gem_name.gemspec` ``` thor build # Build a new gem thor bump # Bump the z version number and update the date. thor bumpx # Bump the x version number, set y & z to zero, update the date. @@ -51,6 +63,6 @@ ios_globs = common_globs + ['/lib/appium_lib/ios/**/*.rb'] run 'docs/android_docs.md', globs(android_globs) run 'docs/ios_docs.md', globs(ios_globs) -``` \ No newline at end of file +```