frm 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,13 +1,13 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
3
 
4
- fpm_base = File.dirname __FILE__
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 fpm_base, 'lib', 'frm', 'version.rb'
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
@@ -1,3 +1,3 @@
1
1
  module Frm
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
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
- - fpm
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/fpm
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