binarylogic-resourcelogic 0.0.11 → 0.0.12
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/VERSION.yml +2 -2
- data/resourcelogic.gemspec +62 -0
- metadata +2 -1
data/VERSION.yml
CHANGED
@@ -0,0 +1,62 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{resourcelogic}
|
5
|
+
s.version = "0.12.0"
|
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: binarylogic-resourcelogic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Johnson of Binary Logic
|
@@ -57,6 +57,7 @@ files:
|
|
57
57
|
- lib/resourcelogic/singleton.rb
|
58
58
|
- lib/resourcelogic/sub_views.rb
|
59
59
|
- lib/resourcelogic/urligence.rb
|
60
|
+
- resourcelogic.gemspec
|
60
61
|
has_rdoc: false
|
61
62
|
homepage: http://github.com/binarylogic/resourcelogic
|
62
63
|
post_install_message:
|