Rakefile in js_spec-0.1.0 vs Rakefile in js_spec-0.2.0
- old
+ new
@@ -24,11 +24,11 @@
dir = File.dirname(__FILE__)
system("ruby #{dir}/spec/spec_suite.rb") || raise("Example Suite failed")
end
PKG_NAME = "js_spec"
-PKG_VERSION = "0.1.0"
+PKG_VERSION = "0.2.0"
PKG_FILES = FileList[
'[A-Z]*',
'*.rb',
'lib/**/*.rb',
'core/**',
@@ -43,22 +43,24 @@
s.test_files = "spec/spec_suite.rb"
s.description = s.summary
s.files = PKG_FILES.to_a
s.require_path = 'lib'
- s.executables = ['js_spec_server']
+ s.executables = ['js_spec', 'js_spec_server']
s.has_rdoc = true
s.extra_rdoc_files = [ "README", "CHANGES" ]
s.rdoc_options = ["--main", "README", "--inline-source", "--line-numbers"]
s.test_files = Dir.glob('spec/*_spec.rb')
s.require_path = 'lib'
- s.autorequire = 'js_spec'
s.author = "Brian Takita & Nathan Sobo"
s.email = "brian@pivotallabs.com"
s.homepage = "http://pivotallabs.com"
s.rubyforge_project = "pivotalrb"
+ s.add_dependency('Selenium')
+ s.add_dependency('thin')
+ s.add_dependency('uuid')
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true