constructor-core 0.7.10 → 0.8.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db15989b7f1bc0acb5aa9f8203f8c2440c5a70af
|
4
|
+
data.tar.gz: 1bc5b5634ef10702737a90f4bc6bc42a594ac3b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13b755cceb648ded9a6542089dfcd2e6db6c3b6a89756e0d688806eb4042cfa4f74857397afb0481de08a5d805d418bbee687f07e8df7154502ce57e71a67edd
|
7
|
+
data.tar.gz: cc3af1bc37b695e9f2ea847ae16fadfe9488fe55803a36a3ea0ee5180291f390543fdbb3f9bad7d53f2ef434650e764c36e7683342f4ee3645d6ae78e7b37651
|
@@ -1,16 +1,17 @@
|
|
1
1
|
- content_for :page_title do
|
2
2
|
=t :profile
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
.
|
16
|
-
|
4
|
+
- cache do
|
5
|
+
= form_for @current_user, method: :post do |f|
|
6
|
+
.form-horizontal
|
7
|
+
.control-group
|
8
|
+
= f.label :password, class: 'control-label'
|
9
|
+
.controls
|
10
|
+
= f.password_field :password, required: true
|
11
|
+
.control-group
|
12
|
+
= f.label :password_confirmation, class: 'control-label'
|
13
|
+
.controls
|
14
|
+
= f.password_field :password_confirm, required: true
|
15
|
+
.control-group
|
16
|
+
.controls
|
17
|
+
= f.submit t(:save_password), class: 'btn btn-primary'
|
data/constructor-core.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: constructor-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Zotov
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: cache_digests
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: Core for Constructor CMS
|
70
84
|
email: ivanzotov@gmail.com
|
71
85
|
executables: []
|
@@ -96,7 +110,7 @@ files:
|
|
96
110
|
- app/assets/javascripts/constructor_core/keys_snippet.js
|
97
111
|
- app/assets/javascripts/constructor_core/retina.js
|
98
112
|
- app/assets/stylesheets/constructor_core/application.css.scss
|
99
|
-
- app/assets/stylesheets/constructor_core/main.css.scss
|
113
|
+
- app/assets/stylesheets/constructor_core/main.css.scss.erb
|
100
114
|
- app/controllers/constructor_core/application_controller.rb
|
101
115
|
- app/controllers/constructor_core/sessions_controller.rb
|
102
116
|
- app/controllers/constructor_core/users_controller.rb
|