ruby-station.gemspec in ruby-station-0.0.4 vs ruby-station.gemspec in ruby-station-0.1.0
- old
+ new
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ruby-station}
- s.version = "0.0.4"
+ s.version = "0.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yutaka HARA"]
- s.date = %q{2009-08-15}
+ s.date = %q{2009-10-02}
s.default_executable = %q{ruby-station}
s.description = %q{Create, Distribute, and Install Ruby applications easily}
s.email = %q{yutaka.hara/at/gmail.com}
s.executables = ["ruby-station"]
s.files = [
@@ -33,34 +33,57 @@
"runtime/Rakefile",
"runtime/VERSION",
"runtime/lib/ruby-station.rb",
"runtime/lib/ruby-station/helper.rb",
"runtime/lib/ruby-station/helper/rails.rb",
- "runtime/ruby-station-runtime-0.0.3.gem",
"runtime/ruby-station-runtime-0.0.4.gem",
"sample.config.yaml",
- "spec/main.rb",
- "util/gem-manager.rb",
+ "tests/README",
+ "tests/Rakefile",
+ "tests/data/conf_dir/config.yaml",
+ "tests/features/install_file.feature",
+ "tests/features/install_name.feature",
+ "tests/features/list.feature",
+ "tests/features/step_definitions/application_steps.rb",
+ "tests/features/step_definitions/curelity_steps.rb",
+ "tests/features/support/env.rb",
+ "tests/features/uninstall.feature",
+ "tests/features/upgrade.feature",
+ "tests/spec/gem_manager.rb",
+ "tests/test_helper.rb",
+ "util/gem_manager.rb",
+ "util/servant.rb",
"view/applications/do_install.xhtml",
+ "view/applications/foo.xhtml",
"view/applications/install.xhtml",
"view/applications/uninstall.xhtml",
- "view/index.xhtml"
+ "view/index.xhtml",
+ "view/notfound.xhtml"
]
s.homepage = %q{http://github.com/yhara/ruby-station}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Create, Distribute, and Install Ruby applications easily}
- s.test_files = [
- "spec/main.rb"
- ]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
+ s.add_runtime_dependency(%q<ramaze>, ["= 2009.07"])
+ s.add_runtime_dependency(%q<dm-core>, [">= 0"])
+ s.add_runtime_dependency(%q<do_sqlite3>, [">= 0"])
+ s.add_development_dependency(%q<rspec>, ["= 1.2.8"])
else
+ s.add_dependency(%q<ramaze>, ["= 2009.07"])
+ s.add_dependency(%q<dm-core>, [">= 0"])
+ s.add_dependency(%q<do_sqlite3>, [">= 0"])
+ s.add_dependency(%q<rspec>, ["= 1.2.8"])
end
else
+ s.add_dependency(%q<ramaze>, ["= 2009.07"])
+ s.add_dependency(%q<dm-core>, [">= 0"])
+ s.add_dependency(%q<do_sqlite3>, [">= 0"])
+ s.add_dependency(%q<rspec>, ["= 1.2.8"])
end
end