CoffeeTags 0.2.1 → 0.3.0
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 +7 -7
- data/.coveralls.yml +1 -0
- data/.gitignore +1 -0
- data/.travis.yml +6 -3
- data/Gemfile +2 -0
- data/README.md +22 -7
- data/lib/CoffeeTags/formatter.rb +12 -9
- data/lib/CoffeeTags/version.rb +1 -1
- data/lib/CoffeeTags.rb +9 -2
- data/plugin/coffee-autotag.vim +1 -1
- data/spec/coffeetags_spec.rb +24 -4
- data/spec/coveralls-setup.rb +12 -0
- data/spec/fixtures/append-expected.ctags +22 -22
- data/spec/fixtures/append.ctags +23 -23
- data/spec/fixtures/blockcomment.ctags +6 -6
- data/spec/fixtures/campfire.js.tags +1 -1
- data/spec/fixtures/out.test-relative-append.ctags +18 -18
- data/spec/fixtures/out.test-relative.ctags +17 -17
- data/spec/fixtures/out.test-two.ctags +17 -17
- data/spec/fixtures/out.test.ctags +9 -9
- data/spec/formatter_spec.rb +2 -2
- data/spec/spec_helper.rb +12 -0
- metadata +26 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
5
|
-
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8e4b32435b13c35d08af825ca5bab2d658b8d753
|
4
|
+
data.tar.gz: e5a11d345c2ca2fe8d64b7b7c4af765225a3d0e1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4bd1568e7b9222f1873c093ed7e17f585924fd49b6b5ee673911babd0f31965aec10a6e32324921a00ddb5e76e0fc72debfd13aa0a47acc19253dffd2efe8025
|
7
|
+
data.tar.gz: a37989277a3031d3f92aead2821e34fd3191850ce0696f4e798743607de60575dfaeab341a7206f3bcab586325ad734f5672b280f16be47e5edc40e8042e1712
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# CoffeeTags
|
2
2
|
|
3
|
-
### Latest version:
|
3
|
+
### Latest version: [![Gem version][ruby-gems-image]][ruby-gems-url]
|
4
4
|
|
5
5
|
A simple tool for generating CoffeeScript tags (Ctags compatible).
|
6
6
|
|
7
|
-
[![Build Status]
|
7
|
+
[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url]
|
8
8
|
|
9
9
|
### [Watch a quick demo](http://ascii.io/a/26)
|
10
10
|
|
@@ -25,7 +25,11 @@ will generate standard TAGS file which later can be used with Vim (standard `:ta
|
|
25
25
|
|
26
26
|
# Requirements
|
27
27
|
|
28
|
-
* ruby
|
28
|
+
* ruby 1.8.7 and up
|
29
|
+
|
30
|
+
### Windows support
|
31
|
+
|
32
|
+
[Yup, we got it!](https://github.com/lukaszkorecki/CoffeeTags/issues/28#issuecomment-44046429)
|
29
33
|
|
30
34
|
### Editors supported
|
31
35
|
|
@@ -67,24 +71,27 @@ This can also be used as a vim plugin that will update tag files on save, and su
|
|
67
71
|
In you `~/.vimrc` you can configure the plugin with:
|
68
72
|
|
69
73
|
```
|
70
|
-
let g:
|
74
|
+
let g:CoffeeAutoTagDisabled=<0 or 1> " Disables autotaging on save (Default: 0 [false])
|
71
75
|
let g:CoffeeAutoTagFile=<filename> " Name of the generated tag file (Default: ./tags)
|
72
76
|
let g:CoffeeAutoTagIncludeVars=<0 or 1> " Includes variables (Default: 0 [false])
|
73
77
|
let g:CoffeeAutoTagTagRelative=<0 or 1> " Sets file names to the relative path from the tag file location to the tag file location (Default: 1 [true])
|
74
78
|
```
|
75
79
|
|
76
|
-
|
80
|
+
# Sublime Text
|
77
81
|
|
78
82
|
*TODO* - I don't use ST myself, but PRs with HOWTO are welcomed
|
79
83
|
|
80
|
-
|
84
|
+
# Config types
|
81
85
|
|
82
86
|
CoffeeTags can work in 2 modes:
|
83
87
|
|
84
88
|
- tags only for functions (default)
|
85
89
|
- tags for functions and objects containing them
|
86
90
|
|
87
|
-
Second mode is activated by
|
91
|
+
Second mode is activated by:
|
92
|
+
|
93
|
+
- Adding `--include-vars` to command line arguments
|
94
|
+
- Setting `let g:CoffeeAutoTagIncludeVars=1` in your `~/.vimrc` for vim
|
88
95
|
|
89
96
|
# TODO
|
90
97
|
|
@@ -96,3 +103,11 @@ MIT
|
|
96
103
|
|
97
104
|
[](https://bitdeli.com/free "Bitdeli Badge")
|
98
105
|
|
106
|
+
[travis-url]: https://travis-ci.org/lukaszkorecki/CoffeeTags
|
107
|
+
[travis-image]: https://travis-ci.org/lukaszkorecki/CoffeeTags.svg?branch=master
|
108
|
+
|
109
|
+
[ruby-gems-url]: http://rubygems.org/gems/CoffeeTags
|
110
|
+
[ruby-gems-image]: https://badge.fury.io/rb/CoffeeTags.svg
|
111
|
+
|
112
|
+
[coveralls-url]: https://coveralls.io/r/lukaszkorecki/CoffeeTags?branch=master
|
113
|
+
[coveralls-image]: https://img.shields.io/coveralls/lukaszkorecki/CoffeeTags.svg
|
data/lib/CoffeeTags/formatter.rb
CHANGED
@@ -13,6 +13,15 @@ module Coffeetags
|
|
13
13
|
].map { |h| "#{h}\n"}.join ''
|
14
14
|
end
|
15
15
|
|
16
|
+
def self.kinds
|
17
|
+
return {
|
18
|
+
'f' => 'function',
|
19
|
+
'c' => 'class',
|
20
|
+
'o' => 'object',
|
21
|
+
'v' => 'var'
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
16
25
|
# New Formatter class
|
17
26
|
#
|
18
27
|
# @param [String] file file name
|
@@ -21,13 +30,6 @@ module Coffeetags
|
|
21
30
|
@file = file
|
22
31
|
@tree = tree
|
23
32
|
|
24
|
-
|
25
|
-
@types = {
|
26
|
-
'f' => 'type:function',
|
27
|
-
'c' => 'type:class',
|
28
|
-
'o' => 'type:object',
|
29
|
-
'v' => 'type:var'
|
30
|
-
}
|
31
33
|
@header = Formatter.header
|
32
34
|
end
|
33
35
|
|
@@ -46,9 +48,10 @@ module Coffeetags
|
|
46
48
|
@file,
|
47
49
|
regex_line(entry[:source]),
|
48
50
|
entry[:kind],
|
49
|
-
"
|
51
|
+
"line:#{entry[:line]}",
|
50
52
|
namespace,
|
51
|
-
|
53
|
+
"kind:"+Formatter::kinds()[entry[:kind]],
|
54
|
+
"language:coffee"
|
52
55
|
].join("\t")
|
53
56
|
end
|
54
57
|
|
data/lib/CoffeeTags/version.rb
CHANGED
data/lib/CoffeeTags.rb
CHANGED
@@ -66,9 +66,14 @@ module Coffeetags
|
|
66
66
|
exit
|
67
67
|
end
|
68
68
|
|
69
|
-
opts.on('-
|
69
|
+
opts.on('--list-kinds', 'Lists the tag kinds') do
|
70
|
+
Coffeetags::Formatter.kinds().map { |k, v| puts "#{k} #{v}" }
|
71
|
+
options[:exit] = true
|
72
|
+
end
|
73
|
+
|
74
|
+
opts.on('-h','--help','HELP') do
|
70
75
|
puts opts
|
71
|
-
exit
|
76
|
+
options[:exit] = true
|
72
77
|
end
|
73
78
|
|
74
79
|
end
|
@@ -83,6 +88,8 @@ module Coffeetags
|
|
83
88
|
|
84
89
|
|
85
90
|
def self.run options
|
91
|
+
exit if options[:exit]
|
92
|
+
|
86
93
|
output = options[:output]
|
87
94
|
include_vars = options[:include_vars]
|
88
95
|
files = options[:files]
|
data/plugin/coffee-autotag.vim
CHANGED
data/spec/coffeetags_spec.rb
CHANGED
@@ -3,10 +3,7 @@ include Coffeetags
|
|
3
3
|
describe Utils do
|
4
4
|
context 'Argument parsing' do
|
5
5
|
it "returns nil when nothing is passed" do
|
6
|
-
|
7
|
-
Utils.option_parser( [])
|
8
|
-
}.to raise_error SystemExit
|
9
|
-
|
6
|
+
Utils.option_parser([]).should == { :exit => true, :files => [] }
|
10
7
|
end
|
11
8
|
|
12
9
|
it "returns files list" do
|
@@ -28,6 +25,21 @@ describe Utils do
|
|
28
25
|
it "parses -f <file> option" do
|
29
26
|
Utils.option_parser( [ '-f','tags' ,'lol.coffee']).should == { :output => 'tags', :files => ['lol.coffee'] }
|
30
27
|
end
|
28
|
+
|
29
|
+
it "outputs list-kinds to console" do
|
30
|
+
options = nil
|
31
|
+
output = capture_stdout {
|
32
|
+
options = Utils.option_parser( ['--list-kinds'])
|
33
|
+
}
|
34
|
+
output.should == <<-TAG
|
35
|
+
f function
|
36
|
+
c class
|
37
|
+
o object
|
38
|
+
v var
|
39
|
+
TAG
|
40
|
+
|
41
|
+
options[:exit].should == true
|
42
|
+
end
|
31
43
|
end
|
32
44
|
|
33
45
|
context 'Relative file path' do
|
@@ -89,6 +101,14 @@ FF
|
|
89
101
|
|
90
102
|
end
|
91
103
|
|
104
|
+
context 'Runner exit' do
|
105
|
+
it 'exits when the exit flag is present' do
|
106
|
+
expect {
|
107
|
+
Coffeetags::Utils.run({ :exit => true })
|
108
|
+
}.to raise_error SystemExit
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
92
112
|
context "Complete output" do
|
93
113
|
it "generates tags for given file" do
|
94
114
|
Coffeetags::Utils.run({ :output => 'test.out', :files => 'spec/fixtures/test.coffee' })
|
@@ -3,25 +3,25 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
8
|
-
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
9
|
-
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f
|
10
|
-
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
11
|
-
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
12
|
-
bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f
|
13
|
-
bump spec/fixtures/test.coffee /^ bump : ->$/;" f
|
14
|
-
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
15
|
-
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
16
|
-
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
17
|
-
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f
|
18
|
-
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f
|
19
|
-
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f
|
20
|
-
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f
|
21
|
-
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f
|
22
|
-
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
23
|
-
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f
|
24
|
-
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f
|
25
|
-
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f
|
26
|
-
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f
|
27
|
-
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
8
|
+
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
9
|
+
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f line:15 object:window kind:function language:coffee
|
10
|
+
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
11
|
+
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
12
|
+
bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f line:46 object:Test kind:function language:coffee
|
13
|
+
bump spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
14
|
+
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
15
|
+
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
16
|
+
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
17
|
+
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f line:7 object:window kind:function language:coffee
|
18
|
+
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f line:23 object:window kind:function language:coffee
|
19
|
+
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f line:26 object:window kind:function language:coffee
|
20
|
+
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f line:10 object:window kind:function language:coffee
|
21
|
+
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f line:14 object:Campfire kind:function language:coffee
|
22
|
+
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
23
|
+
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f line:24 object:Campfire.handlers.resp kind:function language:coffee
|
24
|
+
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f line:16 object:Campfire.handlers.resp kind:function language:coffee
|
25
|
+
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f line:40 object:Campfire kind:function language:coffee
|
26
|
+
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f line:34 object:Campfire kind:function language:coffee
|
27
|
+
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f line:29 object:Campfire kind:function language:coffee
|
data/spec/fixtures/append.ctags
CHANGED
@@ -3,27 +3,27 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
!_TAG_PROGRAM_VERSION 0.
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
8
8
|
!_THIS_LINE_SHOULD_GET_REMOVED Nothing to see here //
|
9
|
-
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
10
|
-
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
11
|
-
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f
|
12
|
-
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
13
|
-
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
14
|
-
bump spec/fixtures/test.coffee /^ bump : ->$/;" f
|
15
|
-
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
16
|
-
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
17
|
-
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
18
|
-
constructor2 spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
19
|
-
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f
|
20
|
-
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f
|
21
|
-
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f
|
22
|
-
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f
|
23
|
-
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f
|
24
|
-
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
25
|
-
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f
|
26
|
-
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f
|
27
|
-
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f
|
28
|
-
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f
|
29
|
-
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f
|
9
|
+
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
10
|
+
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
11
|
+
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f line:15 object:window kind:function language:coffee
|
12
|
+
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
13
|
+
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
14
|
+
bump spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
15
|
+
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
16
|
+
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
17
|
+
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
18
|
+
constructor2 spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
19
|
+
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f line:7 object:window kind:function language:coffee
|
20
|
+
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f line:23 object:window kind:function language:coffee
|
21
|
+
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f line:26 object:window kind:function language:coffee
|
22
|
+
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f line:10 object:window kind:function language:coffee
|
23
|
+
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f line:14 object:Campfire kind:function language:coffee
|
24
|
+
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
25
|
+
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f line:24 object:Campfire.handlers.resp kind:function language:coffee
|
26
|
+
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f line:16 object:Campfire.handlers.resp kind:function language:coffee
|
27
|
+
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f line:40 object:Campfire kind:function language:coffee
|
28
|
+
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f line:34 object:Campfire kind:function language:coffee
|
29
|
+
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f line:29 object:Campfire kind:function language:coffee
|
@@ -3,9 +3,9 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f
|
8
|
-
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f
|
9
|
-
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f
|
10
|
-
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f
|
11
|
-
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f line:15 object:window kind:function language:coffee
|
8
|
+
echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f line:7 object:window kind:function language:coffee
|
9
|
+
echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f line:23 object:window kind:function language:coffee
|
10
|
+
foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f line:26 object:window kind:function language:coffee
|
11
|
+
foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f line:10 object:window kind:function language:coffee
|
@@ -3,7 +3,7 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
7
|
bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f lineno:46 object:Test type:function
|
8
8
|
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
|
9
9
|
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
|
@@ -3,22 +3,22 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
!_TAG_PROGRAM_VERSION 0.
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
8
8
|
!_THIS_LINE_SHOULD_GET_REMOVED Nothing to see here //
|
9
|
-
@filter ../spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
10
|
-
_loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
11
|
-
beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
12
|
-
bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
13
|
-
bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f
|
14
|
-
bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
15
|
-
bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
16
|
-
constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
17
|
-
constructor2 ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
18
|
-
handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f
|
19
|
-
ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
20
|
-
onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f
|
21
|
-
onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f
|
22
|
-
recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f
|
23
|
-
roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f
|
24
|
-
rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f
|
9
|
+
@filter ../spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
10
|
+
_loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
11
|
+
beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
12
|
+
bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
13
|
+
bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
14
|
+
bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
15
|
+
bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
16
|
+
constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
17
|
+
constructor2 ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
18
|
+
handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f line:14 object:Campfire kind:function language:coffee
|
19
|
+
ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
20
|
+
onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f line:24 object:Campfire.handlers.resp kind:function language:coffee
|
21
|
+
onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f line:16 object:Campfire.handlers.resp kind:function language:coffee
|
22
|
+
recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f line:40 object:Campfire kind:function language:coffee
|
23
|
+
roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f line:34 object:Campfire kind:function language:coffee
|
24
|
+
rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f line:29 object:Campfire kind:function language:coffee
|
@@ -3,20 +3,20 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
@filter ../spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
8
|
-
_loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
9
|
-
beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
10
|
-
bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
11
|
-
bump ../spec/fixtures/campfire.coffee /^ bump : ->$/;" f
|
12
|
-
bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f
|
13
|
-
bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
14
|
-
bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
15
|
-
constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
16
|
-
handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f
|
17
|
-
ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
18
|
-
onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f
|
19
|
-
onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f
|
20
|
-
recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f
|
21
|
-
roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f
|
22
|
-
rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
@filter ../spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
8
|
+
_loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
9
|
+
beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
10
|
+
bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
11
|
+
bump ../spec/fixtures/campfire.coffee /^ bump : ->$/;" f line:46 object:Test kind:function language:coffee
|
12
|
+
bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
13
|
+
bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
14
|
+
bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
15
|
+
constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
16
|
+
handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f line:14 object:Campfire kind:function language:coffee
|
17
|
+
ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
18
|
+
onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f line:24 object:Campfire.handlers.resp kind:function language:coffee
|
19
|
+
onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f line:16 object:Campfire.handlers.resp kind:function language:coffee
|
20
|
+
recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f line:40 object:Campfire kind:function language:coffee
|
21
|
+
roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f line:34 object:Campfire kind:function language:coffee
|
22
|
+
rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f line:29 object:Campfire kind:function language:coffee
|
@@ -3,20 +3,20 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
8
|
-
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
9
|
-
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
10
|
-
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
11
|
-
bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f
|
12
|
-
bump spec/fixtures/test.coffee /^ bump : ->$/;" f
|
13
|
-
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
14
|
-
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
15
|
-
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f
|
16
|
-
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f
|
17
|
-
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
18
|
-
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f
|
19
|
-
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f
|
20
|
-
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f
|
21
|
-
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f
|
22
|
-
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
8
|
+
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
9
|
+
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
10
|
+
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
11
|
+
bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f line:46 object:Test kind:function language:coffee
|
12
|
+
bump spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
13
|
+
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
14
|
+
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
15
|
+
constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f line:8 object:Campfire kind:function language:coffee
|
16
|
+
handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f line:14 object:Campfire kind:function language:coffee
|
17
|
+
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
18
|
+
onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f line:24 object:Campfire.handlers.resp kind:function language:coffee
|
19
|
+
onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f line:16 object:Campfire.handlers.resp kind:function language:coffee
|
20
|
+
recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f line:40 object:Campfire kind:function language:coffee
|
21
|
+
roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f line:34 object:Campfire kind:function language:coffee
|
22
|
+
rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f line:29 object:Campfire kind:function language:coffee
|
@@ -3,12 +3,12 @@
|
|
3
3
|
!_TAG_PROGRAM_AUTHOR Łukasz Korecki /lukasz@coffeesounds.com/
|
4
4
|
!_TAG_PROGRAM_NAME CoffeeTags //
|
5
5
|
!_TAG_PROGRAM_URL https://github.com/lukaszkorecki/CoffeeTags /GitHub repository/
|
6
|
-
!_TAG_PROGRAM_VERSION 0.
|
7
|
-
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f
|
8
|
-
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f
|
9
|
-
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f
|
10
|
-
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f
|
11
|
-
bump spec/fixtures/test.coffee /^ bump : ->$/;" f
|
12
|
-
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f
|
13
|
-
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f
|
14
|
-
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f
|
6
|
+
!_TAG_PROGRAM_VERSION 0.3.0 //
|
7
|
+
@filter spec/fixtures/test.coffee /^ @filter = ->$/;" f line:14 object:Wat.ho kind:function language:coffee
|
8
|
+
_loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f line:19 object:window kind:function language:coffee
|
9
|
+
beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f line:44 object:window kind:function language:coffee
|
10
|
+
bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f line:41 object:window kind:function language:coffee
|
11
|
+
bump spec/fixtures/test.coffee /^ bump : ->$/;" f line:10 object:Wat.ho.@lolWat kind:function language:coffee
|
12
|
+
bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f line:1 object:window kind:function language:coffee
|
13
|
+
bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f line:12 object:Wat.ho.@lolWat kind:function language:coffee
|
14
|
+
ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f line:5 object:Wat kind:function language:coffee
|
data/spec/formatter_spec.rb
CHANGED
@@ -14,14 +14,14 @@ describe 'CoffeeTags::Formatter' do
|
|
14
14
|
|
15
15
|
it "generates a line for method definition" do
|
16
16
|
exp = [ 'constructor', 'test.coffee', "/^ constructor: (api_key, host) ->$/;\"",
|
17
|
-
'f', '
|
17
|
+
'f', 'line:8', 'object:Campfire', 'kind:function', 'language:coffee',
|
18
18
|
].join("\t")
|
19
19
|
@instance.parse_tree.first.should == exp
|
20
20
|
end
|
21
21
|
|
22
22
|
it "generates line for second class" do
|
23
23
|
exp = [ 'bump', 'test.coffee', "/^ bump : ->$/;\"",
|
24
|
-
'f', '
|
24
|
+
'f', 'line:46', 'object:Test', 'kind:function', 'language:coffee',
|
25
25
|
].join "\t"
|
26
26
|
@instance.parse_tree.last.should == exp
|
27
27
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,26 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: CoffeeTags
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
-
|
6
|
+
authors:
|
7
|
+
- Łukasz Korecki
|
8
8
|
- Matthew Smith
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2014-04-25 00:00:00 Z
|
12
|
+
date: 2014-08-18 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
|
-
|
16
14
|
description: CoffeeTags generates ctags compatibile tags for CoffeeScript.
|
17
|
-
email:
|
15
|
+
email:
|
18
16
|
- lukasz@coffeesounds.com
|
19
17
|
- mtscout6@gmail.com
|
20
|
-
executables:
|
18
|
+
executables:
|
21
19
|
- coffeetags
|
22
20
|
extensions: []
|
23
|
-
|
24
21
|
extra_rdoc_files: []
|
25
|
-
|
26
|
-
|
22
|
+
files:
|
23
|
+
- .coveralls.yml
|
27
24
|
- .gitignore
|
28
25
|
- .rspec
|
29
26
|
- .rvmrc
|
@@ -40,6 +37,7 @@ files:
|
|
40
37
|
- lib/CoffeeTags/version.rb
|
41
38
|
- plugin/coffee-autotag.vim
|
42
39
|
- spec/coffeetags_spec.rb
|
40
|
+
- spec/coveralls-setup.rb
|
43
41
|
- spec/fixtures/append-expected.ctags
|
44
42
|
- spec/fixtures/append.ctags
|
45
43
|
- spec/fixtures/blockcomment.coffee
|
@@ -63,33 +61,32 @@ files:
|
|
63
61
|
- tagbar-info.markdown
|
64
62
|
- test.rb
|
65
63
|
homepage: http://github.com/lukaszkorecki/CoffeeTags
|
66
|
-
licenses:
|
64
|
+
licenses:
|
67
65
|
- MIT
|
68
66
|
metadata: {}
|
69
|
-
|
70
67
|
post_install_message:
|
71
68
|
rdoc_options: []
|
72
|
-
|
73
|
-
require_paths:
|
69
|
+
require_paths:
|
74
70
|
- lib
|
75
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
-
requirements:
|
77
|
-
-
|
78
|
-
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ! '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
84
81
|
requirements: []
|
85
|
-
|
86
82
|
rubyforge_project: CoffeeTags
|
87
|
-
rubygems_version: 2.
|
83
|
+
rubygems_version: 2.2.2
|
88
84
|
signing_key:
|
89
85
|
specification_version: 4
|
90
86
|
summary: tags generator for CoffeeScript
|
91
|
-
test_files:
|
87
|
+
test_files:
|
92
88
|
- spec/coffeetags_spec.rb
|
89
|
+
- spec/coveralls-setup.rb
|
93
90
|
- spec/fixtures/append-expected.ctags
|
94
91
|
- spec/fixtures/append.ctags
|
95
92
|
- spec/fixtures/blockcomment.coffee
|