semanticgap_date_time_form 0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README +50 -0
- data/Rakefile +33 -0
- data/lib/semanticgap_date_time_form.rb +6 -0
- data/lib/semanticgap_date_time_form/active_record_mixin.rb +42 -0
- data/lib/semanticgap_date_time_form/form.rb +117 -0
- data/lib/semanticgap_date_time_form/form_builder_mixin.rb +26 -0
- data/lib/semanticgap_date_time_form/spec.rb +127 -0
- data/public/stylesheets/semanticgap_date_time_form.css +3 -0
- data/rails/init.rb +1 -0
- data/rails/install.rb +8 -0
- data/rails/uninstall.rb +1 -0
- data/semanticgap_date_time_form.gemspec +36 -0
- data/semanticgap_date_time_form.gemspec~ +39 -0
- data/spec/application.rb +2 -0
- data/spec/integration/post_spec.rb +36 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/unit/active_record_mixin_spec.rb +41 -0
- data/spec/unit/form_builder_mixin_spec.rb +98 -0
- data/spec/unit/form_spec.rb +583 -0
- data/tasks/semanticgap_datetime_fields_tasks.rake +4 -0
- metadata +86 -0
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: semanticgap_date_time_form
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: "0.1"
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- SemanticGap
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-05-08 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: nayutaya-active-form
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: An improved date time selector for Rails.
|
26
|
+
email: info@semanticgap.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- ./lib/semanticgap_date_time_form/active_record_mixin.rb
|
35
|
+
- ./lib/semanticgap_date_time_form/form.rb
|
36
|
+
- ./lib/semanticgap_date_time_form/form_builder_mixin.rb
|
37
|
+
- ./lib/semanticgap_date_time_form/spec.rb
|
38
|
+
- ./lib/semanticgap_date_time_form.rb
|
39
|
+
- ./MIT-LICENSE
|
40
|
+
- ./public/stylesheets/semanticgap_date_time_form.css
|
41
|
+
- ./rails/init.rb
|
42
|
+
- ./rails/install.rb
|
43
|
+
- ./rails/uninstall.rb
|
44
|
+
- ./Rakefile
|
45
|
+
- ./README
|
46
|
+
- ./semanticgap_date_time_form.gemspec
|
47
|
+
- ./semanticgap_date_time_form.gemspec~
|
48
|
+
- ./spec/application.rb
|
49
|
+
- ./spec/integration/post_spec.rb
|
50
|
+
- ./spec/spec_helper.rb
|
51
|
+
- ./spec/unit/active_record_mixin_spec.rb
|
52
|
+
- ./spec/unit/form_builder_mixin_spec.rb
|
53
|
+
- ./spec/unit/form_spec.rb
|
54
|
+
- ./tasks/semanticgap_datetime_fields_tasks.rake
|
55
|
+
has_rdoc: true
|
56
|
+
homepage: |
|
57
|
+
http://git.oss.semanticgap.com/ruby/semanticgap_date_time_form.git
|
58
|
+
|
59
|
+
licenses: []
|
60
|
+
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: "0"
|
71
|
+
version:
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: "0"
|
77
|
+
version:
|
78
|
+
requirements: []
|
79
|
+
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 1.3.5
|
82
|
+
signing_key:
|
83
|
+
specification_version: 3
|
84
|
+
summary: Improved date time selector
|
85
|
+
test_files: []
|
86
|
+
|