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: 749651bd8d58f82e40f4e891498a0c45d34ade3b
4
- data.tar.gz: 758653ee4dabaf4a0a71a8f480ee1befdf7c8514
3
+ metadata.gz: db15989b7f1bc0acb5aa9f8203f8c2440c5a70af
4
+ data.tar.gz: 1bc5b5634ef10702737a90f4bc6bc42a594ac3b5
5
5
  SHA512:
6
- metadata.gz: a3e4cb990d17c74703e44e13e16128c9d49b5730a33392ece8e5631f69975a9924785facba45c91fc366cc90bc7aa2e26dcd44fd683e44d9052d051e6eac1dd6
7
- data.tar.gz: f53dc8584ccd150acc23203342bfea074acae25051a1a1f3ec9a3e8e5d5019abeaccaf797951c6a93fd931a3cf9ae9e238e3f3fa7b92d5eb7ec4e909f66345b0
6
+ metadata.gz: 13b755cceb648ded9a6542089dfcd2e6db6c3b6a89756e0d688806eb4042cfa4f74857397afb0481de08a5d805d418bbee687f07e8df7154502ce57e71a67edd
7
+ data.tar.gz: cc3af1bc37b695e9f2ea847ae16fadfe9488fe55803a36a3ea0ee5180291f390543fdbb3f9bad7d53f2ef434650e764c36e7683342f4ee3645d6ae78e7b37651
@@ -226,4 +226,8 @@ h3 {
226
226
  @include ie7-inline-block();
227
227
  display: inline;
228
228
  visibility: hidden;
229
- }
229
+ }
230
+
231
+ <% (1..10).each do |i| %>
232
+ <%= ".level#{i} { margin-left: #{i*45}px }" %>
233
+ <% end %>
@@ -1,16 +1,17 @@
1
1
  - content_for :page_title do
2
2
  =t :profile
3
3
 
4
- = form_for @current_user, method: :post do |f|
5
- .form-horizontal
6
- .control-group
7
- = f.label :password, class: 'control-label'
8
- .controls
9
- = f.password_field :password, required: true
10
- .control-group
11
- = f.label :password_confirmation, class: 'control-label'
12
- .controls
13
- = f.password_field :password_confirm, required: true
14
- .control-group
15
- .controls
16
- = f.submit t(:save_password), class: 'btn btn-primary'
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'
@@ -20,4 +20,5 @@ Gem::Specification.new do |s|
20
20
  s.add_dependency 'devise', '~> 3.0.0.rc'
21
21
  s.add_dependency 'bootstrap-sass'
22
22
  s.add_dependency 'font-awesome-sass-rails'
23
+ s.add_dependency 'cache_digests'
23
24
  end
@@ -1,3 +1,3 @@
1
1
  module ConstructorCore
2
- VERSION = '0.7.10'
2
+ VERSION = '0.8.0'
3
3
  end
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.7.10
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