mactag 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +68 -0
- data/VERSION +1 -0
- data/features/app.feature +35 -0
- data/features/gem.feature +59 -0
- data/features/plugin.feature +41 -0
- data/features/rails/actionmailer/lib/action_mailer/base.rb +9 -0
- data/features/rails/actionpack/lib/action_controller/caching/actions.rb +11 -0
- data/features/rails/actionpack/lib/action_view/action_view/helpers/form_tag_helper.rb +9 -0
- data/features/rails/activerecord/lib/active_record/associations.rb +9 -0
- data/features/rails/activeresource/lib/active_resource/connection.rb +7 -0
- data/features/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +5 -0
- data/features/rails_gem.feature +69 -0
- data/features/rails_vendor.feature +46 -0
- data/features/step_definitions/app_steps.rb +11 -0
- data/features/step_definitions/gem_steps.rb +40 -0
- data/features/step_definitions/mactab_steps.rb +53 -0
- data/features/step_definitions/plugin_steps.rb +34 -0
- data/features/step_definitions/rails_steps.rb +62 -0
- data/features/support/core_ext.rb +5 -0
- data/features/support/env.rb +10 -0
- data/features/support/rails_app.rb +74 -0
- data/features/support/tags_file.rb +21 -0
- data/generators/mactag/mactag_generator.rb +10 -0
- data/generators/mactag/templates/mactag.rb +11 -0
- data/lib/mactag.rb +6 -0
- data/lib/mactag/config.rb +20 -0
- data/lib/mactag/table.rb +45 -0
- data/lib/mactag/tag.rb +8 -0
- data/lib/mactag/tag/app.rb +30 -0
- data/lib/mactag/tag/gem.rb +46 -0
- data/lib/mactag/tag/parser.rb +33 -0
- data/lib/mactag/tag/plugin.rb +32 -0
- data/lib/mactag/tag/rails.rb +138 -0
- data/lib/mactag/tasks.rb +10 -0
- data/tasks/mactag_tasks.rake +1 -0
- data/test/mactag/config_test.rb +10 -0
- data/test/mactag/tag/app_test.rb +16 -0
- data/test/mactag/tag/gem_test.rb +42 -0
- data/test/mactag/tag/plugin_test.rb +40 -0
- data/test/mactag/tag/rails_test.rb +182 -0
- data/test/mactag_test.rb +4 -0
- metadata +94 -0
data/test/mactag_test.rb
ADDED
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mactag
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Johan Andersson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-12-13 00:00:00 +00:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Mactag is DSL in ruby for creating a Ctags-file for Rails projects
|
17
|
+
email: johan.rejeep@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.markdown
|
24
|
+
files:
|
25
|
+
- README.markdown
|
26
|
+
- VERSION
|
27
|
+
- generators/mactag/mactag_generator.rb
|
28
|
+
- generators/mactag/templates/mactag.rb
|
29
|
+
- lib/mactag.rb
|
30
|
+
- lib/mactag/config.rb
|
31
|
+
- lib/mactag/table.rb
|
32
|
+
- lib/mactag/tag.rb
|
33
|
+
- lib/mactag/tag/app.rb
|
34
|
+
- lib/mactag/tag/gem.rb
|
35
|
+
- lib/mactag/tag/parser.rb
|
36
|
+
- lib/mactag/tag/plugin.rb
|
37
|
+
- lib/mactag/tag/rails.rb
|
38
|
+
- lib/mactag/tasks.rb
|
39
|
+
- tasks/mactag_tasks.rake
|
40
|
+
has_rdoc: true
|
41
|
+
homepage: http://github.com/rejeep/mactag
|
42
|
+
licenses: []
|
43
|
+
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options:
|
46
|
+
- --charset=UTF-8
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
version:
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 1.3.5
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Ctags for Rails
|
68
|
+
test_files:
|
69
|
+
- features/app.feature
|
70
|
+
- features/plugin.feature
|
71
|
+
- features/gem.feature
|
72
|
+
- features/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
|
73
|
+
- features/rails/actionmailer/lib/action_mailer/base.rb
|
74
|
+
- features/rails/activerecord/lib/active_record/associations.rb
|
75
|
+
- features/rails/actionpack/lib/action_controller/caching/actions.rb
|
76
|
+
- features/rails/actionpack/lib/action_view/action_view/helpers/form_tag_helper.rb
|
77
|
+
- features/rails/activeresource/lib/active_resource/connection.rb
|
78
|
+
- features/step_definitions/plugin_steps.rb
|
79
|
+
- features/step_definitions/rails_steps.rb
|
80
|
+
- features/step_definitions/gem_steps.rb
|
81
|
+
- features/step_definitions/app_steps.rb
|
82
|
+
- features/step_definitions/mactab_steps.rb
|
83
|
+
- features/support/core_ext.rb
|
84
|
+
- features/support/tags_file.rb
|
85
|
+
- features/support/env.rb
|
86
|
+
- features/support/rails_app.rb
|
87
|
+
- features/rails_vendor.feature
|
88
|
+
- features/rails_gem.feature
|
89
|
+
- test/mactag_test.rb
|
90
|
+
- test/mactag/tag/app_test.rb
|
91
|
+
- test/mactag/tag/plugin_test.rb
|
92
|
+
- test/mactag/tag/gem_test.rb
|
93
|
+
- test/mactag/tag/rails_test.rb
|
94
|
+
- test/mactag/config_test.rb
|