dr 0.0.1 → 0.0.2

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 (4) hide show
  1. data/dr.conf-example +11 -0
  2. data/dr.spec +4 -2
  3. data/lib/dr/version.rb +1 -1
  4. metadata +5 -3
@@ -0,0 +1,11 @@
1
+ default_repo: "production"
2
+
3
+ repositories:
4
+ - name: "production"
5
+ location: "/path/to/the/production/repo"
6
+
7
+ - name: "backup"
8
+ location: "/path/to/the/backup/repo"
9
+
10
+ - name: "sandbox"
11
+ location: "/path/to/the/sandbox/repo"
data/dr.spec CHANGED
@@ -8,8 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Dr::VERSION
9
9
  spec.authors = ["Radek Pazdera"]
10
10
  spec.email = ["radek@kano.me"]
11
- spec.summary = %q{dr is a packaging tool that helps you make,
12
- distribute and maintain you own disto packages.}
11
+ spec.summary = %q{dr stands for debian-repository. It is a packaging
12
+ tool that helps you make, distribute and maintain
13
+ you own disto packages and repositories. It's in a
14
+ very early stage, NOT READY for production.}
13
15
  spec.description = %q{This tool works with distribution-level packaging
14
16
  tools and helps you make and distribute your own
15
17
  Debian packages through your own repository.}
@@ -1,3 +1,3 @@
1
1
  module Dr
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -107,6 +107,7 @@ files:
107
107
  - README.md
108
108
  - Rakefile
109
109
  - bin/dr
110
+ - dr.conf-example
110
111
  - dr.spec
111
112
  - lib/dr.rb
112
113
  - lib/dr/buildroot.rb
@@ -144,6 +145,7 @@ rubyforge_project:
144
145
  rubygems_version: 1.8.23
145
146
  signing_key:
146
147
  specification_version: 3
147
- summary: dr is a packaging tool that helps you make, distribute and maintain you own
148
- disto packages.
148
+ summary: dr stands for debian-repository. It is a packaging tool that helps you make,
149
+ distribute and maintain you own disto packages and repositories. It's in a very
150
+ early stage, NOT READY for production.
149
151
  test_files: []