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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d5278e55dfe7ad1750cf98bcc0f3214d7e06e547
4
- data.tar.gz: 105ff18504c60481bbe6d105a7c3d4084b3e122d
3
+ metadata.gz: c1f22368c21ef13fa4ee0e7957675f0a7d69ba76
4
+ data.tar.gz: 97cc381129d941be37e58498da06cba62bcf1f2c
5
5
  SHA512:
6
- metadata.gz: b2a1719c033ee8afd5ddc37ce60e768fd64dab9dc65b3adf48604c606ff7dac433eeb17dd11fdad43790b79f35013c73a8d026b4970641a496f2ebf292ae1dcf
7
- data.tar.gz: 5a5d816bc442225be1535300ca102986a78688cf1938af742cddcccf8b5e504afa823c76bd3cca0eb15000e3901b797fb63331de81274fbc8f473c9b539e2759
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
@@ -14,4 +14,10 @@
14
14
  #= require jquery_ujs
15
15
  #= require turbolinks
16
16
  #= require bootstrap
17
- #= require hierapolis
17
+ #= require hierapolis
18
+
19
+ ready = ->
20
+ # TODO
21
+
22
+ $(document).ready(ready)
23
+ $(document).on('page:load', ready)
@@ -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
@@ -1,3 +1,4 @@
1
1
  / Javascripts
2
2
  = javascript_include_tag '//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js',
3
- 'hq/application'
3
+ 'hq/application', 'data-turbolinks-track' => true
4
+ = yield :foot
@@ -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
@@ -1,3 +1,3 @@
1
1
  / Javascripts
2
2
  = javascript_include_tag '//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js',
3
- 'application'
3
+ 'application', 'data-turbolinks-track' => true
@@ -1,5 +1,5 @@
1
1
  module Hierapolis
2
2
  module Rails
3
- VERSION = "0.4.0"
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
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.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: 2013-10-04 00:00:00.000000000 Z
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.0.6
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.