javascript_util_asset_pack 0.0.12 → 0.1.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.
data/README.rdoc CHANGED
@@ -10,14 +10,14 @@
10
10
 
11
11
  spinner (js version)
12
12
 
13
- window.Util.spinner.nextTo('#my_button');
13
+ window.Util.spinner.nextTo('#my_button');
14
14
  window.Util.spinner.nextTo('#my_button', 3, 4); // selector, top offset, left offset
15
15
  window.Util.spinner.hide();
16
-
16
+
17
17
  ajax form (coffee script version)
18
18
 
19
19
  jQuery ->
20
- new window.Util.AjaxForm '#my_form', ->
20
+ new window.Util.AjaxForm '#my_form', ->
21
21
  log "my_form submit success callback"
22
22
 
23
23
  == Install
@@ -29,7 +29,7 @@ Update the Gemfile in your rails project, add the following line
29
29
  Run the generator
30
30
 
31
31
  rails generate javascript_util_asset_pack
32
-
32
+
33
33
  does the following:
34
34
 
35
35
  * Copy spinner.gif to /app/assets/images
@@ -37,9 +37,13 @@ does the following:
37
37
  * Update application.html.erb adding image_tag for spinner.gif
38
38
  * Update application.js adding util_pack
39
39
 
40
+ == WARNING
41
+
42
+ * 0.0.10 and 0.0.11 are bad versions, use 0.0.12 or above
43
+
40
44
  == Coming Soon
41
45
 
42
- * configuration object
46
+ * configuration object
43
47
  * text in ajaxError overrides
44
48
  * spinner id override
45
49
 
@@ -52,3 +56,7 @@ does the following:
52
56
  The Unlicense (aka: public domain)
53
57
  http://unlicense.org
54
58
 
59
+ == Ruby Gems
60
+
61
+ * https://rubygems.org/gems/javascript_util_asset_pack
62
+
@@ -15,8 +15,8 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.rubyforge_project = "javascript_util_asset_pack"
17
17
 
18
- s.add_dependency 'rails', '~> 3.1'
19
- s.add_dependency 'javascript_safe_logger', '~> 0.0.4'
18
+ s.add_dependency 'rails', '>= 3.1'
19
+ s.add_dependency 'javascript_safe_logger', '>= 0.1.0'
20
20
 
21
21
  s.files = Dir.glob("{lib,vendor}/**/*") + %w(javascript_util_asset_pack.gemspec README.rdoc)
22
22
  s.require_paths = ["lib"]
@@ -1,3 +1,3 @@
1
1
  module JavascriptUtilAssetPack
2
- VERSION = "0.0.12"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
+ - 1
7
8
  - 0
8
- - 12
9
- version: 0.0.12
9
+ version: 0.1.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jesse House
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2012-12-01 00:00:00 -08:00
17
+ date: 2013-05-31 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -22,7 +22,7 @@ dependencies:
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 3
@@ -35,13 +35,13 @@ dependencies:
35
35
  prerelease: false
36
36
  requirement: &id002 !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  segments:
41
41
  - 0
42
+ - 1
42
43
  - 0
43
- - 4
44
- version: 0.0.4
44
+ version: 0.1.0
45
45
  type: :runtime
46
46
  version_requirements: *id002
47
47
  description: |+
@@ -57,14 +57,14 @@ description: |+
57
57
 
58
58
  spinner (js version)
59
59
 
60
- window.Util.spinner.nextTo('#my_button');
60
+ window.Util.spinner.nextTo('#my_button');
61
61
  window.Util.spinner.nextTo('#my_button', 3, 4); // selector, top offset, left offset
62
62
  window.Util.spinner.hide();
63
-
63
+
64
64
  ajax form (coffee script version)
65
65
 
66
66
  jQuery ->
67
- new window.Util.AjaxForm '#my_form', ->
67
+ new window.Util.AjaxForm '#my_form', ->
68
68
  log "my_form submit success callback"
69
69
 
70
70
  == Install
@@ -76,7 +76,7 @@ description: |+
76
76
  Run the generator
77
77
 
78
78
  rails generate javascript_util_asset_pack
79
-
79
+
80
80
  does the following:
81
81
 
82
82
  * Copy spinner.gif to /app/assets/images
@@ -84,9 +84,13 @@ description: |+
84
84
  * Update application.html.erb adding image_tag for spinner.gif
85
85
  * Update application.js adding util_pack
86
86
 
87
+ == WARNING
88
+
89
+ * 0.0.10 and 0.0.11 are bad versions, use 0.0.12 or above
90
+
87
91
  == Coming Soon
88
92
 
89
- * configuration object
93
+ * configuration object
90
94
  * text in ajaxError overrides
91
95
  * spinner id override
92
96
 
@@ -99,6 +103,10 @@ description: |+
99
103
  The Unlicense (aka: public domain)
100
104
  http://unlicense.org
101
105
 
106
+ == Ruby Gems
107
+
108
+ * https://rubygems.org/gems/javascript_util_asset_pack
109
+
102
110
  email:
103
111
  - jesse.house@gmail.com
104
112
  executables: []