thin_man 0.9.0 → 0.9.1
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 +4 -4
- data/app/assets/javascripts/thin_man.js +9 -1
- data/lib/thin_man/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: ba58c7dc4c267e1026fa07fb1b8a2b78d9fd8329
|
4
|
+
data.tar.gz: c986f33ef82b38170cac0de6db7d6b8e8da1229a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2d429513b7c0d7628ed60a39e7e2d9b27f1f58268ff46c1057bf34a39cf3afa44c4d121dab06da1c83a2055044537ac51dacbe237185244d48e3bd644b5af47
|
7
|
+
data.tar.gz: 0cc4163c458a57dd5b93c4cfbab51db4c106092af765274ac560044d698e207b28f0a1acc48bd934c9f9b710407c22a5ab51af4e909d3344e87ed33618b5130f
|
@@ -1,3 +1,11 @@
|
|
1
|
+
var UUID = Class.extend({
|
2
|
+
init: function(){
|
3
|
+
this.value = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
4
|
+
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
5
|
+
return v.toString(16);
|
6
|
+
});
|
7
|
+
}
|
8
|
+
})
|
1
9
|
var initThinMan = function(){
|
2
10
|
thin_man = {
|
3
11
|
getSubClass: function(sub_class_name,parent_class){
|
@@ -484,7 +492,7 @@ var initThinMan = function(){
|
|
484
492
|
|
485
493
|
if(typeof window.any_time_manager === "undefined" && typeof window.loading_any_time_manager === "undefined"){
|
486
494
|
window.loading_any_time_manager = true;
|
487
|
-
$.getScript("https://cdn.rawgit.com/edraut/anytime_manager/
|
495
|
+
$.getScript("https://cdn.rawgit.com/edraut/anytime_manager/51dd4568a18599ff5e5f864417e10aa9376c0a1b/anytime_manager.js",function(){
|
488
496
|
window.loading_any_time_manager = false
|
489
497
|
thin_man.loadClasses();
|
490
498
|
});
|
data/lib/thin_man/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thin_man
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Draut, Adam Bialek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
version: '0'
|
113
113
|
requirements: []
|
114
114
|
rubyforge_project:
|
115
|
-
rubygems_version: 2.4.
|
115
|
+
rubygems_version: 2.4.6
|
116
116
|
signing_key:
|
117
117
|
specification_version: 4
|
118
118
|
summary: A Rails library that makes web apps lively while keeping all the logic on
|