Add ctags
This commit is contained in:
parent
abffc4248d
commit
1b3e53a86a
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,6 +12,7 @@
|
||||
|
||||
# ctags
|
||||
tags
|
||||
gems.tags
|
||||
|
||||
# bundler state
|
||||
/.bundle
|
||||
|
||||
1
Gemfile
1
Gemfile
@ -40,6 +40,7 @@ group :development do
|
||||
gem 'rb-fsevent', require: false
|
||||
gem 'rb-inotify', require: false
|
||||
gem 'spring-commands-rspec'
|
||||
gem 'guard-ctags-bundler'
|
||||
end
|
||||
group :development, :test do
|
||||
gem 'factory_girl_rails'
|
||||
|
||||
@ -114,6 +114,9 @@ GEM
|
||||
guard (~> 2.2)
|
||||
guard-compat (~> 1.1)
|
||||
guard-compat (1.2.0)
|
||||
guard-ctags-bundler (1.4.0)
|
||||
guard (>= 2.0)
|
||||
guard-compat (>= 0.1.0)
|
||||
guard-rails (0.7.0)
|
||||
guard (~> 2.0)
|
||||
guard-rspec (4.5.0)
|
||||
@ -344,6 +347,7 @@ DEPENDENCIES
|
||||
faker
|
||||
foreman
|
||||
guard-bundler
|
||||
guard-ctags-bundler
|
||||
guard-rails
|
||||
guard-rspec
|
||||
haml-lint
|
||||
@ -376,3 +380,6 @@ DEPENDENCIES
|
||||
turbolinks
|
||||
uglifier (>= 1.3.0)
|
||||
upmin-admin
|
||||
|
||||
BUNDLED WITH
|
||||
1.10.6
|
||||
|
||||
@ -93,3 +93,8 @@ guard :rspec, cmd: "bundle exec spring rspec" do
|
||||
Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
|
||||
end
|
||||
end
|
||||
|
||||
guard 'ctags-bundler', src_path: ["app", "lib", "spec/support"], project_file: "tags" do
|
||||
watch(/^(app|lib|spec\/support)\/.*\.rb$/)
|
||||
watch('Gemfile.lock')
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user