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 CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA512:
3
- metadata.gz: 91f1d33e4b9f60700b8ad9f8c08623dc40c4430261779c8f96af4727ff8c9c2f7b61747f8c2e6554c47d14cdd8a4dec31cd3e7a74484ea9c835386fcb056902f
4
- data.tar.gz: 2ca1695728468889e80d42e6af100d5be7529ca4d35c7427e908861f5c5aafdcffbe3c0a342a783031b205a2da78e745f903320c9a5284f01b408c537218c01f
5
- SHA1:
6
- metadata.gz: 09f5e25db80c8a227e51a6c0e17014419c7c5e73
7
- data.tar.gz: 36379f4c63b53f19c6864533135ab9b4e7bb1950
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
@@ -6,3 +6,4 @@ vendor
6
6
  testout/
7
7
  test.out
8
8
  tags
9
+ coverage/
data/.travis.yml CHANGED
@@ -1,5 +1,8 @@
1
- nguage: ruby
1
+ language: ruby
2
2
  rvm:
3
- - 1.8.7
4
- - 1.9.2
3
+ # 1.8.x and 1.9 < 1.9.3 are not supported anymore buy Ruby core
4
+ # - 1.8.7
5
+ # - 1.9.2
5
6
  - 1.9.3
7
+ - 2.0.0
8
+ - 2.1.0
data/Gemfile CHANGED
@@ -9,6 +9,8 @@ group :development do
9
9
  gem 'guard'
10
10
  gem 'growl'
11
11
  gem 'guard-rspec'
12
+ gem 'coveralls', :require => false
13
+ gem 'simplecov', :require => false
12
14
 
13
15
  gem 'pry'
14
16
  # osx
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # CoffeeTags
2
2
 
3
- ### Latest version: `0.2.1`
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](https://secure.travis-ci.org/lukaszkorecki/CoffeeTags.png?branch=master)](http://travis-ci.org/lukaszkorecki/CoffeeTags)
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 (1.8.7, 1.9.2 or 1.9.3)
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:CoffeeAutoDisabled=<0 or 1> " Disables autotaging on save (Default: 0 [false])
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
- ## Sublime Text
80
+ # Sublime Text
77
81
 
78
82
  *TODO* - I don't use ST myself, but PRs with HOWTO are welcomed
79
83
 
80
- ## Config types
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 adding `--include-vars` to command line arguments
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
  [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/lukaszkorecki/coffeetags/trend.png)](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
@@ -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
- "lineno:#{entry[:line]}",
51
+ "line:#{entry[:line]}",
50
52
  namespace,
51
- @types[entry[:kind]]
53
+ "kind:"+Formatter::kinds()[entry[:kind]],
54
+ "language:coffee"
52
55
  ].join("\t")
53
56
  end
54
57
 
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module Coffeetags
3
- VERSION = "0.2.1"
3
+ VERSION = "0.3.0"
4
4
  end
data/lib/CoffeeTags.rb CHANGED
@@ -66,9 +66,14 @@ module Coffeetags
66
66
  exit
67
67
  end
68
68
 
69
- opts.on('-h','--help','HALP') do
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]
@@ -54,7 +54,7 @@ let g:tagbar_type_coffee = {
54
54
 
55
55
  function! CoffeeAutoTag()
56
56
  if g:CoffeeAutoTagDisabled
57
- finish
57
+ return
58
58
  endif
59
59
 
60
60
  let cmd = 'coffeetags --append -f ' . s:CoffeeAutoTagFile . ' '
@@ -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
- expect {
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' })
@@ -0,0 +1,12 @@
1
+ require 'simplecov'
2
+ require 'coveralls'
3
+
4
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
5
+ SimpleCov::Formatter::HTMLFormatter,
6
+ Coveralls::SimpleCov::Formatter
7
+ ]
8
+
9
+ SimpleCov.start do
10
+ add_filter 'spec/'
11
+ end
12
+
@@ -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.2.1 //
7
- @filter spec/fixtures/test.coffee /^ @filter = ->$/;" f lineno:14 object:Wat.ho type:function
8
- _loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
9
- baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f lineno:15 object:window type:function
10
- beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
11
- bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
12
- bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f lineno:46 object:Test type:function
13
- bump spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
14
- bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
15
- bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
16
- constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
17
- echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f lineno:7 object:window type:function
18
- echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f lineno:23 object:window type:function
19
- foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f lineno:26 object:window type:function
20
- foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f lineno:10 object:window type:function
21
- handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
22
- ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
23
- onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f lineno:24 object:Campfire.handlers.resp type:function
24
- onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f lineno:16 object:Campfire.handlers.resp type:function
25
- recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f lineno:40 object:Campfire type:function
26
- roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f lineno:34 object:Campfire type:function
27
- rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f lineno:29 object:Campfire type:function
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
@@ -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.2.1 //
7
- !_TAG_PROGRAM_VERSION 0.2.1 //
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 lineno:14 object:Wat.ho type:function
10
- _loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
11
- baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f lineno:15 object:window type:function
12
- beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
13
- bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
14
- bump spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
15
- bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
16
- bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
17
- constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
18
- constructor2 spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
19
- echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f lineno:7 object:window type:function
20
- echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f lineno:23 object:window type:function
21
- foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f lineno:26 object:window type:function
22
- foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f lineno:10 object:window type:function
23
- handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
24
- ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
25
- onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f lineno:24 object:Campfire.handlers.resp type:function
26
- onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f lineno:16 object:Campfire.handlers.resp type:function
27
- recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f lineno:40 object:Campfire type:function
28
- roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f lineno:34 object:Campfire type:function
29
- rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f lineno:29 object:Campfire type:function
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.2.1 //
7
- baz spec/fixtures/blockcomment.coffee /^baz : (x, y) ->$/;" f lineno:15 object:window type:function
8
- echo2 spec/fixtures/blockcomment.coffee /^echo2 :-> console.log 'echo'$/;" f lineno:7 object:window type:function
9
- echo3 spec/fixtures/blockcomment.coffee /^echo3 :-> console.log 'echo'$/;" f lineno:23 object:window type:function
10
- foo spec/fixtures/blockcomment.coffee /^foo : (x) -> console.log 'bar #{x}'$/;" f lineno:26 object:window type:function
11
- foo2 spec/fixtures/blockcomment.coffee /^foo2 : (x) -> console.log 'bar #{x}'$/;" f lineno:10 object:window type:function
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.2.1 //
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.2.1 //
7
- !_TAG_PROGRAM_VERSION 0.2.1 //
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 lineno:14 object:Wat.ho type:function
10
- _loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
11
- beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
12
- bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
13
- bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
14
- bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
15
- bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
16
- constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
17
- constructor2 ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
18
- handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
19
- ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
20
- onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f lineno:24 object:Campfire.handlers.resp type:function
21
- onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f lineno:16 object:Campfire.handlers.resp type:function
22
- recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f lineno:40 object:Campfire type:function
23
- roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f lineno:34 object:Campfire type:function
24
- rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f lineno:29 object:Campfire type:function
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.2.1 //
7
- @filter ../spec/fixtures/test.coffee /^ @filter = ->$/;" f lineno:14 object:Wat.ho type:function
8
- _loop ../spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
9
- beam_magnum ../spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
10
- bound_func ../spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
11
- bump ../spec/fixtures/campfire.coffee /^ bump : ->$/;" f lineno:46 object:Test type:function
12
- bump ../spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
13
- bump ../spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
14
- bump_up ../spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
15
- constructor ../spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
16
- handlers ../spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
17
- ho ../spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
18
- onFailure ../spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f lineno:24 object:Campfire.handlers.resp type:function
19
- onSuccess ../spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f lineno:16 object:Campfire.handlers.resp type:function
20
- recent ../spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f lineno:40 object:Campfire type:function
21
- roomInfo ../spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f lineno:34 object:Campfire type:function
22
- rooms ../spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f lineno:29 object:Campfire type:function
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.2.1 //
7
- @filter spec/fixtures/test.coffee /^ @filter = ->$/;" f lineno:14 object:Wat.ho type:function
8
- _loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
9
- beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
10
- bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
11
- bump spec/fixtures/campfire.coffee /^ bump : ->$/;" f lineno:46 object:Test type:function
12
- bump spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
13
- bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
14
- bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
15
- constructor spec/fixtures/campfire.coffee /^ constructor: (api_key, host) ->$/;" f lineno:8 object:Campfire type:function
16
- handlers spec/fixtures/campfire.coffee /^ handlers: (callbacks) ->$/;" f lineno:14 object:Campfire type:function
17
- ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
18
- onFailure spec/fixtures/campfire.coffee /^ onFailure: (response) ->$/;" f lineno:24 object:Campfire.handlers.resp type:function
19
- onSuccess spec/fixtures/campfire.coffee /^ onSuccess : (response) ->$/;" f lineno:16 object:Campfire.handlers.resp type:function
20
- recent spec/fixtures/campfire.coffee /^ recent: (id, since, callbacks) ->$/;" f lineno:40 object:Campfire type:function
21
- roomInfo spec/fixtures/campfire.coffee /^ roomInfo: (id, callbacks) ->$/;" f lineno:34 object:Campfire type:function
22
- rooms spec/fixtures/campfire.coffee /^ rooms: (callbacks) ->$/;" f lineno:29 object:Campfire type:function
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.2.1 //
7
- @filter spec/fixtures/test.coffee /^ @filter = ->$/;" f lineno:14 object:Wat.ho type:function
8
- _loop spec/fixtures/test.coffee /^_loop = (x) ->$/;" f lineno:19 object:window type:function
9
- beam_magnum spec/fixtures/test.coffee /^beam_magnum : -> deployed(true)$/;" f lineno:44 object:window type:function
10
- bound_func spec/fixtures/test.coffee /^bound_func = (ok) => wat(ok)$/;" f lineno:41 object:window type:function
11
- bump spec/fixtures/test.coffee /^ bump : ->$/;" f lineno:10 object:Wat.ho.@lolWat type:function
12
- bump spec/fixtures/test.coffee /^bump = (wat) ->$/;" f lineno:1 object:window type:function
13
- bump_up spec/fixtures/test.coffee /^ bump_up : ->$/;" f lineno:12 object:Wat.ho.@lolWat type:function
14
- ho spec/fixtures/test.coffee /^ ho : (x) ->$/;" f lineno:5 object:Wat type:function
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
@@ -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', 'lineno:8', 'object:Campfire', 'type:function'
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', 'lineno:46', 'object:Test', 'type:function'
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
@@ -1,2 +1,14 @@
1
+ require 'coveralls-setup'
1
2
  require 'yaml'
2
3
  require './lib/CoffeeTags'
4
+
5
+ def capture_stdout(&block)
6
+ original_stdout = $stdout
7
+ $stdout = fake = StringIO.new
8
+ begin
9
+ yield
10
+ ensure
11
+ $stdout = original_stdout
12
+ end
13
+ fake.string
14
+ end
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.2.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
5
  platform: ruby
6
- authors:
7
- - "\xC5\x81ukasz Korecki"
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
- files:
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
- - &id001
78
- - ">="
79
- - !ruby/object:Gem::Version
80
- version: "0"
81
- required_rubygems_version: !ruby/object:Gem::Requirement
82
- requirements:
83
- - *id001
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.0.14
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