1
0
Fork 0
mirror of https://github.com/vbatts/persistent-shell-history.git synced 2025-10-03 21:11:01 +00:00

rearranging classes and beginning to enable the history to have various

datastore types (not just GDBM)
This commit is contained in:
Vincent Batts 2012-08-23 21:09:09 -04:00
parent eb3cdd71c8
commit 7f97ccc568
8 changed files with 164 additions and 89 deletions

View file

@ -29,7 +29,7 @@ OptionParser.new do |opts|
end
end.parse!(ARGV)
bh = BashHistory.new(bh_options)
bh = Persistent::Shell::DataStore.new(bh_options)
if options[:inspect]
p bh
@ -61,3 +61,4 @@ elsif options[:list]
end
end
# vim: set sts=2 sw=2 et ai: