hierapolis-rails 0.4.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -2
- data/lib/generators/hierapolis/templates/assets/javascripts/hq/application.js.coffee +7 -1
- data/lib/generators/hierapolis/templates/haml/scaffold/_list.html.haml +1 -7
- data/lib/generators/hierapolis/templates/layouts/application.html.haml +2 -1
- data/lib/generators/hierapolis/templates/layouts/hq/application.html.haml +2 -1
- data/lib/generators/hierapolis/templates/layouts/hq/partials/_footer.haml +2 -1
- data/lib/generators/hierapolis/templates/layouts/login.html.haml +2 -1
- data/lib/generators/hierapolis/templates/layouts/partials/_footer.haml +1 -1
- data/lib/hierapolis/rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1f22368c21ef13fa4ee0e7957675f0a7d69ba76
|
4
|
+
data.tar.gz: 97cc381129d941be37e58498da06cba62bcf1f2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03c04ea7c4d34988c475130a0a67ed4766d90741371c057a93edb4b298bd0883f2891896cc0631fb8138b50f912408e87bcb10b0a68c85e614694180fe80f916
|
7
|
+
data.tar.gz: 16306f10f4b5f449f3f42b380ec7cf9f7e762e48765d38ada318bb8a0c310931ea968a3e77352c79584e0d8488ec205711c53f3e87aba12286af7f25a5f12293
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
|
2
2
|
#### [Current]
|
3
|
+
* [548292a](../../commit/548292a) - __(Muhammet DİLEK)__ [#10](../../issues/10) Turbolinks Incompatibly
|
4
|
+
* [088758f](../../commit/088758f) - __(Muhammet DİLEK)__ [#8](../../issues/8) Add turbolinks track parameter to assets
|
5
|
+
* [3d6b2b8](../../commit/3d6b2b8) - __(Onur Özgür ÖZKAN)__ [#11](../../issues/11) Remove unnecessary code block.
|
6
|
+
* [9504343](../../commit/9504343) - __(Ahmet Sezgin Duran)__ [#9](../../issues/9) Add foot yield to footer partial
|
7
|
+
* [3ef785a](../../commit/3ef785a) - __(Muhammet DİLEK)__ usage update
|
8
|
+
* [bad14d1](../../commit/bad14d1) - __(Muhammet DİLEK)__ remove old usage
|
9
|
+
|
10
|
+
#### 0.4.0
|
11
|
+
* [bc3ee49](../../commit/bc3ee49) - __(Muhammet DİLEK)__ bump version 0.4.0
|
3
12
|
* [680b141](../../commit/680b141) - __(Muhammet DİLEK)__ [#6](../../issues/6) hq assets file added to generator
|
4
13
|
* [6fa111a](../../commit/6fa111a) - __(Muhammet DİLEK)__ [#5](../../issues/5) Update MIT License
|
5
14
|
|
data/README.md
CHANGED
@@ -33,7 +33,6 @@ rails g hierapolis:install
|
|
33
33
|
Add these lines to application.css
|
34
34
|
|
35
35
|
```ruby
|
36
|
-
@import 'bootstrap'
|
37
36
|
@import "hierapolis"
|
38
37
|
```
|
39
38
|
|
@@ -51,4 +50,4 @@ Add these lines to application.js
|
|
51
50
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
52
51
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
53
52
|
4. Push to the branch (`git push origin my-new-feature`)
|
54
|
-
5. Create new Pull Request
|
53
|
+
5. Create new Pull Request
|
@@ -3,12 +3,6 @@
|
|
3
3
|
= t('tt.index', resource_name: <%= singular_table_name.capitalize %>.model_name.human)
|
4
4
|
.panel-tools
|
5
5
|
.btn-group
|
6
|
-
%a.btn{href: '#'}
|
7
|
-
%i.icon-wrench
|
8
|
-
Settings
|
9
|
-
%a.btn{href: '#'}
|
10
|
-
%i.icon-filter
|
11
|
-
Filters
|
12
6
|
%a.btn{href: <%= index_helper %>_path, data: {toggle: 'toolbar-tooltip'}, title: 'Reload'}
|
13
7
|
%i.icon-refresh
|
14
8
|
.badge= @<%= plural_table_name %>.total_entries
|
@@ -24,4 +18,4 @@
|
|
24
18
|
%th.actions
|
25
19
|
Actions
|
26
20
|
%tbody
|
27
|
-
= render @<%= plural_table_name %>
|
21
|
+
= render @<%= plural_table_name %>
|
@@ -24,7 +24,8 @@
|
|
24
24
|
|
25
25
|
/ Stylesheets (Don't change include order)
|
26
26
|
= stylesheet_link_tag 'application',
|
27
|
-
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css'
|
27
|
+
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css',
|
28
|
+
media: 'all', 'data-turbolinks-track' => true
|
28
29
|
|
29
30
|
%body.main{class: @page || 'page'}
|
30
31
|
|
@@ -24,7 +24,8 @@
|
|
24
24
|
|
25
25
|
/ Stylesheets (Don't change include order)
|
26
26
|
= stylesheet_link_tag 'hq/application',
|
27
|
-
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css'
|
27
|
+
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css',
|
28
|
+
media: 'all', 'data-turbolinks-track' => true
|
28
29
|
= yield :head
|
29
30
|
|
30
31
|
%body.main
|
@@ -22,7 +22,8 @@
|
|
22
22
|
|
23
23
|
/ Stylesheets (Don't change include order)
|
24
24
|
= stylesheet_link_tag 'hq/application',
|
25
|
-
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css'
|
25
|
+
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css',
|
26
|
+
media: 'all', 'data-turbolinks-track' => true
|
26
27
|
= yield :head
|
27
28
|
|
28
29
|
%body.login
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hierapolis-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lab2023
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
247
247
|
version: '0'
|
248
248
|
requirements: []
|
249
249
|
rubyforge_project:
|
250
|
-
rubygems_version: 2.
|
250
|
+
rubygems_version: 2.1.11
|
251
251
|
signing_key:
|
252
252
|
specification_version: 4
|
253
253
|
summary: this gem using to integrate hierapolis theme on rails project.
|