devutils-guard 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/LICENSE +24 -0
  2. data/README.md +73 -0
  3. metadata +97 -0
data/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2012, Stefan Radomski
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+ * Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ * Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+ * Neither the name of the devutils nor the
12
+ names of its contributors may be used to endorse or promote products
13
+ derived from this software without specific prior written permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL Stefan Radomski BE LIABLE FOR ANY
19
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,73 @@
1
+ devutils
2
+ ========
3
+
4
+ These are small tools to make development easier in that they provide metagems
5
+ which pulls other common gems for development purposes.
6
+
7
+ usage
8
+ -----
9
+
10
+ To use devutils, first install the gem with
11
+
12
+ $ gem install devutils
13
+
14
+ Now that it is available, you can use it to create new projects
15
+
16
+ $ devutils init foo
17
+
18
+ This will create a directory structure in foo with a Gemfile already placed.
19
+ That Gemfile will hold 4 gems, which will pull in other dependencies most need
20
+ for development. If you don't want a dependency or want to use another one, you
21
+ are free to, as devutils will never again touch any files.
22
+
23
+ You can modify the behaviour with the following flags
24
+
25
+ * --metrics/--no-metrics:
26
+ install tools for meassuring code quality (default: true)
27
+ * --docs/--no-docs:
28
+ installs yard for documentation (default: true)
29
+ * --guard/--no-guard:
30
+ installs rudimentary guard support (default: true)
31
+
32
+ dependencies
33
+ ------------
34
+
35
+ The dependencies of the gems are as follows
36
+
37
+ ### devutils
38
+
39
+ * [rspec][rspec]: for writing specs
40
+
41
+ ### devutils-docs
42
+
43
+ * [yard][yard]: to parse documentation into html files
44
+
45
+ ### devutils-metrics
46
+
47
+ * [reek][reek]: a tool for code smell detection
48
+ * [flog][flog]: creates pain reports of the code
49
+ * [flay][flay]: finds duplicated code
50
+ * [roodi][roodi]: an object oriented code infometer
51
+ * [mutant][mutant]: a mutation testing tool
52
+ * [simplecov][simplecov]: a test coverage reporting tool (needs ruby > 1.8)
53
+ * [pelusa][pelusa]: a code analytics tool (needs rubinius)
54
+
55
+ ### devutils-guard
56
+
57
+ * [guard][guard]:
58
+ a tool to run automatic tasks on file changes (makes testing nicer)
59
+ * [guard-rspec][guard-rspec]: runs your specs automatically
60
+ * [guard-bundler][guard-bundler]: runs bundler, when your Gemfile changes
61
+
62
+ [yard]: http://yardoc.org/
63
+ [reek]: https://github.com/troessner/reek/wiki
64
+ [flog]: https://github.com/seattlerb/flog
65
+ [flay]: https://github.com/seattlerb/flay
66
+ [rspec]: http://rspec.info/
67
+ [roodi]: https://github.com/martinjandrews/roodi
68
+ [guard]: https://github.com/guard/guard
69
+ [mutant]: https://github.com/mbj/mutant
70
+ [pelusa]: http://codegram.github.com/pelusa/
71
+ [simplecov]: https://github.com/colszowka/simplecov
72
+ [guard-rspec]: https://github.com/guard/guard-rspec
73
+ [guard-bundler]: https://github.com/guard/guard-bundler
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devutils-guard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Stefan Radomski
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-06 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: guard
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: guard-bundler
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: guard-rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: a small tool for handling subtasks of projects
63
+ email: gibheer@gmail.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files:
67
+ - LICENSE
68
+ - README.md
69
+ files:
70
+ - LICENSE
71
+ - README.md
72
+ homepage: https://github.com/gibheer/devutils
73
+ licenses:
74
+ - 3-clause BSD
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ none: false
81
+ requirements:
82
+ - - ! '>='
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ! '>='
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 1.8.23
94
+ signing_key:
95
+ specification_version: 3
96
+ summary: a small tool for handling subtasks of projects
97
+ test_files: []