jqr-helpers 1.0.38 → 1.0.39

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Yjk1YjQ3ODIzNDJhZjJmYThjOTgwNzdkYjdlMTNkNmRhMzJlN2JhOQ==
5
+ data.tar.gz: !binary |-
6
+ MjYxZGVmOTNjNmU0NWU1MTdjMjMzMmM0YzNkM2Y0NDkwMDU4Mzg5ZA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MTI5YjY4NGFhMWEzMjczODBlZWU1YTdmNjFiZjhiMjU1Yjg5NjgwZGZiZDQ5
10
+ ZjVlNWI2MjljODczZjVkOTcyMDEwYWQyN2Y5OWU1YmIzYWE0MGRhMzZhNzk1
11
+ ZjZmOGMzNTUwNmJmZTFiZjAxYjA2MGU1MTAyMzcyMDhjZDdlZmU=
12
+ data.tar.gz: !binary |-
13
+ NTVmNDE0ZjRiODMwNmY1M2Y3ZjY4ZjI2ZTI4YTcwNWM1Mjc0ZGE5YTI3Y2U3
14
+ N2Q2ZTkzMzllZmJlMGYzZTk5ZjMyOTQyZTI5ZTU2MDkzMGMxYTIwMzE3MDlm
15
+ MTQ2NWRkMDkyMzdjN2VmZDlmNjdkNWU5YTkwODZhMWZkOWUyNTI=
data/Readme.md CHANGED
@@ -32,6 +32,9 @@ into your public folders:
32
32
 
33
33
  rails g jqr_helpers:install
34
34
 
35
+ Note that after copying, you will need to change the stylesheets from using
36
+ `assets/*` to using `/images/*` to reflect the old way of routing static images.
37
+
35
38
  ## Helper Methods ##
36
39
 
37
40
  Full documentation can be found [here](https://rawgithub.com/wishabi/jqr-helpers/master/doc/JqrHelpers/Helpers.html).
@@ -7,7 +7,7 @@
7
7
  top: -14px;
8
8
  right: -13px;
9
9
  cursor: pointer;
10
- background-image: url('/images/jqr-helpers/close.png');
10
+ background-image: url('/assets/jqr-helpers/close.png');
11
11
  width: 30px;
12
12
  height: 30px;
13
13
  }
@@ -25,7 +25,7 @@ form.ujs-ajax {
25
25
  }
26
26
 
27
27
  #ujs-dialog-throbber {
28
- background-image: url('/images/jqr-helpers/throbber_large.gif');
28
+ background-image: url('/assets/jqr-helpers/throbber_large.gif');
29
29
  position: fixed;
30
30
  top: 48%;
31
31
  left: 48%;
data/jqr-helpers.gemspec CHANGED
@@ -1,8 +1,8 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'jqr-helpers'
3
3
  s.require_paths = %w(. lib lib/jqr-helpers)
4
- s.version = '1.0.38'
5
- s.date = '2014-03-27'
4
+ s.version = '1.0.39'
5
+ s.date = '2014-04-08'
6
6
  s.summary = 'Helpers to print unobtrusive jQuery-UI tags.'
7
7
  s.description = <<-EOF
8
8
  This gem adds helper methods to create unobtrusive jQuery code. It outputs
@@ -1,6 +1,6 @@
1
1
  module JqrHelpers
2
2
  # @private
3
3
  module Rails
4
- VERSION = '1.0.38'
4
+ VERSION = '1.0.39'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,48 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jqr-helpers
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.0.38
4
+ version: 1.0.39
6
5
  platform: ruby
7
6
  authors:
8
7
  - Daniel Orner
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-03-27 00:00:00.000000000 Z
11
+ date: 2014-04-08 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- name: rails
16
- version_requirements: !ruby/object:Gem::Requirement
17
- none: false
14
+ requirement: !ruby/object:Gem::Requirement
18
15
  requirements:
19
16
  - - ! '>='
20
17
  - !ruby/object:Gem::Version
21
18
  version: '3.0'
22
- requirement: !ruby/object:Gem::Requirement
23
- none: false
19
+ prerelease: false
20
+ name: rails
21
+ version_requirements: !ruby/object:Gem::Requirement
24
22
  requirements:
25
23
  - - ! '>='
26
24
  - !ruby/object:Gem::Version
27
25
  version: '3.0'
28
26
  type: :runtime
29
- prerelease: false
30
27
  - !ruby/object:Gem::Dependency
31
- name: yard
32
- version_requirements: !ruby/object:Gem::Requirement
33
- none: false
28
+ requirement: !ruby/object:Gem::Requirement
34
29
  requirements:
35
30
  - - ! '>='
36
31
  - !ruby/object:Gem::Version
37
32
  version: '0'
38
- requirement: !ruby/object:Gem::Requirement
39
- none: false
33
+ prerelease: false
34
+ name: yard
35
+ version_requirements: !ruby/object:Gem::Requirement
40
36
  requirements:
41
37
  - - ! '>='
42
38
  - !ruby/object:Gem::Version
43
39
  version: '0'
44
40
  type: :development
45
- prerelease: false
46
41
  description: ! " This gem adds helper methods to create unobtrusive jQuery code.
47
42
  It outputs\n HTML, which is hooked by an included JavaScript file to provide
48
43
  the\n functionality. Helpers include links to Ajax requests to update elements
@@ -89,6 +84,7 @@ files:
89
84
  homepage: https://github.com/wishabi/jqr-helpers
90
85
  licenses:
91
86
  - MIT
87
+ metadata: {}
92
88
  post_install_message:
93
89
  rdoc_options: []
94
90
  require_paths:
@@ -96,13 +92,11 @@ require_paths:
96
92
  - lib
97
93
  - lib/jqr-helpers
98
94
  required_ruby_version: !ruby/object:Gem::Requirement
99
- none: false
100
95
  requirements:
101
96
  - - ! '>='
102
97
  - !ruby/object:Gem::Version
103
98
  version: '0'
104
99
  required_rubygems_version: !ruby/object:Gem::Requirement
105
- none: false
106
100
  requirements:
107
101
  - - ! '>='
108
102
  - !ruby/object:Gem::Version
@@ -110,9 +104,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
104
  requirements:
111
105
  - Optionally install will_paginate to allow Ajax pagination
112
106
  rubyforge_project:
113
- rubygems_version: 1.8.25
107
+ rubygems_version: 2.2.2
114
108
  signing_key:
115
- specification_version: 3
109
+ specification_version: 4
116
110
  summary: Helpers to print unobtrusive jQuery-UI tags.
117
111
  test_files: []
118
112
  has_rdoc: