ginkel-calendar_date_select 1.16.1.1 → 1.16.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ begin
12
12
  gemspec.email = "thilo@ginkel.com"
13
13
  gemspec.homepage = "http://github.com/ginkel/calendar_date_select"
14
14
  gemspec.authors = ["Thilo-Alexander Ginkel", "Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg"]
15
- #gemspec.rubyforge_project = "ginkel-calendar_date_select"
15
+ gemspec.rubyforge_project = "ginkel-calendar_date_select"
16
16
  end
17
17
  rescue LoadError
18
18
  puts "Jeweler not available. Install it with: sudo gem install jeweler"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.1.1
1
+ 1.16.1.2
@@ -4,12 +4,12 @@
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = %q{calendar_date_select}
8
- s.version = "1.16.1.1"
7
+ s.name = %q{ginkel-calendar_date_select}
8
+ s.version = "1.16.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thilo-Alexander Ginkel", "Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg"]
12
- s.date = %q{2010-06-11}
12
+ s.date = %q{2010-06-12}
13
13
  s.description = %q{Calendar date picker for rails; fork that allows disabling any date entry}
14
14
  s.email = %q{thilo@ginkel.com}
15
15
  s.extra_rdoc_files = [
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  "README.txt",
24
24
  "Rakefile",
25
25
  "VERSION",
26
- "calendar_date_select.gemspec",
26
+ "ginkel-calendar_date_select.gemspec",
27
27
  "init.rb",
28
28
  "js_test/functional/.tmp_cds_test.html",
29
29
  "js_test/functional/cds_test.html",
@@ -32,10 +32,10 @@ Gem::Specification.new do |s|
32
32
  "js_test/test.css",
33
33
  "js_test/unit/cds_helper_methods.html",
34
34
  "js_test/unittest.js",
35
- "lib/calendar_date_select.rb",
36
35
  "lib/calendar_date_select/calendar_date_select.rb",
37
36
  "lib/calendar_date_select/form_helpers.rb",
38
37
  "lib/calendar_date_select/includes_helper.rb",
38
+ "lib/ginkel-calendar_date_select.rb",
39
39
  "public/blank_iframe.html",
40
40
  "public/images/calendar_date_select/calendar.gif",
41
41
  "public/javascripts/calendar_date_select/calendar_date_select.js",
@@ -1,5 +1,5 @@
1
1
  module CalendarDateSelect
2
- VERSION = '1.16.1.1'
2
+ VERSION = '1.16.1.2'
3
3
 
4
4
  FORMATS = {
5
5
  :natural => {
@@ -1,4 +1,4 @@
1
- // CalendarDateSelect version 1.16.1.1 - a prototype based date picker
1
+ // CalendarDateSelect version 1.16.1.2 - a prototype based date picker
2
2
  // Questions, comments, bugs? - see the project page: http://code.google.com/p/calendardateselect
3
3
  if (typeof Prototype == 'undefined') alert("CalendarDateSelect Error: Prototype could not be found. Please make sure that your application's layout includes prototype.js (.g. <%= javascript_include_tag :defaults %>) *before* it includes calendar_date_select.js (.g. <%= calendar_date_select_includes %>).");
4
4
  if (Prototype.Version < "1.6") alert("Prototype 1.6.0 is required. If using earlier version of prototype, please use calendar_date_select version 1.8.3");
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ginkel-calendar_date_select
3
3
  version: !ruby/object:Gem::Version
4
- hash: 217
4
+ hash: 223
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 16
9
9
  - 1
10
- - 1
11
- version: 1.16.1.1
10
+ - 2
11
+ version: 1.16.1.2
12
12
  platform: ruby
13
13
  authors:
14
14
  - Thilo-Alexander Ginkel
@@ -20,7 +20,7 @@ autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
22
 
23
- date: 2010-06-11 00:00:00 +02:00
23
+ date: 2010-06-12 00:00:00 +02:00
24
24
  default_executable:
25
25
  dependencies: []
26
26
 
@@ -40,7 +40,7 @@ files:
40
40
  - README.txt
41
41
  - Rakefile
42
42
  - VERSION
43
- - calendar_date_select.gemspec
43
+ - ginkel-calendar_date_select.gemspec
44
44
  - init.rb
45
45
  - js_test/functional/.tmp_cds_test.html
46
46
  - js_test/functional/cds_test.html
@@ -49,10 +49,10 @@ files:
49
49
  - js_test/test.css
50
50
  - js_test/unit/cds_helper_methods.html
51
51
  - js_test/unittest.js
52
- - lib/calendar_date_select.rb
53
52
  - lib/calendar_date_select/calendar_date_select.rb
54
53
  - lib/calendar_date_select/form_helpers.rb
55
54
  - lib/calendar_date_select/includes_helper.rb
55
+ - lib/ginkel-calendar_date_select.rb
56
56
  - public/blank_iframe.html
57
57
  - public/images/calendar_date_select/calendar.gif
58
58
  - public/javascripts/calendar_date_select/calendar_date_select.js
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  version: "0"
119
119
  requirements: []
120
120
 
121
- rubyforge_project:
121
+ rubyforge_project: ginkel-calendar_date_select
122
122
  rubygems_version: 1.3.7
123
123
  signing_key:
124
124
  specification_version: 3