date_select_separator 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/README.md +13 -10
- data/Rakefile +28 -1
- data/lib/date_select_separator/action_view_extension.rb +86 -0
- data/lib/date_select_separator/railtie.rb +9 -0
- data/lib/date_select_separator/version.rb +1 -1
- data/lib/date_select_separator.rb +4 -92
- data/test/date_select_separator_test.rb +3817 -319
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/samples_controller.rb +58 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/sample.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/samples/_form.html.erb +29 -0
- data/test/dummy/app/views/samples/edit.html.erb +6 -0
- data/test/dummy/app/views/samples/index.html.erb +31 -0
- data/test/dummy/app/views/samples/new.html.erb +5 -0
- data/test/dummy/app/views/samples/show.html.erb +19 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +24 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +31 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +218 -0
- data/test/dummy/config/locales/ja.yml +208 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140214065227_create_samples.rb +11 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1537 -0
- data/test/dummy/log/test.log +435691 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/restart.txt +0 -0
- data/test/test_helper.rb +12 -0
- metadata +134 -17
- data/.gitignore +0 -17
- data/Gemfile +0 -4
- data/LICENSE.txt +0 -22
- data/date_select_separator.gemspec +0 -22
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/404.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/422.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/500.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
54
|
+
</div>
|
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
56
|
+
</body>
|
|
57
|
+
</html>
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
|
|
3
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
4
|
+
require "rails/test_help"
|
|
5
|
+
|
|
6
|
+
Rails.backtrace_cleaner.remove_silencers!
|
|
7
|
+
|
|
8
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
9
|
+
|
|
10
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
|
11
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
|
12
|
+
end
|
metadata
CHANGED
|
@@ -1,48 +1,112 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: date_select_separator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rono23
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 4.0.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
27
|
-
|
|
26
|
+
version: 4.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sqlite3
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: Add separators to data_select on Rails.
|
|
28
42
|
email:
|
|
29
43
|
- rono23@gmail.com
|
|
30
44
|
executables: []
|
|
31
45
|
extensions: []
|
|
32
46
|
extra_rdoc_files: []
|
|
33
47
|
files:
|
|
34
|
-
- .gitignore
|
|
35
|
-
- Gemfile
|
|
36
|
-
- LICENSE.txt
|
|
37
48
|
- README.md
|
|
38
49
|
- Rakefile
|
|
39
|
-
- date_select_separator.gemspec
|
|
40
50
|
- lib/date_select_separator.rb
|
|
51
|
+
- lib/date_select_separator/action_view_extension.rb
|
|
52
|
+
- lib/date_select_separator/railtie.rb
|
|
41
53
|
- lib/date_select_separator/version.rb
|
|
42
54
|
- test/date_select_separator_test.rb
|
|
55
|
+
- test/dummy/README.rdoc
|
|
56
|
+
- test/dummy/Rakefile
|
|
57
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
58
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
59
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
60
|
+
- test/dummy/app/controllers/samples_controller.rb
|
|
61
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
62
|
+
- test/dummy/app/models/sample.rb
|
|
63
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
64
|
+
- test/dummy/app/views/samples/_form.html.erb
|
|
65
|
+
- test/dummy/app/views/samples/edit.html.erb
|
|
66
|
+
- test/dummy/app/views/samples/index.html.erb
|
|
67
|
+
- test/dummy/app/views/samples/new.html.erb
|
|
68
|
+
- test/dummy/app/views/samples/show.html.erb
|
|
69
|
+
- test/dummy/bin/bundle
|
|
70
|
+
- test/dummy/bin/rails
|
|
71
|
+
- test/dummy/bin/rake
|
|
72
|
+
- test/dummy/config.ru
|
|
73
|
+
- test/dummy/config/application.rb
|
|
74
|
+
- test/dummy/config/boot.rb
|
|
75
|
+
- test/dummy/config/database.yml
|
|
76
|
+
- test/dummy/config/environment.rb
|
|
77
|
+
- test/dummy/config/environments/development.rb
|
|
78
|
+
- test/dummy/config/environments/production.rb
|
|
79
|
+
- test/dummy/config/environments/test.rb
|
|
80
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
81
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
82
|
+
- test/dummy/config/initializers/inflections.rb
|
|
83
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
84
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
85
|
+
- test/dummy/config/initializers/session_store.rb
|
|
86
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
87
|
+
- test/dummy/config/locales/en.yml
|
|
88
|
+
- test/dummy/config/locales/ja.yml
|
|
89
|
+
- test/dummy/config/routes.rb
|
|
90
|
+
- test/dummy/db/development.sqlite3
|
|
91
|
+
- test/dummy/db/migrate/20140214065227_create_samples.rb
|
|
92
|
+
- test/dummy/db/schema.rb
|
|
93
|
+
- test/dummy/db/test.sqlite3
|
|
94
|
+
- test/dummy/log/development.log
|
|
95
|
+
- test/dummy/log/test.log
|
|
96
|
+
- test/dummy/public/404.html
|
|
97
|
+
- test/dummy/public/422.html
|
|
98
|
+
- test/dummy/public/500.html
|
|
99
|
+
- test/dummy/public/favicon.ico
|
|
100
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
101
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
|
102
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
103
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
|
104
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
105
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
|
106
|
+
- test/dummy/tmp/restart.txt
|
|
107
|
+
- test/test_helper.rb
|
|
43
108
|
homepage: https://github.com/rono23/date_select_separator
|
|
44
|
-
licenses:
|
|
45
|
-
- MIT
|
|
109
|
+
licenses: []
|
|
46
110
|
metadata: {}
|
|
47
111
|
post_install_message:
|
|
48
112
|
rdoc_options: []
|
|
@@ -50,19 +114,72 @@ require_paths:
|
|
|
50
114
|
- lib
|
|
51
115
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
116
|
requirements:
|
|
53
|
-
- -
|
|
117
|
+
- - ">="
|
|
54
118
|
- !ruby/object:Gem::Version
|
|
55
119
|
version: '0'
|
|
56
120
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
121
|
requirements:
|
|
58
|
-
- -
|
|
122
|
+
- - ">="
|
|
59
123
|
- !ruby/object:Gem::Version
|
|
60
124
|
version: '0'
|
|
61
125
|
requirements: []
|
|
62
126
|
rubyforge_project:
|
|
63
|
-
rubygems_version: 2.0
|
|
127
|
+
rubygems_version: 2.2.0
|
|
64
128
|
signing_key:
|
|
65
129
|
specification_version: 4
|
|
66
|
-
summary: Add separators to data_select on Rails
|
|
130
|
+
summary: Add separators to data_select on Rails.
|
|
67
131
|
test_files:
|
|
68
132
|
- test/date_select_separator_test.rb
|
|
133
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
134
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
135
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
136
|
+
- test/dummy/app/controllers/samples_controller.rb
|
|
137
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
138
|
+
- test/dummy/app/models/sample.rb
|
|
139
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
140
|
+
- test/dummy/app/views/samples/_form.html.erb
|
|
141
|
+
- test/dummy/app/views/samples/edit.html.erb
|
|
142
|
+
- test/dummy/app/views/samples/index.html.erb
|
|
143
|
+
- test/dummy/app/views/samples/new.html.erb
|
|
144
|
+
- test/dummy/app/views/samples/show.html.erb
|
|
145
|
+
- test/dummy/bin/bundle
|
|
146
|
+
- test/dummy/bin/rails
|
|
147
|
+
- test/dummy/bin/rake
|
|
148
|
+
- test/dummy/config/application.rb
|
|
149
|
+
- test/dummy/config/boot.rb
|
|
150
|
+
- test/dummy/config/database.yml
|
|
151
|
+
- test/dummy/config/environment.rb
|
|
152
|
+
- test/dummy/config/environments/development.rb
|
|
153
|
+
- test/dummy/config/environments/production.rb
|
|
154
|
+
- test/dummy/config/environments/test.rb
|
|
155
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
156
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
157
|
+
- test/dummy/config/initializers/inflections.rb
|
|
158
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
159
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
160
|
+
- test/dummy/config/initializers/session_store.rb
|
|
161
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
162
|
+
- test/dummy/config/locales/en.yml
|
|
163
|
+
- test/dummy/config/locales/ja.yml
|
|
164
|
+
- test/dummy/config/routes.rb
|
|
165
|
+
- test/dummy/config.ru
|
|
166
|
+
- test/dummy/db/development.sqlite3
|
|
167
|
+
- test/dummy/db/migrate/20140214065227_create_samples.rb
|
|
168
|
+
- test/dummy/db/schema.rb
|
|
169
|
+
- test/dummy/db/test.sqlite3
|
|
170
|
+
- test/dummy/log/development.log
|
|
171
|
+
- test/dummy/log/test.log
|
|
172
|
+
- test/dummy/public/404.html
|
|
173
|
+
- test/dummy/public/422.html
|
|
174
|
+
- test/dummy/public/500.html
|
|
175
|
+
- test/dummy/public/favicon.ico
|
|
176
|
+
- test/dummy/Rakefile
|
|
177
|
+
- test/dummy/README.rdoc
|
|
178
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
179
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
|
180
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
181
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
|
182
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
183
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
|
184
|
+
- test/dummy/tmp/restart.txt
|
|
185
|
+
- test/test_helper.rb
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/LICENSE.txt
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2013 rono23
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
-
a copy of this software and associated documentation files (the
|
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
-
the following conditions:
|
|
12
|
-
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
|
14
|
-
included in all copies or substantial portions of the Software.
|
|
15
|
-
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'date_select_separator/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "date_select_separator"
|
|
8
|
-
spec.version = DateSelectSeparator::VERSION
|
|
9
|
-
spec.authors = ["rono23"]
|
|
10
|
-
spec.email = ["rono23@gmail.com"]
|
|
11
|
-
spec.description = %q{Add separators to data_select on Rails}
|
|
12
|
-
spec.summary = spec.description
|
|
13
|
-
spec.homepage = "https://github.com/rono23/date_select_separator"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
|
|
16
|
-
spec.files = `git ls-files`.split($/)
|
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_dependency "rails", ">= 3.2.12"
|
|
22
|
-
end
|