gistyle 1.0.1 → 1.0.2

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
- SHA1:
3
- metadata.gz: 9982cf03a09806cca6ee70d6d152430530cfee3a
4
- data.tar.gz: 2c303f7611fb6685f7da2f1578a0850142ab13d8
2
+ SHA256:
3
+ metadata.gz: 2cf015561e56b5a451b612c4576da267cd167992495140dd2701478433443915
4
+ data.tar.gz: e88a81da6b538a7781d7b6ef7ea7a1887dca0c1e38cbc8db3f1229246315ce43
5
5
  SHA512:
6
- metadata.gz: c07307f395e930578b8429779a6ddc98942bb9de55353da57646c86afa18f73e4caa6d97a43cc6e1ab37d21d0799b45087cf5fc349561c2066b41ee1dcffc92d
7
- data.tar.gz: b38eb3c364628742956ba79616fcb2c4c62088584199ae9d0e9bcce80b3c8a76f6ab01287ae15f9685c1e9720fa47f1d3997a3c3e6df077cb45484484ddb4960
6
+ metadata.gz: bdc0fc39d8dcb8d13dd7fc5a3c47b05a5584be269d78f86e7a55d0b40e386ec5a8daf8e92505e75e63c76b35e6f534b32d467402e016dc38b0e44d4a60293a2a
7
+ data.tar.gz: 632df9076223fdfadbf8696b7b18ee4bb76d368cc19b6d2c855a5d5aa4f4bfaddf1ea9bc7af447bda8de40ea0b27b40156683132c6d1ce878c0dbbd0a44d3625
@@ -1,3 +1,3 @@
1
1
  module Gistyle
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -65,4 +65,4 @@ GIStyle.alias(undefined, 'update', '_edit_update');
65
65
  GIStyle.alias(undefined, '_edit_update', '_form');
66
66
 
67
67
  var turbolinkSupported = typeof(Turbolinks) !== "undefined" && Turbolinks !== null && Turbolinks.supported;
68
- $(document).on(turbolinkSupported ? 'page:change' : 'ready', GIStyle.init);
68
+ $(document).on(turbolinkSupported ? 'page:change turbolinks:load' : 'ready', GIStyle.init);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gistyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Jian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-07 00:00:00.000000000 Z
11
+ date: 2018-09-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: GIStyle is a Rails plug-in for DOM-based routing of Javascript, inspired
14
14
  from Paul Irish and Jason Garber.
@@ -85,48 +85,48 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  version: '0'
86
86
  requirements: []
87
87
  rubyforge_project:
88
- rubygems_version: 2.4.2
88
+ rubygems_version: 2.7.3
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: GIStyle is a Rails plug-in for DOM-based routing of Javascript.
92
92
  test_files:
93
- - test/dummy/app/assets/javascripts/application.js
94
- - test/dummy/app/assets/javascripts/home.js
95
- - test/dummy/app/assets/stylesheets/application.css
96
- - test/dummy/app/assets/stylesheets/home.css
97
93
  - test/dummy/app/controllers/application_controller.rb
98
94
  - test/dummy/app/controllers/home_controller.rb
99
- - test/dummy/app/helpers/application_helper.rb
100
- - test/dummy/app/helpers/home_helper.rb
101
- - test/dummy/app/views/home/about.html.erb
102
- - test/dummy/app/views/home/contact.html.erb
103
95
  - test/dummy/app/views/home/index.html.erb
96
+ - test/dummy/app/views/home/contact.html.erb
97
+ - test/dummy/app/views/home/about.html.erb
104
98
  - test/dummy/app/views/layouts/application.html.erb
105
- - test/dummy/config/application.rb
106
- - test/dummy/config/boot.rb
107
- - test/dummy/config/database.yml
108
- - test/dummy/config/environment.rb
109
- - test/dummy/config/environments/development.rb
99
+ - test/dummy/app/assets/javascripts/home.js
100
+ - test/dummy/app/assets/javascripts/application.js
101
+ - test/dummy/app/assets/stylesheets/home.css
102
+ - test/dummy/app/assets/stylesheets/application.css
103
+ - test/dummy/app/helpers/home_helper.rb
104
+ - test/dummy/app/helpers/application_helper.rb
105
+ - test/dummy/test/unit/helpers/home_helper_test.rb
106
+ - test/dummy/test/functional/home_controller_test.rb
107
+ - test/dummy/config/routes.rb
108
+ - test/dummy/config/locales/en.yml
110
109
  - test/dummy/config/environments/production.rb
110
+ - test/dummy/config/environments/development.rb
111
111
  - test/dummy/config/environments/test.rb
112
+ - test/dummy/config/environment.rb
113
+ - test/dummy/config/application.rb
114
+ - test/dummy/config/database.yml
115
+ - test/dummy/config/boot.rb
112
116
  - test/dummy/config/initializers/backtrace_silencers.rb
113
- - test/dummy/config/initializers/inflections.rb
114
117
  - test/dummy/config/initializers/mime_types.rb
115
- - test/dummy/config/initializers/secret_token.rb
116
118
  - test/dummy/config/initializers/session_store.rb
117
119
  - test/dummy/config/initializers/wrap_parameters.rb
118
- - test/dummy/config/locales/en.yml
119
- - test/dummy/config/routes.rb
120
+ - test/dummy/config/initializers/secret_token.rb
121
+ - test/dummy/config/initializers/inflections.rb
120
122
  - test/dummy/config.ru
121
- - test/dummy/db/development.sqlite3
122
- - test/dummy/public/404.html
123
+ - test/dummy/script/rails
124
+ - test/dummy/Rakefile
125
+ - test/dummy/public/favicon.ico
123
126
  - test/dummy/public/422.html
124
127
  - test/dummy/public/500.html
125
- - test/dummy/public/favicon.ico
126
- - test/dummy/Rakefile
128
+ - test/dummy/public/404.html
129
+ - test/dummy/db/development.sqlite3
127
130
  - test/dummy/README.rdoc
128
- - test/dummy/script/rails
129
- - test/dummy/test/functional/home_controller_test.rb
130
- - test/dummy/test/unit/helpers/home_helper_test.rb
131
- - test/gistyle_test.rb
132
131
  - test/test_helper.rb
132
+ - test/gistyle_test.rb