surrounded-rails 0.3.0 → 0.3.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.
- checksums.yaml +4 -4
- data/lib/surrounded-rails.rb +1 -0
- data/lib/surrounded_rails/railtie.rb +4 -0
- data/lib/surrounded_rails/version.rb +1 -1
- data/surrounded-rails.gemspec +3 -3
- metadata +10 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb88354f8df07b52168c1a6ea632697ea90347a1
|
|
4
|
+
data.tar.gz: d6ee0e42c6ff149d1b2d527a5d743da8c920e932
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 303d4de2753cb4165dc085085281177b3f99be4582d39d6fce4a4ed2904c40a9da61ad13a628c1c197e4b9ea881f30e0ff9bdabd6b24574113b4db24d0c8e48e
|
|
7
|
+
data.tar.gz: b389b8fccf10916ad6295290b90ff2b38747f49466871175e4498314408dc8ed0414f199bce7345f36778b4fe2e0e970a08d02fd3e8e16b67837f564a2981081
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'surrounded_rails/rails'
|
|
@@ -18,5 +18,9 @@ module SurroundedRails
|
|
|
18
18
|
initializer 'surrounded_rails.action_controller' do |app|
|
|
19
19
|
ActionController::Base.send(:include, Surrounded)
|
|
20
20
|
end
|
|
21
|
+
|
|
22
|
+
initializer 'surrounded_rails.action_view' do |app|
|
|
23
|
+
ActionView::Base.send(:include, Surrounded)
|
|
24
|
+
end
|
|
21
25
|
end
|
|
22
26
|
end
|
data/surrounded-rails.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = SurroundedRails::VERSION
|
|
9
9
|
spec.authors = ["'Jim Gay'"]
|
|
10
10
|
spec.email = ["jim@saturnflyer.com"]
|
|
11
|
-
spec.description = %q{This sets up your ActiveRecord/Mongoid
|
|
12
|
-
spec.summary = %q{This sets up your ActiveRecord/Mongoid
|
|
11
|
+
spec.description = %q{This sets up your ActiveRecord/Mongoid, ActionController, ActionView objects to use Surrounded}
|
|
12
|
+
spec.summary = %q{This sets up your ActiveRecord/Mongoid, ActionController, ActionView objects to use Surrounded}
|
|
13
13
|
spec.homepage = ""
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
-
spec.add_dependency "surrounded", "~> 0.9.
|
|
21
|
+
spec.add_dependency "surrounded", "~> 0.9.3"
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "rake"
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: surrounded-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "'Jim Gay'"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: surrounded
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.9.
|
|
19
|
+
version: 0.9.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.9.
|
|
26
|
+
version: 0.9.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -38,8 +38,8 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description: This sets up your ActiveRecord/Mongoid
|
|
42
|
-
use Surrounded
|
|
41
|
+
description: This sets up your ActiveRecord/Mongoid, ActionController, ActionView
|
|
42
|
+
objects to use Surrounded
|
|
43
43
|
email:
|
|
44
44
|
- jim@saturnflyer.com
|
|
45
45
|
executables: []
|
|
@@ -51,6 +51,7 @@ files:
|
|
|
51
51
|
- LICENSE.txt
|
|
52
52
|
- README.md
|
|
53
53
|
- Rakefile
|
|
54
|
+
- lib/surrounded-rails.rb
|
|
54
55
|
- lib/surrounded_rails/rails.rb
|
|
55
56
|
- lib/surrounded_rails/railtie.rb
|
|
56
57
|
- lib/surrounded_rails/version.rb
|
|
@@ -75,9 +76,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
76
|
version: '0'
|
|
76
77
|
requirements: []
|
|
77
78
|
rubyforge_project:
|
|
78
|
-
rubygems_version: 2.
|
|
79
|
+
rubygems_version: 2.4.5
|
|
79
80
|
signing_key:
|
|
80
81
|
specification_version: 4
|
|
81
|
-
summary: This sets up your ActiveRecord/Mongoid
|
|
82
|
-
Surrounded
|
|
82
|
+
summary: This sets up your ActiveRecord/Mongoid, ActionController, ActionView objects
|
|
83
|
+
to use Surrounded
|
|
83
84
|
test_files: []
|