Cross package maker. DEB/RPM generation or conversion. Derived from jordansissel/fpm.

⌈⌋ ⎇ branch:  cross package maker


Check-in [1a9d6dddf9]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:- purge unused Rakefile
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1a9d6dddf9193c7eb1c1954ec850a010531774df
User & Date: jls@semicomplete.com 2013-06-04 19:27:39
Context
2013-06-04
19:29
Merge pull request #459 from torrancew/master Ensure fpm.rb requires all current package class files check-in: c75d5a04fb user: jls@semicomplete.com tags: trunk
19:27
- purge unused Rakefile check-in: 1a9d6dddf9 user: jls@semicomplete.com tags: trunk
2013-06-03
19:43
Merge pull request #455 from wayfair/master The npm tries to read from a variable that never really gets sent check-in: 59913610f5 user: jls@semicomplete.com tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Deleted Rakefile.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'rake/testtask'

task :default => [:package]

task :test do
  system("make -C test")
  Rake::Task[:minitest].invoke # Run these tests as well.
  # Eventually all the tests should be minitest-run or initiated.
end

# MiniTest tests
Rake::TestTask.new do |t|
  t.pattern = 'test/fpm/*.rb'
  t.name = 'minitest'
end

task :package => [:test, :package_real]  do
end

task :package_real do
  system("gem build fpm.gemspec")
end

task :publish do
  latest_gem = %x{ls -t fpm*.gem}.split("\n").first
  system("gem push #{latest_gem}")
end
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<