frm 0.0.2 → 0.0.3
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.
- data/Rakefile +2 -2
- data/lib/frm/version.rb +1 -1
- metadata +4 -4
- /data/bin/{fpm → frm} +0 -0
data/Rakefile
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
require 'bundler'
|
|
2
2
|
Bundler::GemHelper.install_tasks
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
frm_base = File.dirname __FILE__
|
|
5
5
|
|
|
6
6
|
namespace :bump do
|
|
7
7
|
|
|
8
8
|
desc "bump the patch version number"
|
|
9
9
|
task :patch do
|
|
10
|
-
version_file_path = File.join
|
|
10
|
+
version_file_path = File.join frm_base, 'lib', 'frm', 'version.rb'
|
|
11
11
|
current_version_file = File.read version_file_path
|
|
12
12
|
current_version_file =~ /VERSION[^\d]+(\d+)\.(\d+)\.(\d+)(\.([^'"]*))?/
|
|
13
13
|
major,minor,patch = $1, $2, $3
|
data/lib/frm/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.0.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Martin Rhoads
|
|
@@ -22,7 +22,7 @@ description: FRM makes it easy to build package repositories on S3
|
|
|
22
22
|
email:
|
|
23
23
|
- ermal14@gmail.com
|
|
24
24
|
executables:
|
|
25
|
-
-
|
|
25
|
+
- frm
|
|
26
26
|
extensions: []
|
|
27
27
|
|
|
28
28
|
extra_rdoc_files: []
|
|
@@ -32,7 +32,7 @@ files:
|
|
|
32
32
|
- Gemfile
|
|
33
33
|
- LICENSE
|
|
34
34
|
- Rakefile
|
|
35
|
-
- bin/
|
|
35
|
+
- bin/frm
|
|
36
36
|
- frm.gemspec
|
|
37
37
|
- lib/frm.rb
|
|
38
38
|
- lib/frm/deb.rb
|
/data/bin/{fpm → frm}
RENAMED
|
File without changes
|