cuporter 0.1.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.
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+ require 'rspec'
3
+ require 'cuporter'
4
+ Dir["spec/cuporter/support/**/*.rb"].each { |lib| require lib }
5
+
6
+ RSpec.configure do |config|
7
+ config.include(Spec::Functional::Cli)
8
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cuporter
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Tim Camper
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-09-03 00:00:00 -05:00
18
+ default_executable: cuporter
19
+ dependencies: []
20
+
21
+ description: Scrapes Cucumber *.feature files to build report on tag usage
22
+ email: twcamper@thoughtworks.com
23
+ executables:
24
+ - cuporter
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - README.textile
29
+ - LICENSE
30
+ files:
31
+ - LICENSE
32
+ - README.textile
33
+ - Rakefile
34
+ - lib/cuporter/formatters/csv.rb
35
+ - lib/cuporter/formatters/text.rb
36
+ - lib/cuporter/formatters/html.rb
37
+ - lib/cuporter/formatters/writer.rb
38
+ - lib/cuporter/formatters/text_methods.rb
39
+ - lib/cuporter/cli/options.rb
40
+ - lib/cuporter/tag_list_node.rb
41
+ - lib/cuporter/extensions/string.rb
42
+ - lib/cuporter/feature_parser.rb
43
+ - lib/cuporter/node.rb
44
+ - lib/cuporter/tag_report.rb
45
+ - lib/cuporter.rb
46
+ - spec/cuporter/node_spec.rb
47
+ - spec/cuporter/feature_parser_spec.rb
48
+ - spec/cuporter/support/functional/cli.rb
49
+ - spec/cuporter/functional/single_feature_spec.rb
50
+ - spec/cuporter/tag_list_node_spec.rb
51
+ - spec/spec_helper.rb
52
+ - features/pretty_print.feature
53
+ - features/support/env.rb
54
+ - features/step_definitions/cuporter_steps.rb
55
+ - bin/cuporter
56
+ has_rdoc: true
57
+ homepage: http://github.com/twcamper/cuporter
58
+ licenses: []
59
+
60
+ post_install_message:
61
+ rdoc_options:
62
+ - --all
63
+ - --quiet
64
+ - --line-numbers
65
+ - --inline-source
66
+ - --main
67
+ - README.textile
68
+ - --title
69
+ - "Cuporter: cucumber tag reporting"
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ segments:
77
+ - 1
78
+ - 8
79
+ - 7
80
+ version: 1.8.7
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ segments:
86
+ - 0
87
+ version: "0"
88
+ requirements: []
89
+
90
+ rubyforge_project: cuporter
91
+ rubygems_version: 1.3.6
92
+ signing_key:
93
+ specification_version: 3
94
+ summary: Scrapes Cucumber *.feature files to build report on tag usage
95
+ test_files: []
96
+