rsturim-simple_time_select 0.0.0 → 0.1.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/pkg/simple_time_select-0.0.0.gem +0 -0
- data/simple_time_select.gemspec +51 -0
- metadata +3 -1
|
Binary file
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
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{simple_time_select}
|
|
8
|
+
s.version = "0.1.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Anthony Amoyal"]
|
|
12
|
+
s.date = %q{2009-08-10}
|
|
13
|
+
s.description = %q{A time select component using only ONE select field}
|
|
14
|
+
s.email = %q{tonyamoyal@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
"CHANGELOG",
|
|
20
|
+
"MIT_LICENSE",
|
|
21
|
+
"README",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"about.yml",
|
|
25
|
+
"init.rb",
|
|
26
|
+
"lib/simple_time_select.rb",
|
|
27
|
+
"pkg/simple_time_select-0.0.0.gem",
|
|
28
|
+
"simple_time_select.gemspec",
|
|
29
|
+
"test/simple_time_select_test.rb",
|
|
30
|
+
"test/test_helper.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/rsturim/simple_time_select}
|
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
|
36
|
+
s.summary = %q{This simple plugin gives you that component and allows you to set minute intervals}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"test/simple_time_select_test.rb",
|
|
39
|
+
"test/test_helper.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
+
s.specification_version = 3
|
|
45
|
+
|
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
47
|
+
else
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
end
|
|
51
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsturim-simple_time_select
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthony Amoyal
|
|
@@ -30,6 +30,8 @@ files:
|
|
|
30
30
|
- about.yml
|
|
31
31
|
- init.rb
|
|
32
32
|
- lib/simple_time_select.rb
|
|
33
|
+
- pkg/simple_time_select-0.0.0.gem
|
|
34
|
+
- simple_time_select.gemspec
|
|
33
35
|
- test/simple_time_select_test.rb
|
|
34
36
|
- test/test_helper.rb
|
|
35
37
|
has_rdoc: false
|