浏览代码

[bin] Drop extension from scripts in the bin directory.

Daniele Alessandri 11 年之前
父节点
当前提交
e5ec950a11
共有 5 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      README.md
  2. 0 0
      bin/create-command-test
  3. 0 0
      bin/create-phar
  4. 0 0
      bin/create-single-file
  5. 1 1
      tests/README.md

+ 2 - 2
README.md

@@ -56,10 +56,10 @@ Predis\Autoloader::register();
 ```
 
 It is also possible to create a [phar](http://www.php.net/manual/en/intro.phar.php) archive from the
-repository just by launching `bin/create-phar.php`. The generated phar ships with a stub defining an
+repository just by launching `bin/create-phar`. The generated phar contains a stub that defines an
 autoloader function for Predis, so you just need to require the phar to start using the library.
 Alternatively it is possible to generate one single PHP file holding every class like older versions
-of Predis by launching `bin/create-single-file.php`, but this practice __is not__ encouraged.
+of Predis by launching `bin/create-single-file`, but this practice __is not__ encouraged.
 
 
 ### Connecting to Redis ###

+ 0 - 0
bin/generate-command-test.php → bin/create-command-test


+ 0 - 0
bin/create-phar.php → bin/create-phar


+ 0 - 0
bin/create-single-file.php → bin/create-single-file


+ 1 - 1
tests/README.md

@@ -81,7 +81,7 @@ are considered valid). For example, to generate a test case for `SET` (represent
 `Predis\Command\StringSet` class):
 
 ```bash
-$ ./bin/generate-command-test.php --class=StringSet
+$ ./bin/create-command-test --class=StringSet
 ```
 Each command has its own realm (commands that operate on strings, lists, sets and such)
 and this realm is automatically inferred from the name of the specified class. The realm