ctags_ruby 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/ctags_ruby.gemspec +2 -4
- data/lib/ctags_ruby/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ab66252f264d70483b33774a77cec35083c9641
|
|
4
|
+
data.tar.gz: df5bd57388bef19b73eaf55888f67be6b736b57e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04ac840d445dc2cf64369a1bcbb49edad52c392384563eb3e53b6c3f4891f8b0151d84754c82b9b9cf6812b6168c57e17aeef0ec762478cf55fb0e5ecab53db3
|
|
7
|
+
data.tar.gz: 8de9b68c062c1be945b96f88f18798582ea6ded9b48ecb6e4e6130fb41581b1931a461353ab0fa52767fff9d7bae0feef717e1bce44c9a26f2bd9d737e8ee071
|
data/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
[](https://travis-ci.org/iamkristian/ctags_ruby) [](https://codeclimate.com/github/iamkristian/ctags_ruby)
|
|
1
2
|
# CtagsRuby
|
|
2
3
|
|
|
3
4
|
Generate ctags files for your ruby project and your projects dependencies.
|
data/ctags_ruby.gemspec
CHANGED
|
@@ -8,9 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = CtagsRuby::VERSION
|
|
9
9
|
spec.authors = ["Kristian Rasmussen"]
|
|
10
10
|
spec.email = ["kristian@iamkristian.com"]
|
|
11
|
-
spec.description = %q{
|
|
12
|
-
spec.summary = %q{WIll run ctags
|
|
13
|
-
and dependent gems.}
|
|
11
|
+
spec.description = %q{Wrapper for ctags}
|
|
12
|
+
spec.summary = %q{WIll run ctags on your project and dependent gems.}
|
|
14
13
|
spec.homepage = "http://github.com/iamkristian/ctags_ruby"
|
|
15
14
|
spec.license = "MIT"
|
|
16
15
|
|
|
@@ -18,5 +17,4 @@ Gem::Specification.new do |spec|
|
|
|
18
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
19
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
20
19
|
spec.require_paths = ["lib"]
|
|
21
|
-
|
|
22
20
|
end
|
data/lib/ctags_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ctags_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kristian Rasmussen
|
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2014-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: Wrapper for ctags
|
|
14
14
|
email:
|
|
15
15
|
- kristian@iamkristian.com
|
|
16
16
|
executables:
|
|
@@ -57,7 +57,7 @@ rubyforge_project:
|
|
|
57
57
|
rubygems_version: 2.0.14
|
|
58
58
|
signing_key:
|
|
59
59
|
specification_version: 4
|
|
60
|
-
summary: WIll run ctags
|
|
60
|
+
summary: WIll run ctags on your project and dependent gems.
|
|
61
61
|
test_files:
|
|
62
62
|
- spec/lib/ctags_ruby/gem_tags_spec.rb
|
|
63
63
|
- spec/lib/ctags_ruby/tags_spec.rb
|