abstract_analyzer 0.0.0 → 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.
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ lib/middlewares/*.log
4
4
  lib/middlewares/*.db
5
5
  *.db
6
6
  *.log
7
+ pkg
data/VERSION.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
2
  :patch: 0
3
3
  :major: 0
4
- :minor: 0
4
+ :minor: 1
5
+ :build:
@@ -0,0 +1,68 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{abstract_analyzer}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Mark McSpadden"]
12
+ s.date = %q{2009-10-28}
13
+ s.email = %q{markmcspadden@gmail.com}
14
+ s.extra_rdoc_files = [
15
+ "README.rdoc"
16
+ ]
17
+ s.files = [
18
+ ".gitignore",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "VERSION.yml",
22
+ "abstract_analyzer.gemspec",
23
+ "lib/LICENSE",
24
+ "lib/abstract_analyzer.rb",
25
+ "lib/dash_analyzer.rb",
26
+ "lib/dash_analyzer/base.rb",
27
+ "lib/dash_analyzer/dash_extensions.rb",
28
+ "lib/dash_analyzer/view.rb",
29
+ "lib/middleware.rb",
30
+ "lib/middleware/rails.rb",
31
+ "lib/middleware/rails/dash.rb",
32
+ "lib/view.rb",
33
+ "test/lib/dash_analyzer/test_base.rb",
34
+ "test/lib/dash_analyzer/test_dash_extensions.rb",
35
+ "test/lib/dash_analyzer/test_view.rb",
36
+ "test/lib/middleware/rails.rb",
37
+ "test/lib/middleware/rails/dash.rb",
38
+ "test/lib/test_dash_analyzer.rb",
39
+ "test/lib/test_middleware.rb",
40
+ "test/test_helper.rb"
41
+ ]
42
+ s.homepage = %q{http://github.com/garlandgroup/abstract-analyzer}
43
+ s.rdoc_options = ["--charset=UTF-8"]
44
+ s.require_paths = ["lib"]
45
+ s.rubygems_version = %q{1.3.5}
46
+ s.summary = %q{A rack based app analyzer}
47
+ s.test_files = [
48
+ "test/lib/dash_analyzer/test_base.rb",
49
+ "test/lib/dash_analyzer/test_dash_extensions.rb",
50
+ "test/lib/dash_analyzer/test_view.rb",
51
+ "test/lib/middleware/rails/dash.rb",
52
+ "test/lib/middleware/rails.rb",
53
+ "test/lib/test_dash_analyzer.rb",
54
+ "test/lib/test_middleware.rb",
55
+ "test/test_helper.rb"
56
+ ]
57
+
58
+ if s.respond_to? :specification_version then
59
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
+ s.specification_version = 3
61
+
62
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
63
+ else
64
+ end
65
+ else
66
+ end
67
+ end
68
+
data/lib/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2009 Mark McSpadden
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abstract_analyzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark McSpadden
@@ -26,6 +26,8 @@ files:
26
26
  - README.rdoc
27
27
  - Rakefile
28
28
  - VERSION.yml
29
+ - abstract_analyzer.gemspec
30
+ - lib/LICENSE
29
31
  - lib/abstract_analyzer.rb
30
32
  - lib/dash_analyzer.rb
31
33
  - lib/dash_analyzer/base.rb