diagnostics 0.0.1

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.
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ pkg/*
2
+ *.gem
3
+ .bundle
4
+ .rvmrc
5
+ .DS_Store
6
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ RSpec::Core::RakeTask.new
6
+
7
+ require 'cucumber/rake/task'
8
+ Cucumber::Rake::Task.new
9
+
10
+ task :default => [:spec, :cucumber]
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "diagnostics/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "diagnostics"
7
+ s.version = Diagnostics::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Justin Ko"]
10
+ s.email = ["jko170@gmail.com"]
11
+ s.homepage = ""
12
+ s.summary = "diagnostics-#{Diagnostics::VERSION}"
13
+ s.description = "A Rails Engine that let's you make diagnostic checks."
14
+
15
+ s.rubyforge_project = "diagnostics"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+
22
+ s.add_development_dependency 'rspec', '2.4.0'
23
+ s.add_development_dependency 'cucumber', '0.8.3'
24
+ s.add_development_dependency 'aruba', '0.2.2'
25
+ end
@@ -0,0 +1,3 @@
1
+ module Diagnostics
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,18 @@
1
+ require 'diagnostics/check'
2
+ require 'diagnostics/data_group'
3
+ require 'diagnostics/methods'
4
+
5
+ module Diagnostics
6
+
7
+ module Data
8
+ autoload :Attribute, 'diagnostics/data/attribute'
9
+ autoload :Elements, 'diagnostics/data/elements'
10
+ autoload :List, 'diagnostics/data/list'
11
+ autoload :Table, 'diagnostics/data/table'
12
+ autoload :Text, 'diagnostics/data/text'
13
+ end
14
+
15
+ @@checks = []
16
+ def self.checks; @@checks end
17
+
18
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: diagnostics
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Justin Ko
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-13 00:00:00 -07: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: 31
30
+ segments:
31
+ - 2
32
+ - 4
33
+ - 0
34
+ version: 2.4.0
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: cucumber
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - "="
44
+ - !ruby/object:Gem::Version
45
+ hash: 57
46
+ segments:
47
+ - 0
48
+ - 8
49
+ - 3
50
+ version: 0.8.3
51
+ type: :development
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: aruba
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - "="
60
+ - !ruby/object:Gem::Version
61
+ hash: 19
62
+ segments:
63
+ - 0
64
+ - 2
65
+ - 2
66
+ version: 0.2.2
67
+ type: :development
68
+ version_requirements: *id003
69
+ description: A Rails Engine that let's you make diagnostic checks.
70
+ email:
71
+ - jko170@gmail.com
72
+ executables: []
73
+
74
+ extensions: []
75
+
76
+ extra_rdoc_files: []
77
+
78
+ files:
79
+ - .gitignore
80
+ - Gemfile
81
+ - Rakefile
82
+ - diagnostics.gemspec
83
+ - lib/diagnostics.rb
84
+ - lib/diagnostics/version.rb
85
+ has_rdoc: true
86
+ homepage: ""
87
+ licenses: []
88
+
89
+ post_install_message:
90
+ rdoc_options: []
91
+
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ hash: 3
100
+ segments:
101
+ - 0
102
+ version: "0"
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ none: false
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ hash: 3
109
+ segments:
110
+ - 0
111
+ version: "0"
112
+ requirements: []
113
+
114
+ rubyforge_project: diagnostics
115
+ rubygems_version: 1.4.2
116
+ signing_key:
117
+ specification_version: 3
118
+ summary: diagnostics-0.0.1
119
+ test_files: []
120
+