refinerycms-sl-snippets 1.0.0 → 1.0.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/config/routes.rb +2 -2
- data/lib/refinery/snippets/version.rb +1 -1
- data/readme.md +2 -1
- data/refinerycms-snippets.gemspec +2 -2
- metadata +7 -5
data/config/routes.rb
CHANGED
|
@@ -2,7 +2,7 @@ Refinery::Core::Engine.routes.append do
|
|
|
2
2
|
|
|
3
3
|
# Admin routes
|
|
4
4
|
namespace :admin, :path => 'refinery', :as => 'admin' do
|
|
5
|
-
resources :snippets, except
|
|
5
|
+
resources :snippets, :except => :show do
|
|
6
6
|
collection do
|
|
7
7
|
post :update_positions
|
|
8
8
|
end
|
|
@@ -15,4 +15,4 @@ Refinery::Core::Engine.routes.append do
|
|
|
15
15
|
end
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
end
|
|
18
|
+
end
|
data/readme.md
CHANGED
|
@@ -6,14 +6,15 @@ Snippets allows you to relate one or more html blocks or erb templates to any pa
|
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
|
+
* Rails 3.1 (it may work with lower versions but I had no try it).
|
|
9
10
|
* RefineryCMS with 'Pages' engine (refinerycms-pages >= 2.0.0)
|
|
10
11
|
|
|
11
12
|
## TODO
|
|
12
13
|
|
|
13
|
-
### to 1.5
|
|
14
14
|
* improve UI
|
|
15
15
|
* Documentation
|
|
16
16
|
* Tests
|
|
17
|
+
* Update to work properly with Rails 3 asset pipeline.
|
|
17
18
|
|
|
18
19
|
## Install
|
|
19
20
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
|
3
3
|
s.name = %q{refinerycms-sl-snippets}
|
|
4
|
-
s.version = %q{1.0.
|
|
4
|
+
s.version = %q{1.0.1}
|
|
5
5
|
s.description = %q{Ruby on Rails Snippets engine for Refinery CMS}
|
|
6
|
-
s.date = %q{
|
|
6
|
+
s.date = %q{2013-06-13}
|
|
7
7
|
s.summary = %q{Html snippets for Refinery CMS page}
|
|
8
8
|
s.authors = ['Rodrigo García Suárez', 'Simplelogica', 'Marek L.']
|
|
9
9
|
s.email = %q{rodrigo@simplelogica.net}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: refinerycms-sl-snippets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.0.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- "Rodrigo Garc\xC3\xADa Su\xC3\xA1rez"
|
|
@@ -17,7 +17,8 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date:
|
|
20
|
+
date: 2013-06-13 00:00:00 +02:00
|
|
21
|
+
default_executable:
|
|
21
22
|
dependencies:
|
|
22
23
|
- !ruby/object:Gem::Dependency
|
|
23
24
|
name: refinerycms-pages
|
|
@@ -96,6 +97,7 @@ files:
|
|
|
96
97
|
- features/support/paths.rb
|
|
97
98
|
- features/step_definitions/snippet_steps.rb
|
|
98
99
|
- features/manage_snippets.feature
|
|
100
|
+
has_rdoc: true
|
|
99
101
|
homepage: https://github.com/simplelogica/refinerycms-snippets
|
|
100
102
|
licenses: []
|
|
101
103
|
|
|
@@ -125,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
127
|
requirements: []
|
|
126
128
|
|
|
127
129
|
rubyforge_project:
|
|
128
|
-
rubygems_version: 1.
|
|
130
|
+
rubygems_version: 1.5.2
|
|
129
131
|
signing_key:
|
|
130
132
|
specification_version: 3
|
|
131
133
|
summary: Html snippets for Refinery CMS page
|