muck-engine 0.4.3 → 0.4.4

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.3
1
+ 0.4.4
@@ -89,6 +89,10 @@ Factory.define :access_code do |f|
89
89
  f.use_limit 1
90
90
  end
91
91
 
92
+ Factory.define :access_code_request do |f|
93
+ f.email { Factory.next(:email) }
94
+ end
95
+
92
96
  Factory.define :activity do |f|
93
97
  f.item {|a| a.association(:user)}
94
98
  f.template ''
data/muck-engine.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-engine}
8
- s.version = "0.4.3"
8
+ s.version = "0.4.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin"]
12
- s.date = %q{2010-02-04}
12
+ s.date = %q{2010-02-08}
13
13
  s.description = %q{The base engine for the muck system. Contains common tables, custom for, css and javascript.}
14
14
  s.email = %q{justin@tatemae.com}
15
15
  s.extra_rdoc_files = [
@@ -80,4 +80,12 @@ jQuery(document).ready(function() {
80
80
  return false;
81
81
  });
82
82
 
83
+ jQuery(document).ready(function() {
84
+ jQuery('.waiting').hide();
85
+ jQuery(".wait-button").click(function() {
86
+ jQuery('.waiting').show();
87
+ jQuery(this).hide();
88
+ });
89
+ });
90
+
83
91
  });
@@ -80,4 +80,12 @@ jQuery(document).ready(function() {
80
80
  return false;
81
81
  });
82
82
 
83
+ jQuery(document).ready(function() {
84
+ jQuery('.waiting').hide();
85
+ jQuery(".wait-button").click(function() {
86
+ jQuery('.waiting').show();
87
+ jQuery(this).hide();
88
+ });
89
+ });
90
+
83
91
  });
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Ball
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2010-02-04 00:00:00 -07:00
13
+ date: 2010-02-08 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency