Skip to content

Commit 9f07e63

Browse files
committed
Prep for release
1 parent 3121238 commit 9f07e63

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.695 - 2009-03-01
2+
3+
- Alpha versions of vPim agent (http://agent.octetcloud.com)
4+
- Fixed: reminder app had drifted out of sync with API change
5+
6+
17
0.657 - 2008-08-14
28

39
- Date#to_time renamed to Date#vpim_to_time. Apparently Rails also patches the core.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ SAMPLES := \
9393
.PHONY: doc
9494
doc:
9595
rm -rf doc/
96-
rdoc $(RDFLAGS) -x lib/vpim/agent lib/vpim CHANGES COPYING README samples/README.mutt
96+
rdoc $(RDFLAGS) lib/vpim CHANGES COPYING README samples/README.mutt
9797
for s in $(SAMPLES); do cp $$s doc/`basename $$s .rb`.txt; done
9898
cp etc/rfc24*.txt doc/
9999
chmod u=rw doc/*.txt

vpim.gemspec

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ require 'pp'
33
require 'rake'
44
require 'svn'
55

6-
Gem.manage_gems
7-
86
def info(s)
97
{
108
:author => "Sam Roberts",
@@ -29,7 +27,8 @@ This is a pure-ruby library for decoding and encoding vCard and iCalendar data
2927
s.extra_rdoc_files = ["README", "CHANGES", "COPYING", "samples/README.mutt" ]
3028

3129
candidates = FileList[
32-
'lib/**/*.rb',
30+
'lib/vpim/**/*.rb',
31+
'lib/vpim.rb',
3332
'bin/*',
3433
'samples/*',
3534
'test/test_*.rb',
@@ -38,8 +37,6 @@ This is a pure-ruby library for decoding and encoding vCard and iCalendar data
3837
'CHANGES',
3938
].to_a
4039

41-
candidates.reject!{|path| path.include? 'agent'}
42-
4340
s.files = candidates
4441
s.test_files = Dir.glob("test/test_*.rb")
4542
s.executables = FileList["bin/*"].map{|path| File.basename(path)}

0 commit comments

Comments
 (0)