devutils-docs 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/LICENSE +24 -0
  2. data/README.md +73 -0
  3. metadata +65 -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.
data/README.md ADDED
@@ -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,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devutils-docs
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: yard
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
+ description: A dependency for devutils, which mangages documentation.
31
+ email: gibheer@gmail.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files:
35
+ - LICENSE
36
+ - README.md
37
+ files:
38
+ - LICENSE
39
+ - README.md
40
+ homepage: https://github.com/gibheer/devutils
41
+ licenses:
42
+ - 3-clause BSD
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ none: false
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ! '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 1.8.23
62
+ signing_key:
63
+ specification_version: 3
64
+ summary: A dependency for devutils, which mangages documentation.
65
+ test_files: []