mixable_engines 0.1.0 → 0.1.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/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/mixable_engines.gemspec +67 -0
- metadata +6 -5
data/LICENSE.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
17
|
gem.name = "mixable_engines"
|
|
18
|
-
gem.homepage = "http://github.com/
|
|
18
|
+
gem.homepage = "http://github.com/asee/mixable_engines"
|
|
19
19
|
gem.license = "MIT"
|
|
20
20
|
gem.summary = %Q{Makes engines "mixable" - classes in the app directory will be mixed in with the main application.}
|
|
21
21
|
gem.description = %Q{In the old Engines plugin (used before the built-in engines arrived in rails 2.3), controller and helper classes were mixed together. That is, if an engine had a FooController, and your application also had a FooController, you could use the actions in both controllers. In the built-in Engines functionality in Rails 3, this does not occur. Your application's FooController replaces the engine controller entirely.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{mixable_engines}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Tim Morton"]
|
|
12
|
+
s.date = %q{2011-09-02}
|
|
13
|
+
s.description = %q{In the old Engines plugin (used before the built-in engines arrived in rails 2.3), controller and helper classes were mixed together. That is, if an engine had a FooController, and your application also had a FooController, you could use the actions in both controllers. In the built-in Engines functionality in Rails 3, this does not occur. Your application's FooController replaces the engine controller entirely.
|
|
14
|
+
|
|
15
|
+
This gem restores the old functionality, allowing you to easily override parts of an engine in your application. }
|
|
16
|
+
s.email = %q{tim@timothymorton.com}
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE.txt",
|
|
19
|
+
"README.rdoc"
|
|
20
|
+
]
|
|
21
|
+
s.files = [
|
|
22
|
+
".document",
|
|
23
|
+
"Gemfile",
|
|
24
|
+
"LICENSE.txt",
|
|
25
|
+
"README.rdoc",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"lib/mixable_engines.rb",
|
|
29
|
+
"mixable_engines.gemspec",
|
|
30
|
+
"test/helper.rb",
|
|
31
|
+
"test/test_mixable_engines.rb"
|
|
32
|
+
]
|
|
33
|
+
s.homepage = %q{http://github.com/asee/mixable_engines}
|
|
34
|
+
s.licenses = ["MIT"]
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubygems_version = %q{1.3.7}
|
|
37
|
+
s.summary = %q{Makes engines "mixable" - classes in the app directory will be mixed in with the main application.}
|
|
38
|
+
|
|
39
|
+
if s.respond_to? :specification_version then
|
|
40
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
41
|
+
s.specification_version = 3
|
|
42
|
+
|
|
43
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
44
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
|
|
45
|
+
s.add_runtime_dependency(%q<i18n>, [">= 0"])
|
|
46
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
|
47
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
48
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
49
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.0"])
|
|
52
|
+
s.add_dependency(%q<i18n>, [">= 0"])
|
|
53
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
54
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
55
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
56
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
57
|
+
end
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.0"])
|
|
60
|
+
s.add_dependency(%q<i18n>, [">= 0"])
|
|
61
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
62
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
63
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
64
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mixable_engines
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tim Morton
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-09-
|
|
18
|
+
date: 2011-09-02 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -125,10 +125,11 @@ files:
|
|
|
125
125
|
- Rakefile
|
|
126
126
|
- VERSION
|
|
127
127
|
- lib/mixable_engines.rb
|
|
128
|
+
- mixable_engines.gemspec
|
|
128
129
|
- test/helper.rb
|
|
129
130
|
- test/test_mixable_engines.rb
|
|
130
131
|
has_rdoc: true
|
|
131
|
-
homepage: http://github.com/
|
|
132
|
+
homepage: http://github.com/asee/mixable_engines
|
|
132
133
|
licenses:
|
|
133
134
|
- MIT
|
|
134
135
|
post_install_message:
|