porras-livevalidation 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ pkg/
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.0.1
@@ -0,0 +1,56 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{livevalidation}
5
+ s.version = "0.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Sergio Gil"]
9
+ s.date = %q{2009-05-21}
10
+ s.description = %q{Easy client side validation for your ActiveRecord models}
11
+ s.email = %q{sgilperez@gmail.com}
12
+ s.extra_rdoc_files = [
13
+ "README"
14
+ ]
15
+ s.files = [
16
+ ".gitignore",
17
+ "README",
18
+ "Rakefile",
19
+ "VERSION",
20
+ "assets/javascripts/live_validation.js",
21
+ "assets/stylesheets/live_validation.css",
22
+ "install.rb",
23
+ "lib/form_helpers.rb",
24
+ "lib/live_validations.rb",
25
+ "livevalidation.gemspec",
26
+ "rails/init.rb",
27
+ "tasks/live_validation_tasks.rake",
28
+ "test/form_helpers_test.rb",
29
+ "test/live_validations_test.rb",
30
+ "test/resource.rb",
31
+ "test/test_helper.rb",
32
+ "uninstall.rb"
33
+ ]
34
+ s.has_rdoc = true
35
+ s.homepage = %q{http://github.com/porras/livevalidation}
36
+ s.rdoc_options = ["--charset=UTF-8"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.3.2}
39
+ s.summary = %q{Easy client side validation for your ActiveRecord models}
40
+ s.test_files = [
41
+ "test/form_helpers_test.rb",
42
+ "test/live_validations_test.rb",
43
+ "test/resource.rb",
44
+ "test/test_helper.rb"
45
+ ]
46
+
47
+ if s.respond_to? :specification_version then
48
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
+ else
53
+ end
54
+ else
55
+ end
56
+ end
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: porras-livevalidation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Gil
@@ -22,15 +22,17 @@ extensions: []
22
22
  extra_rdoc_files:
23
23
  - README
24
24
  files:
25
+ - .gitignore
25
26
  - README
26
27
  - Rakefile
27
28
  - VERSION
28
29
  - assets/javascripts/live_validation.js
29
30
  - assets/stylesheets/live_validation.css
30
- - init.rb
31
31
  - install.rb
32
32
  - lib/form_helpers.rb
33
33
  - lib/live_validations.rb
34
+ - livevalidation.gemspec
35
+ - rails/init.rb
34
36
  - tasks/live_validation_tasks.rake
35
37
  - test/form_helpers_test.rb
36
38
  - test/live_validations_test.rb