resourcelogic 0.0.11
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 +7 -0
- data/CHANGELOG.rdoc +3 -0
- data/LICENSE +20 -0
- data/README.rdoc +167 -0
- data/Rakefile +49 -0
- data/VERSION.yml +4 -0
- data/init.rb +1 -0
- data/lib/resourcelogic.rb +16 -0
- data/lib/resourcelogic/accessors.rb +53 -0
- data/lib/resourcelogic/action_options.rb +40 -0
- data/lib/resourcelogic/actions.rb +174 -0
- data/lib/resourcelogic/aliases.rb +134 -0
- data/lib/resourcelogic/base.rb +130 -0
- data/lib/resourcelogic/child.rb +55 -0
- data/lib/resourcelogic/context.rb +51 -0
- data/lib/resourcelogic/context_options.rb +5 -0
- data/lib/resourcelogic/failable_action_options.rb +25 -0
- data/lib/resourcelogic/parent.rb +142 -0
- data/lib/resourcelogic/response_collector.rb +32 -0
- data/lib/resourcelogic/scope.rb +36 -0
- data/lib/resourcelogic/self.rb +148 -0
- data/lib/resourcelogic/sibling.rb +20 -0
- data/lib/resourcelogic/singleton.rb +55 -0
- data/lib/resourcelogic/sub_views.rb +98 -0
- data/lib/resourcelogic/urligence.rb +128 -0
- data/resourcelogic.gemspec +62 -0
- metadata +90 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{resourcelogic}
|
5
|
+
s.version = "0.0.11"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Ben Johnson of Binary Logic"]
|
9
|
+
s.date = %q{2009-06-28}
|
10
|
+
s.email = %q{bjohnson@binarylogic.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README.rdoc"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".gitignore",
|
17
|
+
"CHANGELOG.rdoc",
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION.yml",
|
22
|
+
"init.rb",
|
23
|
+
"lib/resourcelogic.rb",
|
24
|
+
"lib/resourcelogic/accessors.rb",
|
25
|
+
"lib/resourcelogic/action_options.rb",
|
26
|
+
"lib/resourcelogic/actions.rb",
|
27
|
+
"lib/resourcelogic/aliases.rb",
|
28
|
+
"lib/resourcelogic/base.rb",
|
29
|
+
"lib/resourcelogic/child.rb",
|
30
|
+
"lib/resourcelogic/context.rb",
|
31
|
+
"lib/resourcelogic/context_options.rb",
|
32
|
+
"lib/resourcelogic/failable_action_options.rb",
|
33
|
+
"lib/resourcelogic/parent.rb",
|
34
|
+
"lib/resourcelogic/response_collector.rb",
|
35
|
+
"lib/resourcelogic/scope.rb",
|
36
|
+
"lib/resourcelogic/self.rb",
|
37
|
+
"lib/resourcelogic/sibling.rb",
|
38
|
+
"lib/resourcelogic/singleton.rb",
|
39
|
+
"lib/resourcelogic/sub_views.rb",
|
40
|
+
"lib/resourcelogic/urligence.rb",
|
41
|
+
"resourcelogic.gemspec"
|
42
|
+
]
|
43
|
+
s.homepage = %q{http://github.com/binarylogic/resourcelogic}
|
44
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
45
|
+
s.require_paths = ["lib"]
|
46
|
+
s.rubyforge_project = %q{resourcelogic}
|
47
|
+
s.rubygems_version = %q{1.3.4}
|
48
|
+
s.summary = %q{Removes the need to namespace controllers by adding context and relative url functions among other things.}
|
49
|
+
|
50
|
+
if s.respond_to? :specification_version then
|
51
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
52
|
+
s.specification_version = 3
|
53
|
+
|
54
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
55
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
56
|
+
else
|
57
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
58
|
+
end
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
61
|
+
end
|
62
|
+
end
|
metadata
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: resourcelogic
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.11
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Johnson of Binary Logic
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-06-28 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: activesupport
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description:
|
26
|
+
email: bjohnson@binarylogic.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .gitignore
|
36
|
+
- CHANGELOG.rdoc
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION.yml
|
41
|
+
- init.rb
|
42
|
+
- lib/resourcelogic.rb
|
43
|
+
- lib/resourcelogic/accessors.rb
|
44
|
+
- lib/resourcelogic/action_options.rb
|
45
|
+
- lib/resourcelogic/actions.rb
|
46
|
+
- lib/resourcelogic/aliases.rb
|
47
|
+
- lib/resourcelogic/base.rb
|
48
|
+
- lib/resourcelogic/child.rb
|
49
|
+
- lib/resourcelogic/context.rb
|
50
|
+
- lib/resourcelogic/context_options.rb
|
51
|
+
- lib/resourcelogic/failable_action_options.rb
|
52
|
+
- lib/resourcelogic/parent.rb
|
53
|
+
- lib/resourcelogic/response_collector.rb
|
54
|
+
- lib/resourcelogic/scope.rb
|
55
|
+
- lib/resourcelogic/self.rb
|
56
|
+
- lib/resourcelogic/sibling.rb
|
57
|
+
- lib/resourcelogic/singleton.rb
|
58
|
+
- lib/resourcelogic/sub_views.rb
|
59
|
+
- lib/resourcelogic/urligence.rb
|
60
|
+
- resourcelogic.gemspec
|
61
|
+
has_rdoc: true
|
62
|
+
homepage: http://github.com/binarylogic/resourcelogic
|
63
|
+
licenses: []
|
64
|
+
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options:
|
67
|
+
- --charset=UTF-8
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: "0"
|
75
|
+
version:
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: "0"
|
81
|
+
version:
|
82
|
+
requirements: []
|
83
|
+
|
84
|
+
rubyforge_project: resourcelogic
|
85
|
+
rubygems_version: 1.3.4
|
86
|
+
signing_key:
|
87
|
+
specification_version: 3
|
88
|
+
summary: Removes the need to namespace controllers by adding context and relative url functions among other things.
|
89
|
+
test_files: []
|
90
|
+
|