Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Version 1.0.2.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasily Mikhaylichenko committed Jul 5, 2013
1 parent 4013ee7 commit ded2595
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.2.dev / 2013-07-06
* Fix Ruby 1.8.7 and Rubinius compatibility

## 1.0.1.dev / 2013-07-05
* Fix the project generator bug
* Make project generator output look nicer
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'rake/testtask'
require 'bundler/gem_tasks'

Rake::TestTask.new do |t|
t.pattern = "spec/**/*_spec.rb"
Expand Down
1 change: 1 addition & 0 deletions gusteau.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Gem::Specification.new do |gem|
gem.add_dependency 'net-ssh', '>= 2.2.2'
gem.add_dependency 'archive-tar-minitar', '>= 0.5.2'

gem.add_development_dependency 'bundler'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'simplecov'
Expand Down
2 changes: 1 addition & 1 deletion lib/gusteau/compressed_tar_stream.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def compressed_tar_stream(files, opts={})
Archive::Tar::Minitar.pack_file(f, tar)
end
tar.close.string.tap { |data|
data.force_encoding('binary') if data.respond_to?(:force_encoding)
data.force_encoding('binary') if data.respond_to?(:force_encoding)
puts " (compressed down to #{data.size} bytes)"
}
end
Expand Down
2 changes: 1 addition & 1 deletion lib/gusteau/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def upload(files_and_dirs, dest_dir, opts={})
files = []
Find.find(*files_and_dirs) do |f|
files << f unless(opts[:exclude] && f.include?(opts[:exclude]))
end
end
send_files(files, dest_dir)
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/gusteau/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Gusteau
VERSION = "1.0.1.dev"
VERSION = "1.0.2.dev"
end

0 comments on commit ded2595

Please sign in to comment.