mo 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +21 -0
- data/README.md +36 -0
- data/lib/mo/version.rb +1 -1
- metadata +5 -3
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT LICENSE
|
2
|
+
|
3
|
+
Copyright (c) chatgris <jboyer@af83.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# MO
|
2
|
+
|
3
|
+
Mo helps you keep your rails project clean.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install it with rubygems:
|
8
|
+
|
9
|
+
gem install mo
|
10
|
+
|
11
|
+
With bundler, add it to your `Gemfile`:
|
12
|
+
|
13
|
+
``` ruby
|
14
|
+
gem "mo", "~>1.0"
|
15
|
+
```
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
```
|
20
|
+
Usage: mo [OPTIONS] COMMAND [ARGS]
|
21
|
+
|
22
|
+
Available commands:
|
23
|
+
check_syntax Check ruby syntax.
|
24
|
+
eighty_column Print files with more than 80 columns
|
25
|
+
encoding Add utf-8 encoding on files that don't have it
|
26
|
+
help Displays help for a command
|
27
|
+
rocketless Convert ruby hashes to 1.9 style.
|
28
|
+
whitespace Clean-up trailing whitespaces.
|
29
|
+
|
30
|
+
Options:
|
31
|
+
-h, --help Displays this help message
|
32
|
+
```
|
33
|
+
|
34
|
+
## Copyright
|
35
|
+
|
36
|
+
MIT. See LICENSE for further details.
|
data/lib/mo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: boson
|
@@ -34,10 +34,12 @@ executables:
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
+
- LICENSE
|
38
|
+
- README.md
|
37
39
|
- bin/mo
|
38
40
|
- lib/mo.rb
|
39
41
|
- lib/mo/version.rb
|
40
|
-
homepage:
|
42
|
+
homepage: http://chatgris.github.com/mo/
|
41
43
|
licenses: []
|
42
44
|
post_install_message:
|
43
45
|
rdoc_options: []
|