This repository has been archived by the owner on Sep 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvagrant-bundler.gemspec
43 lines (39 loc) · 2.04 KB
/
vagrant-bundler.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "vagrant-bundler"
s.version = "0.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Joel Chippindale"]
s.date = "2012-04-29"
s.description = "vagrant-bundler is a vagrant plugin to make it possible to interact\nwith the guest's bundled gems directory from the host.\n"
s.email = "[email protected]"
s.extra_rdoc_files = ["README.mdown"]
s.files = ["README.mdown", "lib/vagrant_bundler", "lib/vagrant_bundler.rb", "lib/vagrant_bundler/command", "lib/vagrant_bundler/command/base.rb", "lib/vagrant_bundler/command/bundle.rb", "lib/vagrant_bundler/command/bundle_list.rb", "lib/vagrant_bundler/command/bundle_open.rb", "lib/vagrant_bundler/command/bundle_show.rb", "lib/vagrant_bundler/errors.rb", "lib/vagrant_init.rb", "templates/locales", "templates/locales/en.yml"]
s.homepage = "http://github.com/mocoso/vagrant-bundler"
s.rdoc_options = ["--main", "README.mdown"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.11"
s.summary = "Vagrant plugin for working with the guest's bundled gems"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<vagrant>, [">= 1.0.2"])
s.add_runtime_dependency(%q<i18n>, [">= 0.5.0"])
s.add_development_dependency(%q<rake>, [">= 0"])
s.add_development_dependency(%q<rdoc>, [">= 0"])
s.add_development_dependency(%q<minitest>, [">= 0"])
else
s.add_dependency(%q<vagrant>, [">= 1.0.2"])
s.add_dependency(%q<i18n>, [">= 0.5.0"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<minitest>, [">= 0"])
end
else
s.add_dependency(%q<vagrant>, [">= 1.0.2"])
s.add_dependency(%q<i18n>, [">= 0.5.0"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<rdoc>, [">= 0"])
s.add_dependency(%q<minitest>, [">= 0"])
end
end