Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
fixed "rake gems" task
Browse files Browse the repository at this point in the history
  • Loading branch information
jarmo committed Oct 7, 2010
1 parent d591147 commit 7f1446b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -7,7 +7,7 @@ projects = ['watir', 'firewatir', 'commonwatir']
desc "Generate all the Watir gems"
task :gems do
projects.each do |project|
tmp_files = %w{CHANGES VERSION README.rdoc}
tmp_files = %w{CHANGES VERSION README.rdoc LICENSE}
FileUtils.cp tmp_files, project
Dir.chdir(project) do
puts `rake.bat gem`
Expand Down
3 changes: 2 additions & 1 deletion firewatir/firewatir.gemspec
Expand Up @@ -10,7 +10,8 @@ $__firewatir_source_patterns = [
'rakefile.rb',
'VERSION',
'firewatir.gemspec',
"README.rdoc"
"README.rdoc",
'LICENSE'
]

spec = Gem::Specification.new do |s|
Expand Down
2 changes: 1 addition & 1 deletion watir/watir.gemspec
@@ -1,7 +1,7 @@
require 'watir-rdoc'

$__watir_source_patterns = [
'CHANGES', 'rakefile.rb', 'VERSION', "README.rdoc", 'watir.gemspec', 'watir-rdoc.rb',
'CHANGES', 'rakefile.rb', 'VERSION', "README.rdoc", 'watir.gemspec', 'watir-rdoc.rb', 'LICENSE',
'lib/watir/*.rb', 'lib/watir/AutoItX3.dll',
'unittests/*.rb', 'unittests/html/*.html', 'unittests/html/images/*.*',
'unittests/other/*.rb', 'unittests/testcase/*.rb', 'unittests/windows/*.rb',
Expand Down

0 comments on commit 7f1446b

Please sign in to comment.