date_time_picker 0.5.0
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/MIT-LICENSE +21 -0
- data/README +0 -0
- data/changelog +18 -0
- data/date_time_picker.gemspec +36 -0
- data/knownbugs +18 -0
- data/lib/date_time_picker/date_time_picker_helper.rb +2 -0
- data/lib/date_time_picker.rb +6 -0
- data/roadmap +17 -0
- data/spec/lib/date_time_picker_spec.rb +8 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +26 -0
- data/tasks/date_time_picker_tasks.rake +4 -0
- metadata +71 -0
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Copyright (c) 2011 Artem Rufanov
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21
|
+
|
data/README
ADDED
|
File without changes
|
data/changelog
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Introduction:
|
|
2
|
+
To see the latest list of the change log please visit the Change Log page at www.majoron.com.
|
|
3
|
+
|
|
4
|
+
Legend:
|
|
5
|
+
Follow notation is used at change log, roadmap and known bugs. Each bug begins with a version,
|
|
6
|
+
then follow category of the bug inside {}. It can be bug report, feature request and etc.
|
|
7
|
+
Then follow component inside []. After follow bug number at bug tracking system between // signs.
|
|
8
|
+
And then follow a short description of the bug.
|
|
9
|
+
|
|
10
|
+
Example:
|
|
11
|
+
For example bug: "1.0 { Feature Request } [ AntHill ] / 380 / STLport support required" means
|
|
12
|
+
that bug was created for 1.0 version of the AntHill component, bug is feature request with
|
|
13
|
+
380 number at bug tracking system. And bug requires STLPort support implementation.
|
|
14
|
+
|
|
15
|
+
Version 0.5
|
|
16
|
+
-----------
|
|
17
|
+
0.5 { Bug Report } [ DateTimePicker ] / X / Draft implementation
|
|
18
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{date_time_picker}
|
|
8
|
+
s.version = "0.5.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Artem Rufanov"]
|
|
12
|
+
s.date = %q{2011-12-25}
|
|
13
|
+
s.description = %q{A library allows to select date and time.}
|
|
14
|
+
s.email = %q{developers@majoron.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README"
|
|
17
|
+
]
|
|
18
|
+
s.files = Dir.glob('**/*') - Dir.glob('distrib/**/*') - Dir.glob('lib/api/**/*') - Dir.glob('doc/*.xpr')
|
|
19
|
+
s.homepage = %q{http://www.majoron.com/project/rbundle/date_time_picker}
|
|
20
|
+
s.require_paths = ["lib"]
|
|
21
|
+
s.rubyforge_project = %q{date_time_picker}
|
|
22
|
+
s.rubygems_version = %q{1.5.0}
|
|
23
|
+
s.summary = %q{A library allows to select date and time.}
|
|
24
|
+
s.test_files = Dir.glob('spec/**/*')
|
|
25
|
+
s.add_runtime_dependency 'nokogiri', '>= 1.4.5'
|
|
26
|
+
|
|
27
|
+
if s.respond_to? :specification_version then
|
|
28
|
+
s.specification_version = 3
|
|
29
|
+
|
|
30
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
31
|
+
else
|
|
32
|
+
end
|
|
33
|
+
else
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
data/knownbugs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Introduction:
|
|
2
|
+
To see the latest list of the known bugs please visit the Known bugs page at www.majoron.com.
|
|
3
|
+
|
|
4
|
+
Legend:
|
|
5
|
+
Follow notation is used at change log, roadmap and known bugs. Each bug begins with a version,
|
|
6
|
+
then follow category of the bug inside {}. It can be bug report, feature request and etc.
|
|
7
|
+
Then follow component inside []. After follow bug number at bug tracking system between // signs.
|
|
8
|
+
And then follow a short description of the bug.
|
|
9
|
+
|
|
10
|
+
Example:
|
|
11
|
+
For example bug: "1.0 { Feature Request } [ AntHill ] / 380 / STLport support required" means
|
|
12
|
+
that bug was created for 1.0 version of the AntHill component, bug is feature request with
|
|
13
|
+
380 number at bug tracking system. And bug requires STLPort support implementation.
|
|
14
|
+
|
|
15
|
+
Version 0.5
|
|
16
|
+
-----------
|
|
17
|
+
0.5 { Bug Report } [ DateTimePicker ] / X / There isn't known bugs
|
|
18
|
+
|
data/roadmap
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Introduction:
|
|
2
|
+
To see the latest list of the roadmap please visit the Roadmap page at www.majoron.com.
|
|
3
|
+
|
|
4
|
+
Legend:
|
|
5
|
+
Follow notation is used at change log, roadmap and known bugs. Each bug begins with a version,
|
|
6
|
+
then follow category of the bug inside {}. It can be bug report, feature request and etc.
|
|
7
|
+
Then follow component inside []. After follow bug number at bug tracking system between // signs.
|
|
8
|
+
And then follow a short description of the bug.
|
|
9
|
+
|
|
10
|
+
Example:
|
|
11
|
+
For example bug: "1.0 { Feature Request } [ AntHill ] / 380 / STLport support required" means
|
|
12
|
+
that bug was created for 1.0 version of the AntHill component, bug is feature request with
|
|
13
|
+
380 number at bug tracking system. And bug requires STLPort support implementation.
|
|
14
|
+
|
|
15
|
+
Version 0.5
|
|
16
|
+
-----------
|
|
17
|
+
0.5 { Feature Request } [ DateTimePicker ] / X / Add tests
|
data/spec/spec.opts
ADDED
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
$:.unshift File.dirname(__FILE__)
|
|
2
|
+
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
|
3
|
+
|
|
4
|
+
ENV["RAILS_ENV"] = "test"
|
|
5
|
+
require 'rubygems'
|
|
6
|
+
require 'bundler/setup'
|
|
7
|
+
require 'rspec'
|
|
8
|
+
require 'logger'
|
|
9
|
+
require 'rails'
|
|
10
|
+
require 'action_controller'
|
|
11
|
+
require 'date_time_picker'
|
|
12
|
+
|
|
13
|
+
module Rails
|
|
14
|
+
module VERSION
|
|
15
|
+
MAJOR = 3
|
|
16
|
+
end
|
|
17
|
+
end unless defined? Rails
|
|
18
|
+
|
|
19
|
+
# DateTimePicker.root = './'
|
|
20
|
+
RAILS_ROOT = './' unless defined?(RAILS_ROOT)
|
|
21
|
+
RAILS_ENV = 'test' unless defined?(RAILS_ENV)
|
|
22
|
+
|
|
23
|
+
RSpec.configure do |config|
|
|
24
|
+
config.mock_with :rspec
|
|
25
|
+
end
|
|
26
|
+
|
metadata
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: date_time_picker
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.5.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Artem Rufanov
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-12-25 00:00:00.000000000Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: nokogiri
|
|
16
|
+
requirement: &32694036 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 1.4.5
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *32694036
|
|
25
|
+
description: A library allows to select date and time.
|
|
26
|
+
email: developers@majoron.com
|
|
27
|
+
executables: []
|
|
28
|
+
extensions: []
|
|
29
|
+
extra_rdoc_files:
|
|
30
|
+
- README
|
|
31
|
+
files:
|
|
32
|
+
- changelog
|
|
33
|
+
- date_time_picker.gemspec
|
|
34
|
+
- knownbugs
|
|
35
|
+
- lib/date_time_picker/date_time_picker_helper.rb
|
|
36
|
+
- lib/date_time_picker.rb
|
|
37
|
+
- MIT-LICENSE
|
|
38
|
+
- README
|
|
39
|
+
- roadmap
|
|
40
|
+
- spec/lib/date_time_picker_spec.rb
|
|
41
|
+
- spec/spec.opts
|
|
42
|
+
- spec/spec_helper.rb
|
|
43
|
+
- tasks/date_time_picker_tasks.rake
|
|
44
|
+
homepage: http://www.majoron.com/project/rbundle/date_time_picker
|
|
45
|
+
licenses: []
|
|
46
|
+
post_install_message:
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
none: false
|
|
52
|
+
requirements:
|
|
53
|
+
- - ! '>='
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ! '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
requirements: []
|
|
63
|
+
rubyforge_project: date_time_picker
|
|
64
|
+
rubygems_version: 1.8.10
|
|
65
|
+
signing_key:
|
|
66
|
+
specification_version: 3
|
|
67
|
+
summary: A library allows to select date and time.
|
|
68
|
+
test_files:
|
|
69
|
+
- spec/lib/date_time_picker_spec.rb
|
|
70
|
+
- spec/spec.opts
|
|
71
|
+
- spec/spec_helper.rb
|