fail_fast 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.
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fail_fast
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Alain Ravet
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-20 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rspec
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 13
30
+ segments:
31
+ - 1
32
+ - 2
33
+ - 9
34
+ version: 1.2.9
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: mongo
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 3
46
+ segments:
47
+ - 0
48
+ version: "0"
49
+ type: :development
50
+ version_requirements: *id002
51
+ description: raises an error if the yaml contents of a config file does not pass a test script.
52
+ email: alainravet@gmail.com
53
+ executables: []
54
+
55
+ extensions: []
56
+
57
+ extra_rdoc_files:
58
+ - LICENSE
59
+ - README.markdown
60
+ files:
61
+ - .document
62
+ - .gitignore
63
+ - CHANGELOG.txt
64
+ - LICENSE
65
+ - README.markdown
66
+ - Rakefile
67
+ - VERSION
68
+ - fail_fast.gemspec
69
+ - lib/fail_fast.rb
70
+ - lib/fail_fast/check_active_record_db.rb
71
+ - lib/fail_fast/check_email.rb
72
+ - lib/fail_fast/check_file_system.rb
73
+ - lib/fail_fast/check_mongo_db.rb
74
+ - lib/fail_fast/check_url.rb
75
+ - lib/fail_fast/check_value.rb
76
+ - lib/fail_fast/main.rb
77
+ - lib/fail_fast/report.txt.erb
78
+ - show_all_errors.rb
79
+ - spec/file_is_empty_spec.rb
80
+ - spec/file_is_missing_spec.rb
81
+ - spec/file_system_spec.rb
82
+ - spec/fixtures/empty.yml
83
+ - spec/fixtures/simple.yml
84
+ - spec/has_active_record_db_spec.rb
85
+ - spec/has_email_for_spec.rb
86
+ - spec/has_mongoDB_for_spec.rb
87
+ - spec/has_url_for_spec.rb
88
+ - spec/has_value_for_spec.rb
89
+ - spec/how_to_use_spec.rb
90
+ - spec/spec.opts
91
+ - spec/spec_helper.rb
92
+ has_rdoc: true
93
+ homepage: http://github.com/alainravet/fail_fast
94
+ licenses: []
95
+
96
+ post_install_message:
97
+ rdoc_options:
98
+ - --charset=UTF-8
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ hash: 3
107
+ segments:
108
+ - 0
109
+ version: "0"
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ none: false
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ hash: 3
116
+ segments:
117
+ - 0
118
+ version: "0"
119
+ requirements: []
120
+
121
+ rubyforge_project:
122
+ rubygems_version: 1.3.7
123
+ signing_key:
124
+ specification_version: 3
125
+ summary: raises an error if the yaml contents of a config file does pass a test script.
126
+ test_files:
127
+ - spec/file_is_empty_spec.rb
128
+ - spec/file_is_missing_spec.rb
129
+ - spec/file_system_spec.rb
130
+ - spec/has_active_record_db_spec.rb
131
+ - spec/has_email_for_spec.rb
132
+ - spec/has_mongoDB_for_spec.rb
133
+ - spec/has_url_for_spec.rb
134
+ - spec/has_value_for_spec.rb
135
+ - spec/how_to_use_spec.rb
136
+ - spec/spec_helper.rb