radiant-shop-extension 0.90.2 → 0.90.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.90.2
1
+ 0.90.4
@@ -1,3 +1,7 @@
1
1
  - f.fields_for :page do |pf|
2
- = pf.hidden_field :parent_id
2
+ %tr
3
+ %th.label
4
+ = pf.label :parent
5
+ %td.field
6
+ = pf.collection_select :parent_id, Page.all, :id, :title
3
7
  = pf.hidden_field :class_name, :value => 'ShopCategoryPage'
@@ -7,7 +7,7 @@ namespace :radiant do
7
7
  require 'radiant/extension_migrator'
8
8
 
9
9
  # Migrate required extensions first
10
- ['Settings','Images','Forms','Scoped','Drag'].each do |name|
10
+ ['Settings','Images','Forms','Users','DragOrder'].each do |name|
11
11
  extension = "#{name}Extension".pluralize.classify.constantize
12
12
  extension.migrator.migrate
13
13
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{radiant-shop-extension}
8
- s.version = "0.90.2"
8
+ s.version = "0.90.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dirk Kelly", "John Barker", "Darcy Laycock"]
data/shop_extension.rb CHANGED
@@ -3,7 +3,7 @@ class ShopExtension < Radiant::Extension
3
3
  description "Radiant Shop provides"
4
4
  url "http://github.com/dirkkelly/radiant-shop-extension"
5
5
 
6
- extension_config do |config|
6
+ extension_config do |config|
7
7
  config.gem 'activemerchant', :lib => 'active_merchant'
8
8
  config.gem 'fastercsv', :lib => 'fastercsv'
9
9
  config.gem 'radiant-settings-extension', :lib => false
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-shop-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 371
4
+ hash: 383
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 90
9
- - 2
10
- version: 0.90.2
9
+ - 4
10
+ version: 0.90.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dirk Kelly