tmb 0.0.7 → 0.0.8
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.tar.gz.sig +0 -0
- data/CHANGELOG +1 -0
- data/Rakefile +1 -1
- data/lib/tmb/bundle.rb +2 -1
- data/tmb.gemspec +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
v0.0.8. Fix bug that prevented installed db from being created if it didn't exist
|
|
1
2
|
v0.0.7. Fix bug that prevented searchdb from being created if it didn't exist
|
|
2
3
|
v0.0.6. We search ALL of the github repos now instead of just first 100
|
|
3
4
|
v0.0.5. Bundles can now be installed with a full github repo path - avoid searching issues
|
data/Rakefile
CHANGED
data/lib/tmb/bundle.rb
CHANGED
|
@@ -120,7 +120,7 @@ module TM
|
|
|
120
120
|
end
|
|
121
121
|
|
|
122
122
|
def self.db(settings=nil)
|
|
123
|
-
f = File.open(db_filename,
|
|
123
|
+
f = File.open(db_filename,File::RDWR|File::CREAT)
|
|
124
124
|
unless settings.nil?
|
|
125
125
|
parsed = settings.merge(YAML::parse( f.read ) || {})
|
|
126
126
|
f.puts YAML::dump( parsed )
|
|
@@ -365,6 +365,7 @@ module TM
|
|
|
365
365
|
puts "Bundle installed to #{destination}. \n\nReloading bundles..."
|
|
366
366
|
run_script(:bundle_reload_script)
|
|
367
367
|
puts "All done!"
|
|
368
|
+
update_db
|
|
368
369
|
end
|
|
369
370
|
|
|
370
371
|
end
|
data/tmb.gemspec
CHANGED
metadata
CHANGED
metadata.gz.sig
CHANGED
|
Binary file
|