This repository has been archived by the owner on Mar 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
vimpack.gemspec
41 lines (35 loc) · 3.78 KB
/
vimpack.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "vimpack/version"
Gem::Specification.new do |s|
s.name = "vimpack"
s.version = Vimpack::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bram Swenson"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{ Vim Script Package Manager }
s.description = %q{ Vim Script Package Manager based on pathogen.vim by Tim Pope }
s.rubyforge_project = "vimpack"
s.files = ["Gemfile", "LICENSE", "README.md", "Rakefile", "autotest/discover.rb", "bin/vimpack", "cucumber.yml", "features/commands/environments.feature", "features/commands/git.feature", "features/commands/info.feature", "features/commands/init.feature", "features/commands/install.feature", "features/commands/list.feature", "features/commands/search.feature", "features/commands/uninstall.feature", "features/step_definitions/environment_steps.rb", "features/step_definitions/file_utils_steps.rb", "features/step_definitions/initialize_steps.rb", "features/step_definitions/output_steps.rb", "features/step_definitions/vimpack_git_steps.rb", "features/support/env.rb", "features/support/executable_paths.rb", "lib/vimpack.rb", "lib/vimpack/commands.rb", "lib/vimpack/commands/command.rb", "lib/vimpack/commands/git.rb", "lib/vimpack/commands/info.rb", "lib/vimpack/commands/init.rb", "lib/vimpack/commands/install.rb", "lib/vimpack/commands/list.rb", "lib/vimpack/commands/search.rb", "lib/vimpack/commands/uninstall.rb", "lib/vimpack/models.rb", "lib/vimpack/models/apibase.rb", "lib/vimpack/models/base.rb", "lib/vimpack/models/repo.rb", "lib/vimpack/models/script.rb", "lib/vimpack/utils/api.rb", "lib/vimpack/utils/file.rb", "lib/vimpack/utils/file_path.rb", "lib/vimpack/utils/git.rb", "lib/vimpack/utils/github.rb", "lib/vimpack/utils/io.rb", "lib/vimpack/utils/process.rb", "lib/vimpack/utils/vimscripts.rb", "lib/vimpack/version.rb", "simplecov_setup.rb", "spec/spec_helper.rb", "spec/vimpack/models/repo_spec.rb", "spec/vimpack/models/script_spec.rb", "spec/vimpack/utils/github_spec.rb", "spec/vimpack/utils/vimscripts_spec.rb", "tasks/cucumber.rake", "tasks/default.rake", "tasks/gemspec.rake", "templates/vimrc.erb", "vimpack.gemspec", "vimpack.gemspec.erb"]
s.test_files = ["features/commands/environments.feature", "features/commands/git.feature", "features/commands/info.feature", "features/commands/init.feature", "features/commands/install.feature", "features/commands/list.feature", "features/commands/search.feature", "features/commands/uninstall.feature", "features/step_definitions/environment_steps.rb", "features/step_definitions/file_utils_steps.rb", "features/step_definitions/initialize_steps.rb", "features/step_definitions/output_steps.rb", "features/step_definitions/vimpack_git_steps.rb", "features/support/env.rb", "features/support/executable_paths.rb", "spec/spec_helper.rb", "spec/vimpack/models/repo_spec.rb", "spec/vimpack/models/script_spec.rb", "spec/vimpack/utils/github_spec.rb", "spec/vimpack/utils/vimscripts_spec.rb"]
s.executables = ["vimpack"]
s.require_paths = ["lib"]
s.add_dependency('bundler', '~> 1')
s.add_dependency('trollop', '~> 1.16.2')
s.add_dependency('rainbow', '~> 1.1.3')
s.add_dependency('childprocess', '~> 0.3.1')
s.add_dependency('activemodel', '~> 3.0.11')
s.add_dependency('yajl-ruby', '~> 1.1.0')
s.add_dependency('enviro', '>=0.0.4')
s.add_dependency('nokogiri', '~> 1.5.0')
s.add_dependency('octokit', '~> 1.0.0')
s.add_development_dependency('vcr')
s.add_development_dependency('webmock')
s.add_development_dependency('cucumber')
s.add_development_dependency('rspec')
s.add_development_dependency('aruba')
s.add_development_dependency('simplecov')
s.add_development_dependency('ruby-debug19')
s.add_development_dependency('relish')
end