Add geminstaller.yml to require jeweler.

Add rspec, rack, and thin requirements for gem.
This commit is contained in:
Christian Williams 2009-11-26 12:11:25 -05:00
parent 4b3db52915
commit 494d80fc66
4 changed files with 29 additions and 10 deletions

View File

@ -11,7 +11,11 @@ namespace :jeweler do
gemspec.homepage = "http://github.com/ragaskar/jasmine-ruby"
gemspec.description = "Jasmine Ruby"
gemspec.authors = ["Rajan Agaskar"]
gemspec.files = FileList.new('bin/*', 'lib/**/**', 'jasmine/lib/**', 'jasmine/contrib/ruby/**', 'tasks/**', 'templates/**')
gemspec.files = FileList.new('bin/*', 'lib/**/**', 'jasmine/lib/**', 'jasmine/contrib/ruby/**', 'tasks/**', 'templates/**')
gemspec.add_dependency('rspec', '>= 1.1.5')
gemspec.add_dependency('rack', '>= 1.0.0')
gemspec.add_dependency('thin', '>= 1.2.4')
end
Jeweler::GemcutterTasks.new
rescue LoadError

6
geminstaller.yml Normal file
View File

@ -0,0 +1,6 @@
---
gems:
- name: rake
version: 0.8.7
- name: jeweler
version: 1.4.0

@ -1 +1 @@
Subproject commit 8feb285ca839cb383eb433c5660ab0f98e86704b
Subproject commit 701ee719e6e1e7d9f2ac84707302cb430ac123e4

View File

@ -1,6 +1,6 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Rajan Agaskar"]
s.date = %q{2009-10-30}
s.date = %q{2009-11-26}
s.default_executable = %q{jasmine}
s.description = %q{Jasmine Ruby}
s.email = %q{ragaskar@gmail.com}
@ -27,22 +27,21 @@ Gem::Specification.new do |s|
"jasmine/lib/jasmine-0.10.0.js",
"jasmine/lib/jasmine.css",
"jasmine/lib/json2.js",
"lib/jasmine-ruby.rb",
"lib/jasmine-ruby/jasmine_helper.rb",
"lib/jasmine-ruby/jasmine_meta_spec.rb",
"lib/jasmine-ruby/jasmine_runner.rb",
"lib/jasmine-ruby/jasmine_spec_builder.rb",
"lib/jasmine-ruby/run.html",
"lib/jasmine-ruby.rb",
"tasks/jasmine.rake",
"templates/Rakefile",
"templates/example_spec.js",
"templates/spec_helper.js",
"templates/jasmine_helper.rb",
"templates/Rakefile"
"templates/spec_helper.js"
]
s.homepage = %q{http://github.com/ragaskar/jasmine-ruby}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.4}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Jasmine Ruby}
s.test_files = [
"spec/jasmine_spec.rb"
@ -53,8 +52,18 @@ Gem::Specification.new do |s|
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rspec>, [">= 1.1.5"])
s.add_runtime_dependency(%q<rack>, [">= 1.0.0"])
s.add_runtime_dependency(%q<thin>, [">= 1.2.4"])
else
s.add_dependency(%q<rspec>, [">= 1.1.5"])
s.add_dependency(%q<rack>, [">= 1.0.0"])
s.add_dependency(%q<thin>, [">= 1.2.4"])
end
else
s.add_dependency(%q<rspec>, [">= 1.1.5"])
s.add_dependency(%q<rack>, [">= 1.0.0"])
s.add_dependency(%q<thin>, [">= 1.2.4"])
end
end