alchemy_cms 2.2.rc3 → 2.2.rc6
Sign up to get free protection for your applications and to get access to all the features.
- data/alchemy_cms.gemspec +1 -0
- data/app/assets/stylesheets/alchemy/base.css.scss +1 -1
- data/app/assets/stylesheets/alchemy/sitemap.css.scss +3 -0
- data/app/controllers/alchemy/admin/attachments_controller.rb +1 -1
- data/app/controllers/alchemy/admin/contents_controller.rb +1 -1
- data/app/controllers/alchemy/admin/dashboard_controller.rb +1 -1
- data/app/controllers/alchemy/admin/elements_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_audios_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_files_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_flashes_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +1 -1
- data/app/controllers/alchemy/admin/essence_videos_controller.rb +1 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +4 -4
- data/app/controllers/alchemy/admin/resources_controller.rb +2 -3
- data/app/controllers/alchemy/admin/users_controller.rb +2 -2
- data/app/controllers/alchemy/base_controller.rb +8 -1
- data/app/controllers/alchemy/pages_controller.rb +2 -0
- data/app/models/alchemy/attachment.rb +2 -0
- data/app/models/alchemy/cell.rb +2 -0
- data/app/models/alchemy/content.rb +17 -4
- data/app/models/alchemy/element.rb +22 -3
- data/app/models/alchemy/essence_audio.rb +2 -0
- data/app/models/alchemy/essence_date.rb +2 -0
- data/app/models/alchemy/essence_file.rb +2 -0
- data/app/models/alchemy/essence_flash.rb +2 -0
- data/app/models/alchemy/essence_html.rb +2 -0
- data/app/models/alchemy/essence_picture.rb +15 -0
- data/app/models/alchemy/essence_richtext.rb +2 -0
- data/app/models/alchemy/essence_text.rb +10 -0
- data/app/models/alchemy/essence_video.rb +8 -0
- data/app/models/alchemy/folded_page.rb +1 -0
- data/app/models/alchemy/language.rb +11 -0
- data/app/models/alchemy/message.rb +7 -10
- data/app/models/alchemy/page.rb +28 -7
- data/app/models/alchemy/picture.rb +8 -0
- data/app/models/alchemy/user.rb +12 -8
- data/app/views/alchemy/admin/pages/_page.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/show_in_window.html.erb +1 -1
- data/app/views/alchemy/pictures/zoom.jpg.flexi +3 -0
- data/config/alchemy/config.yml +9 -13
- data/config/locales/alchemy.de.yml +29 -15
- data/config/locales/alchemy.en.yml +27 -10
- data/lib/alchemy/version.rb +1 -1
- data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +1 -1
- data/spec/controllers/pages_controller_spec.rb +8 -8
- data/spec/dummy/app/models/event.rb +1 -0
- data/spec/dummy/config/application.rb +26 -8
- data/spec/dummy/config/environments/development.rb +8 -8
- data/spec/dummy/config/environments/production.rb +9 -2
- data/spec/dummy/config/environments/test.rb +6 -11
- data/spec/factories.rb +1 -1
- data/spec/helpers/elements_helper_spec.rb +4 -4
- data/spec/models/language_spec.rb +2 -2
- data/spec/models/page_spec.rb +2 -2
- data/spec/spec_helper.rb +1 -2
- metadata +36 -38
@@ -1,9 +1,19 @@
|
|
1
1
|
require File.expand_path('../boot', __FILE__)
|
2
2
|
|
3
|
-
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "active_resource/railtie"
|
8
|
+
require "sprockets/railtie"
|
9
|
+
# require "rails/test_unit/railtie"
|
4
10
|
|
5
|
-
Bundler
|
6
|
-
|
11
|
+
if defined?(Bundler)
|
12
|
+
# If you precompile assets before deploying to production, use this line
|
13
|
+
Bundler.require(*Rails.groups(:assets => %w(development test)))
|
14
|
+
# If you want your assets lazily compiled in production, use this line
|
15
|
+
# Bundler.require(:default, :assets, Rails.env)
|
16
|
+
end
|
7
17
|
|
8
18
|
module Dummy
|
9
19
|
class Application < Rails::Application
|
@@ -27,21 +37,29 @@ module Dummy
|
|
27
37
|
|
28
38
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
29
39
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
40
|
+
# config.i18n.default_locale = :de
|
30
41
|
|
31
42
|
# Configure the default encoding used in templates for Ruby 1.9.
|
32
43
|
config.encoding = "utf-8"
|
33
44
|
|
34
45
|
# Configure sensitive parameters which will be filtered from the log file.
|
35
|
-
config.filter_parameters += [:password]
|
46
|
+
config.filter_parameters += [:password, :password_confirmation]
|
47
|
+
|
48
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
49
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
50
|
+
# like if you have constraints or database-specific column types
|
51
|
+
# config.active_record.schema_format = :sql
|
52
|
+
|
53
|
+
# Enforce whitelist mode for mass assignment.
|
54
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
55
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
56
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
57
|
+
config.active_record.whitelist_attributes = true
|
36
58
|
|
37
59
|
# Enable the asset pipeline
|
38
60
|
config.assets.enabled = true
|
39
61
|
|
40
62
|
# Version of your assets, change this if you want to expire all your assets
|
41
63
|
config.assets.version = '1.0'
|
42
|
-
|
43
|
-
# Delegates Exceptions to /404 /500 etc.
|
44
|
-
config.exceptions_app = self.routes
|
45
64
|
end
|
46
65
|
end
|
47
|
-
|
@@ -2,7 +2,7 @@ Dummy::Application.configure do
|
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb
|
3
3
|
|
4
4
|
# In the development environment your application's code is reloaded on
|
5
|
-
# every request.
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
6
|
# since you don't have to restart the web server when you make code changes.
|
7
7
|
config.cache_classes = false
|
8
8
|
|
@@ -10,7 +10,7 @@ Dummy::Application.configure do
|
|
10
10
|
config.whiny_nils = true
|
11
11
|
|
12
12
|
# Show full error reports and disable caching
|
13
|
-
config.consider_all_requests_local
|
13
|
+
config.consider_all_requests_local = true
|
14
14
|
config.action_controller.perform_caching = false
|
15
15
|
|
16
16
|
# Don't care if the mailer can't send
|
@@ -22,16 +22,16 @@ Dummy::Application.configure do
|
|
22
22
|
# Only use best-standards-support built into browsers
|
23
23
|
config.action_dispatch.best_standards_support = :builtin
|
24
24
|
|
25
|
-
# Do not compress assets
|
26
|
-
config.assets.compress = false
|
27
|
-
|
28
|
-
# Expands the lines which load the assets
|
29
|
-
config.assets.debug = true
|
30
|
-
|
31
25
|
# Raise exception on mass assignment protection for Active Record models
|
32
26
|
config.active_record.mass_assignment_sanitizer = :strict
|
33
27
|
|
34
28
|
# Log the query plan for queries taking more than this (works
|
35
29
|
# with SQLite, MySQL, and PostgreSQL)
|
36
30
|
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
|
+
|
32
|
+
# Do not compress assets
|
33
|
+
config.assets.compress = false
|
34
|
+
|
35
|
+
# Expands the lines which load the assets
|
36
|
+
config.assets.debug = true
|
37
37
|
end
|
@@ -5,7 +5,7 @@ Dummy::Application.configure do
|
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
7
|
# Full error reports are disabled and caching is turned on
|
8
|
-
config.consider_all_requests_local
|
8
|
+
config.consider_all_requests_local = false
|
9
9
|
config.action_controller.perform_caching = true
|
10
10
|
|
11
11
|
# Disable Rails's static asset server (Apache or nginx will already do this)
|
@@ -33,8 +33,11 @@ Dummy::Application.configure do
|
|
33
33
|
# See everything in the log (default is :info)
|
34
34
|
# config.log_level = :debug
|
35
35
|
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
36
39
|
# Use a different logger for distributed setups
|
37
|
-
# config.logger = SyslogLogger.new
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
38
41
|
|
39
42
|
# Use a different cache store in production
|
40
43
|
# config.cache_store = :mem_cache_store
|
@@ -57,4 +60,8 @@ Dummy::Application.configure do
|
|
57
60
|
|
58
61
|
# Send deprecation notices to registered listeners
|
59
62
|
config.active_support.deprecation = :notify
|
63
|
+
|
64
|
+
# Log the query plan for queries taking more than this (works
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
60
67
|
end
|
@@ -2,9 +2,9 @@ Dummy::Application.configure do
|
|
2
2
|
# Settings specified here will take precedence over those in config/application.rb
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
5
|
-
# test suite.
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
6
|
# your test database is "scratch space" for the test suite and is wiped
|
7
|
-
# and recreated between test runs.
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
8
|
config.cache_classes = true
|
9
9
|
|
10
10
|
# Configure static asset server for tests with Cache-Control for performance
|
@@ -15,28 +15,23 @@ Dummy::Application.configure do
|
|
15
15
|
config.whiny_nils = true
|
16
16
|
|
17
17
|
# Show full error reports and disable caching
|
18
|
-
config.consider_all_requests_local
|
18
|
+
config.consider_all_requests_local = true
|
19
19
|
config.action_controller.perform_caching = false
|
20
20
|
|
21
21
|
# Raise exceptions instead of rendering exception templates
|
22
22
|
config.action_dispatch.show_exceptions = false
|
23
23
|
|
24
24
|
# Disable request forgery protection in test environment
|
25
|
-
config.action_controller.allow_forgery_protection
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
26
|
|
27
27
|
# Tell Action Mailer not to deliver emails to the real world.
|
28
28
|
# The :test delivery method accumulates sent emails in the
|
29
29
|
# ActionMailer::Base.deliveries array.
|
30
30
|
config.action_mailer.delivery_method = :test
|
31
31
|
|
32
|
-
#
|
33
|
-
|
34
|
-
# like if you have constraints or database-specific column types
|
35
|
-
# config.active_record.schema_format = :sql
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
36
34
|
|
37
35
|
# Print deprecation notices to the stderr
|
38
36
|
config.active_support.deprecation = :stderr
|
39
|
-
|
40
|
-
# Raise exception on mass assignment protection for Active Record models
|
41
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
42
37
|
end
|
data/spec/factories.rb
CHANGED
@@ -41,7 +41,7 @@ FactoryGirl.define do
|
|
41
41
|
|
42
42
|
language { Alchemy::Language.find_by_language_code('kl') || Factory(:language) }
|
43
43
|
name "A Page"
|
44
|
-
parent_id { Factory(:language_root_page).id }
|
44
|
+
parent_id { (Alchemy::Page.find_by_language_root(true) || Factory(:language_root_page)).id }
|
45
45
|
page_layout "standard"
|
46
46
|
|
47
47
|
factory :language_root_page do
|
@@ -54,13 +54,13 @@ describe Alchemy::ElementsHelper do
|
|
54
54
|
|
55
55
|
context "with from_page option" do
|
56
56
|
it "should render all elements from a certain page" do
|
57
|
-
@another_page = Factory(:public_page)
|
57
|
+
@another_page = Factory(:public_page, :name => 'Another Page')
|
58
58
|
@element_on_other_page = Factory(:element, :name => 'headline', :page => @another_page)
|
59
59
|
helper.render_elements(:from_page => @another_page).should match(/id="#{@element_on_other_page.name}_\d*"/)
|
60
60
|
end
|
61
61
|
|
62
62
|
it "should not render any elements in a cell from the given page" do
|
63
|
-
@another_page = Factory(:public_page)
|
63
|
+
@another_page = Factory(:public_page, :name => 'And Another Page')
|
64
64
|
@cell = Factory(:cell, :name => "Celltest", :page => @another_page)
|
65
65
|
@element_not_in_cell = Factory(:element, :name => 'headline', :page => @another_page)
|
66
66
|
@element_in_cell = Factory(:element, :name => 'article', :cell => @cell, :page => @another_page)
|
@@ -69,7 +69,7 @@ describe Alchemy::ElementsHelper do
|
|
69
69
|
|
70
70
|
context "and from_cell option" do
|
71
71
|
it "should render all elements from the page's cell" do
|
72
|
-
@another_page = Factory(:public_page)
|
72
|
+
@another_page = Factory(:public_page, :name => 'And even another page')
|
73
73
|
@cell = Factory(:cell, :name => "Celltest", :page => @another_page)
|
74
74
|
@element_not_in_cell = Factory(:element, :name => 'headline', :page => @another_page)
|
75
75
|
@element_in_cell = Factory(:element, :name => 'article', :cell => @cell, :page => @another_page)
|
@@ -119,7 +119,7 @@ describe Alchemy::ElementsHelper do
|
|
119
119
|
context "with offset option" do
|
120
120
|
it "should render all elements beginning with the second." do
|
121
121
|
@page.elements.delete_all
|
122
|
-
@another_page = Factory(:public_page)
|
122
|
+
@another_page = Factory(:public_page, :name => 'And even one more page')
|
123
123
|
@another_element_1 = Factory(:element, :page => @page)
|
124
124
|
@another_element_2 = Factory(:element, :page => @page)
|
125
125
|
@another_element_3 = Factory(:element, :page => @page)
|
@@ -76,7 +76,7 @@ describe Alchemy::Language do
|
|
76
76
|
describe "#set_pages_language if language´s code has changed" do
|
77
77
|
it "should update all its pages with the new code" do
|
78
78
|
@page = Factory(:page, :language => @language)
|
79
|
-
@other_page = Factory(:page, :language => @language)
|
79
|
+
@other_page = Factory(:page, :language => @language, :name => 'Another page')
|
80
80
|
@language.update_attributes(:code => "fo")
|
81
81
|
@language.reload; @page.reload; @other_page.reload
|
82
82
|
[@page.language_code, @other_page.language_code].should == [@language.code, @language.code]
|
@@ -85,7 +85,7 @@ describe Alchemy::Language do
|
|
85
85
|
describe "#unpublish_pages" do
|
86
86
|
it "should set all pages to unpublic if it gets set to unpublic" do
|
87
87
|
@page = Factory(:page, :language => @language)
|
88
|
-
@other_page = Factory(:page, :language => @language)
|
88
|
+
@other_page = Factory(:page, :language => @language, :name => 'Another page')
|
89
89
|
@language.update_attributes(:public => false)
|
90
90
|
@language.reload; @page.reload; @other_page.reload
|
91
91
|
[@page.public?, @other_page.public?].should == [false, false]
|
data/spec/models/page_spec.rb
CHANGED
@@ -300,7 +300,7 @@ describe Alchemy::Page do
|
|
300
300
|
|
301
301
|
it "should return the pages" do
|
302
302
|
page_1 = Factory(:page, :language => @language)
|
303
|
-
page_2 = Factory(:page, :language => @language)
|
303
|
+
page_2 = Factory(:page, :language => @language, :name => 'Another page')
|
304
304
|
clipboard = [
|
305
305
|
{:id => page_1.id, :action => "copy"},
|
306
306
|
{:id => page_2.id, :action => "copy"}
|
@@ -326,7 +326,7 @@ describe Alchemy::Page do
|
|
326
326
|
|
327
327
|
it "should return one page" do
|
328
328
|
page_1 = Factory(:page, :language => @language, :page_layout => 'standard')
|
329
|
-
page_2 = Factory(:page, :language => @language, :page_layout => 'contact')
|
329
|
+
page_2 = Factory(:page, :name => 'Another page', :language => @language, :page_layout => 'contact')
|
330
330
|
clipboard = [
|
331
331
|
{:id => page_1.id, :action => "copy"},
|
332
332
|
{:id => page_2.id, :action => "copy"}
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.rc6
|
5
5
|
prerelease: 4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -12,11 +12,11 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2012-04-
|
15
|
+
date: 2012-04-13 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: rails
|
19
|
-
requirement: &
|
19
|
+
requirement: &70293532196300 !ruby/object:Gem::Requirement
|
20
20
|
none: false
|
21
21
|
requirements:
|
22
22
|
- - ~>
|
@@ -24,10 +24,10 @@ dependencies:
|
|
24
24
|
version: 3.2.1
|
25
25
|
type: :runtime
|
26
26
|
prerelease: false
|
27
|
-
version_requirements: *
|
27
|
+
version_requirements: *70293532196300
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: authlogic
|
30
|
-
requirement: &
|
30
|
+
requirement: &70293532195080 !ruby/object:Gem::Requirement
|
31
31
|
none: false
|
32
32
|
requirements:
|
33
33
|
- - ! '>='
|
@@ -35,10 +35,10 @@ dependencies:
|
|
35
35
|
version: '0'
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
|
-
version_requirements: *
|
38
|
+
version_requirements: *70293532195080
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: awesome_nested_set
|
41
|
-
requirement: &
|
41
|
+
requirement: &70293532238980 !ruby/object:Gem::Requirement
|
42
42
|
none: false
|
43
43
|
requirements:
|
44
44
|
- - ~>
|
@@ -46,10 +46,10 @@ dependencies:
|
|
46
46
|
version: '2.0'
|
47
47
|
type: :runtime
|
48
48
|
prerelease: false
|
49
|
-
version_requirements: *
|
49
|
+
version_requirements: *70293532238980
|
50
50
|
- !ruby/object:Gem::Dependency
|
51
51
|
name: declarative_authorization
|
52
|
-
requirement: &
|
52
|
+
requirement: &70293528320600 !ruby/object:Gem::Requirement
|
53
53
|
none: false
|
54
54
|
requirements:
|
55
55
|
- - ~>
|
@@ -57,10 +57,10 @@ dependencies:
|
|
57
57
|
version: 0.5.4
|
58
58
|
type: :runtime
|
59
59
|
prerelease: false
|
60
|
-
version_requirements: *
|
60
|
+
version_requirements: *70293528320600
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: tvdeyen-fleximage
|
63
|
-
requirement: &
|
63
|
+
requirement: &70293528318900 !ruby/object:Gem::Requirement
|
64
64
|
none: false
|
65
65
|
requirements:
|
66
66
|
- - ~>
|
@@ -68,10 +68,10 @@ dependencies:
|
|
68
68
|
version: 1.2.0
|
69
69
|
type: :runtime
|
70
70
|
prerelease: false
|
71
|
-
version_requirements: *
|
71
|
+
version_requirements: *70293528318900
|
72
72
|
- !ruby/object:Gem::Dependency
|
73
73
|
name: kaminari
|
74
|
-
requirement: &
|
74
|
+
requirement: &70293528317760 !ruby/object:Gem::Requirement
|
75
75
|
none: false
|
76
76
|
requirements:
|
77
77
|
- - ~>
|
@@ -79,10 +79,10 @@ dependencies:
|
|
79
79
|
version: 0.13.0
|
80
80
|
type: :runtime
|
81
81
|
prerelease: false
|
82
|
-
version_requirements: *
|
82
|
+
version_requirements: *70293528317760
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: acts_as_ferret
|
85
|
-
requirement: &
|
85
|
+
requirement: &70293528292680 !ruby/object:Gem::Requirement
|
86
86
|
none: false
|
87
87
|
requirements:
|
88
88
|
- - ~>
|
@@ -90,10 +90,10 @@ dependencies:
|
|
90
90
|
version: '0.5'
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
|
-
version_requirements: *
|
93
|
+
version_requirements: *70293528292680
|
94
94
|
- !ruby/object:Gem::Dependency
|
95
95
|
name: acts_as_list
|
96
|
-
requirement: &
|
96
|
+
requirement: &70293527994060 !ruby/object:Gem::Requirement
|
97
97
|
none: false
|
98
98
|
requirements:
|
99
99
|
- - ~>
|
@@ -101,10 +101,10 @@ dependencies:
|
|
101
101
|
version: '0.1'
|
102
102
|
type: :runtime
|
103
103
|
prerelease: false
|
104
|
-
version_requirements: *
|
104
|
+
version_requirements: *70293527994060
|
105
105
|
- !ruby/object:Gem::Dependency
|
106
106
|
name: magiclabs-userstamp
|
107
|
-
requirement: &
|
107
|
+
requirement: &70293528067980 !ruby/object:Gem::Requirement
|
108
108
|
none: false
|
109
109
|
requirements:
|
110
110
|
- - ~>
|
@@ -112,10 +112,10 @@ dependencies:
|
|
112
112
|
version: 2.0.2
|
113
113
|
type: :runtime
|
114
114
|
prerelease: false
|
115
|
-
version_requirements: *
|
115
|
+
version_requirements: *70293528067980
|
116
116
|
- !ruby/object:Gem::Dependency
|
117
117
|
name: dynamic_form
|
118
|
-
requirement: &
|
118
|
+
requirement: &70293528110100 !ruby/object:Gem::Requirement
|
119
119
|
none: false
|
120
120
|
requirements:
|
121
121
|
- - ~>
|
@@ -123,10 +123,10 @@ dependencies:
|
|
123
123
|
version: '1.1'
|
124
124
|
type: :runtime
|
125
125
|
prerelease: false
|
126
|
-
version_requirements: *
|
126
|
+
version_requirements: *70293528110100
|
127
127
|
- !ruby/object:Gem::Dependency
|
128
128
|
name: jquery-rails
|
129
|
-
requirement: &
|
129
|
+
requirement: &70293532268800 !ruby/object:Gem::Requirement
|
130
130
|
none: false
|
131
131
|
requirements:
|
132
132
|
- - ~>
|
@@ -134,10 +134,10 @@ dependencies:
|
|
134
134
|
version: 2.0.0
|
135
135
|
type: :runtime
|
136
136
|
prerelease: false
|
137
|
-
version_requirements: *
|
137
|
+
version_requirements: *70293532268800
|
138
138
|
- !ruby/object:Gem::Dependency
|
139
139
|
name: attachment_magic
|
140
|
-
requirement: &
|
140
|
+
requirement: &70293532339160 !ruby/object:Gem::Requirement
|
141
141
|
none: false
|
142
142
|
requirements:
|
143
143
|
- - ~>
|
@@ -145,10 +145,10 @@ dependencies:
|
|
145
145
|
version: 0.2.1
|
146
146
|
type: :runtime
|
147
147
|
prerelease: false
|
148
|
-
version_requirements: *
|
148
|
+
version_requirements: *70293532339160
|
149
149
|
- !ruby/object:Gem::Dependency
|
150
150
|
name: sass-rails
|
151
|
-
requirement: &
|
151
|
+
requirement: &70293532445540 !ruby/object:Gem::Requirement
|
152
152
|
none: false
|
153
153
|
requirements:
|
154
154
|
- - ~>
|
@@ -156,10 +156,10 @@ dependencies:
|
|
156
156
|
version: 3.2.3
|
157
157
|
type: :runtime
|
158
158
|
prerelease: false
|
159
|
-
version_requirements: *
|
159
|
+
version_requirements: *70293532445540
|
160
160
|
- !ruby/object:Gem::Dependency
|
161
161
|
name: rspec-rails
|
162
|
-
requirement: &
|
162
|
+
requirement: &70293532480560 !ruby/object:Gem::Requirement
|
163
163
|
none: false
|
164
164
|
requirements:
|
165
165
|
- - ~>
|
@@ -167,10 +167,10 @@ dependencies:
|
|
167
167
|
version: '2.8'
|
168
168
|
type: :development
|
169
169
|
prerelease: false
|
170
|
-
version_requirements: *
|
170
|
+
version_requirements: *70293532480560
|
171
171
|
- !ruby/object:Gem::Dependency
|
172
172
|
name: sqlite3
|
173
|
-
requirement: &
|
173
|
+
requirement: &70293532475840 !ruby/object:Gem::Requirement
|
174
174
|
none: false
|
175
175
|
requirements:
|
176
176
|
- - ! '>='
|
@@ -178,10 +178,10 @@ dependencies:
|
|
178
178
|
version: '0'
|
179
179
|
type: :development
|
180
180
|
prerelease: false
|
181
|
-
version_requirements: *
|
181
|
+
version_requirements: *70293532475840
|
182
182
|
- !ruby/object:Gem::Dependency
|
183
183
|
name: jasminerice
|
184
|
-
requirement: &
|
184
|
+
requirement: &70293532496700 !ruby/object:Gem::Requirement
|
185
185
|
none: false
|
186
186
|
requirements:
|
187
187
|
- - ! '>='
|
@@ -189,7 +189,7 @@ dependencies:
|
|
189
189
|
version: '0'
|
190
190
|
type: :development
|
191
191
|
prerelease: false
|
192
|
-
version_requirements: *
|
192
|
+
version_requirements: *70293532496700
|
193
193
|
description: Alchemy is a Rails 3 CMS with a flexible content storing architecture.
|
194
194
|
email:
|
195
195
|
- alchemy@magiclabs.de
|
@@ -539,6 +539,7 @@ files:
|
|
539
539
|
- app/views/alchemy/pictures/show.jpg.flexi
|
540
540
|
- app/views/alchemy/pictures/show.png.flexi
|
541
541
|
- app/views/alchemy/pictures/thumbnail.png.flexi
|
542
|
+
- app/views/alchemy/pictures/zoom.jpg.flexi
|
542
543
|
- app/views/alchemy/pictures/zoom.png.flexi
|
543
544
|
- app/views/alchemy/search/_result.html.erb
|
544
545
|
- app/views/alchemy/user_sessions/leave.html.erb
|
@@ -852,10 +853,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
852
853
|
requirements:
|
853
854
|
- - ! '>='
|
854
855
|
- !ruby/object:Gem::Version
|
855
|
-
version:
|
856
|
-
segments:
|
857
|
-
- 0
|
858
|
-
hash: -2870462332409198212
|
856
|
+
version: 1.8.7
|
859
857
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
860
858
|
none: false
|
861
859
|
requirements:
|