README.md in ore-0.7.1 vs README.md in ore-0.7.2

- old
+ new

@@ -41,23 +41,23 @@ * Provides an **extendable** project **generator** that supports user-installed templates. ## Requirements -* [ore-core](http://github.com/ruby-ore/ore-core) ~> 0.1, >= 0.1.2 +* [ore-core](http://github.com/ruby-ore/ore-core) ~> 0.1, >= 0.1.4 * [thor](http://github.com/wycats/thor) ~> 0.14.3 ## Install $ gem install ore -## Example gemspec.yml files +## Example gemspec.yml File The `gemspec.yml` file used to build Ore: name: ore - version: 0.7.1 + version: 0.7.2 summary: Mine raw RubyGems from YAML. description: Ore is a simple RubyGem building solution. Ore handles the creation of Gem::Specification objects as well as building '.gem' files. Ore allows the developer to keep all of the project information @@ -70,11 +70,11 @@ has_yard: true post_install_message: | ************************************************************************** Generate a new Ruby library: - $ mine my_library --rspec + $ mine my_library --rspec --yard Build the library: $ rake build @@ -83,11 +83,11 @@ $ rake release ************************************************************************** dependencies: - ore-core: ~> 0.1, >= 0.1.2 + ore-core: ~> 0.1, >= 0.1.4 thor: ~> 0.14.3 development_dependencies: ore-tasks: ~> 0.4 rspec: ~> 2.4 @@ -98,31 +98,31 @@ ## Synopsis Install a custom template: - $ ore install http://github.com/user/awesometest.git + $ ore install git://github.com/ruby-ore/mini_test.git List installed templates: $ ore list Remove a previously installed template: - $ ore remove awesometest + $ ore remove mini_test Generate a new project: - $ mine myproj + $ mine my_project Generate a new customized project: - $ mine myproj --bundler --rspec --yard + $ mine my_project --bundler --rspec --yard Generate a new project using previously installed templates: - $ mine myproj --bundler --rspec --yard -T awesometest + $ mine my_project --bundler --rspec --yard --template mini_test Add default generator options to `~/.ore/options.yml`: ore_tasks: true rspec: true @@ -130,10 +130,10 @@ markdown: true authors: - Alice email: alice@example.com -Builds a `.gem` file in the `pkg/` directory of a project: +Build a `.gem` file in the `pkg/` directory of a project: $ ore gem ## License