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

⌈⌋ ⎇ branch:  cross package maker


Check-in [046a6786f4]

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

Overview
Comment:Try to use guard, but like... nothing works. I'll try this later.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 046a6786f491bd28a43b27dc8e11e92ba97ce13f
User & Date: jls@semicomplete.com 2012-02-24 08:38:45
Context
2012-02-24
08:41
I am majorly confused. Guard is silly. check-in: 97f4dc01ce user: jls@semicomplete.com tags: trunk
08:38
Try to use guard, but like... nothing works. I'll try this later. check-in: 046a6786f4 user: jls@semicomplete.com tags: trunk
07:51
- check-in: c49874e097 user: jls@semicomplete.com tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added Guardfile.













>
>
>
>
>
>
1
2
3
4
5
6
guard "minitest" do
  watch(%r{^test/.*/[^.][^/]+\.rb}) { |m| system("ruby #{m[0]}") }
  watch(%r{^lib/(.*/[^.][^/]+\.rb)}) { |m| system("ruby test/#{m[1]}") }
  notification :libnotify, :timeout => 5, :transient => true, :append => false
end