rbcurse 1.1.1 → 1.1.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/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.tgz
2
+ *.gz
3
+ *.zip
4
+ *.tmp
5
+ *.db
6
+ bak
7
+ tmp
8
+ out
9
+ *.log.*
10
+ *.log
11
+ view.*
12
+ *.bk
13
+ old*
14
+ *.bak
15
+ tags
16
+ *.out
17
+ *.csv
18
+ .*
19
+ _*
20
+ html/
21
+ pkg/
22
+ todo.txt
23
+ done.txt
24
+ deltodo.txt
25
+ old/
26
+ *.old
27
+ Manifest.txt
28
+ Rakefile
29
+ TODO2.txt.2*
30
+ index.html
31
+ serial_numbers
32
+ report.txt
33
+ examples/ISSUES*
34
+ ISSUES
35
+ *~
data/Makefile ADDED
@@ -0,0 +1,21 @@
1
+ DISTFILES := README.markdown TODO2.txt NOTES lib/ examples/
2
+ VERSION := `cat VERSION_FILE`
3
+
4
+ #all: install
5
+
6
+ DISTNAME=rbcurse-$(VERSION)
7
+ dist: $(DISTFILES)
8
+ echo "ver: $(VERSION)"
9
+ mkdir -p $(DISTNAME)
10
+ cp -fr $(DISTFILES) $(DISTNAME)/
11
+ rm -rf $(DISTNAME)/examples/expected_output
12
+ tar cf $(DISTNAME).tar $(DISTNAME)/
13
+ gzip -f -9 $(DISTNAME).tar
14
+ zip -9r $(DISTNAME).zip $(DISTNAME)/
15
+ rm -r $(DISTNAME)
16
+
17
+ .PHONY: distclean
18
+ distclean:
19
+ rm -f $(DISTNAME).tar.gz $(DISTNAME).zip
20
+
21
+ #install: