detroit-gem 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +37 -0
- data/COPYING.rdoc +24 -0
- data/LICENSE.txt +674 -0
- data/README.rdoc +27 -0
- data/lib/detroit-gem.rb +230 -0
- data/man/detroit-gem.5 +79 -0
- data/man/detroit-gem.5.html +147 -0
- data/man/detroit-gem.5.ronn +65 -0
- metadata +81 -0
@@ -0,0 +1,65 @@
|
|
1
|
+
detroit-gem(5) - build gem package with detroit
|
2
|
+
===============================================
|
3
|
+
|
4
|
+
## DESCRIPTION
|
5
|
+
|
6
|
+
The Gem plug-in for Detroit utilizes the `gem` command line tool
|
7
|
+
to build a `.gem` package for a project during the standard `package`
|
8
|
+
phase.
|
9
|
+
|
10
|
+
|
11
|
+
## OPTIONS
|
12
|
+
|
13
|
+
The following options can be used in the Detroit assembly file
|
14
|
+
for defining a Gem service.
|
15
|
+
|
16
|
+
* `gemspec` - The .gemspec file. The default is the first `.gemspec`
|
17
|
+
file found.
|
18
|
+
|
19
|
+
* `autospec` - Setting this option to `true` will have the plug-in
|
20
|
+
create a gemspec using a project's metadata. Default is `false`.
|
21
|
+
|
22
|
+
* `pkgdir` - Directory to save generated gem file. The default is `pkg/`.
|
23
|
+
|
24
|
+
* `install` - Should the gem be installed after being generated? Default
|
25
|
+
is `false`.
|
26
|
+
|
27
|
+
|
28
|
+
## EXAMPLES
|
29
|
+
|
30
|
+
Because the default options are all that is likely to be need the
|
31
|
+
common example something like:
|
32
|
+
|
33
|
+
gem:
|
34
|
+
active: true
|
35
|
+
|
36
|
+
A fuller example might look something like this.
|
37
|
+
|
38
|
+
gem:
|
39
|
+
gemspec: myapp-extra.gemspec
|
40
|
+
install: true
|
41
|
+
|
42
|
+
The above examples use the YAML-base assembly format. Assembly
|
43
|
+
files can also be Ruby-based. See Detroit documentation for more
|
44
|
+
details.
|
45
|
+
|
46
|
+
|
47
|
+
## RESOURCES
|
48
|
+
|
49
|
+
For more information:
|
50
|
+
|
51
|
+
* [API Documentation](http://rubydoc.info/gems/detroit-rubygems)
|
52
|
+
|
53
|
+
* [Development Site](http://github.com/detroit/detroit-rubygems)
|
54
|
+
|
55
|
+
|
56
|
+
## COPYRIGHT
|
57
|
+
|
58
|
+
Copyright (c) 2010 Thomas Sawyer, Rubyworks
|
59
|
+
|
60
|
+
Detroit RubyGems is distributable in accordance with the GPLv3 license.
|
61
|
+
|
62
|
+
|
63
|
+
## SEE ALSO
|
64
|
+
|
65
|
+
detroit(1), gem(1)
|
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: detroit-gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- T. Sawyer
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-02 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: detroit
|
16
|
+
requirement: &23212160 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.3.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *23212160
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rubygems
|
27
|
+
requirement: &23211680 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *23211680
|
36
|
+
description: The Gem plugin for the Detroit build system will build a gem during the
|
37
|
+
package phase and releases it to rubygems.org (or other gem source) during the release
|
38
|
+
phase.
|
39
|
+
email:
|
40
|
+
- transfire@gmail.com
|
41
|
+
executables: []
|
42
|
+
extensions: []
|
43
|
+
extra_rdoc_files:
|
44
|
+
- LICENSE.txt
|
45
|
+
- README.rdoc
|
46
|
+
- COPYING.rdoc
|
47
|
+
files:
|
48
|
+
- .ruby
|
49
|
+
- lib/detroit-gem.rb
|
50
|
+
- man/detroit-gem.5
|
51
|
+
- man/detroit-gem.5.html
|
52
|
+
- man/detroit-gem.5.ronn
|
53
|
+
- LICENSE.txt
|
54
|
+
- README.rdoc
|
55
|
+
- COPYING.rdoc
|
56
|
+
homepage: http://detroit.github.com/
|
57
|
+
licenses:
|
58
|
+
- GPL-3
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options: []
|
61
|
+
require_paths:
|
62
|
+
- lib
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 1.8.11
|
78
|
+
signing_key:
|
79
|
+
specification_version: 3
|
80
|
+
summary: Gem plugin for Detroit
|
81
|
+
test_files: []
|