concerto_manykinds 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +13 -0
- data/README.md +13 -0
- data/Rakefile +34 -0
- data/app/assets/javascripts/concerto_manykinds/application.js +13 -0
- data/app/assets/javascripts/concerto_manykinds/manykinds.js +24 -0
- data/app/assets/stylesheets/concerto_manykinds/application.css +13 -0
- data/app/assets/stylesheets/concerto_manykinds/manykinds.css +4 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/concerto_manykinds/application_controller.rb +4 -0
- data/app/controllers/concerto_manykinds/manykinds_controller.rb +112 -0
- data/app/helpers/concerto_manykinds/application_helper.rb +4 -0
- data/app/helpers/concerto_manykinds/manykinds_helper.rb +4 -0
- data/app/models/concerto_manykinds/manykind.rb +35 -0
- data/app/views/concerto_manykinds/manykinds/index.html.erb +13 -0
- data/app/views/concerto_manykinds/templates/_details.html.erb +63 -0
- data/app/views/concerto_manykinds/templates/_item.html.erb +6 -0
- data/config/locales/en.yml +18 -0
- data/config/routes.rb +3 -0
- data/db/migrate/20140613205731_create_concerto_manykinds.rb +11 -0
- data/lib/concerto_manykinds/engine.rb +46 -0
- data/lib/concerto_manykinds/version.rb +3 -0
- data/lib/concerto_manykinds.rb +4 -0
- data/lib/tasks/concerto_manykinds_tasks.rake +4 -0
- data/test/concerto_template_scheduling_test.rb +7 -0
- 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/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -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 +23 -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 +29 -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 +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -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/fixtures/concerto_template_scheduling/schedules.yml +11 -0
- data/test/functional/concerto_template_scheduling/schedules_controller_test.rb +51 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/concerto_template_scheduling/schedule_test.rb +9 -0
- data/test/unit/helpers/concerto_template_scheduling/schedules_helper_test.rb +6 -0
- metadata +170 -0
metadata
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: concerto_manykinds
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Marvin Frederickson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-06-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.2.16
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.2.16
|
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: Display multiple types of content in the same template field in Concerto.
|
42
|
+
email:
|
43
|
+
- marvin.frederickson@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- LICENSE
|
49
|
+
- README.md
|
50
|
+
- Rakefile
|
51
|
+
- app/assets/javascripts/concerto_manykinds/application.js
|
52
|
+
- app/assets/javascripts/concerto_manykinds/manykinds.js
|
53
|
+
- app/assets/stylesheets/concerto_manykinds/application.css
|
54
|
+
- app/assets/stylesheets/concerto_manykinds/manykinds.css
|
55
|
+
- app/assets/stylesheets/scaffold.css
|
56
|
+
- app/controllers/concerto_manykinds/application_controller.rb
|
57
|
+
- app/controllers/concerto_manykinds/manykinds_controller.rb
|
58
|
+
- app/helpers/concerto_manykinds/application_helper.rb
|
59
|
+
- app/helpers/concerto_manykinds/manykinds_helper.rb
|
60
|
+
- app/models/concerto_manykinds/manykind.rb
|
61
|
+
- app/views/concerto_manykinds/manykinds/index.html.erb
|
62
|
+
- app/views/concerto_manykinds/templates/_details.html.erb
|
63
|
+
- app/views/concerto_manykinds/templates/_item.html.erb
|
64
|
+
- config/locales/en.yml
|
65
|
+
- config/routes.rb
|
66
|
+
- db/migrate/20140613205731_create_concerto_manykinds.rb
|
67
|
+
- lib/concerto_manykinds.rb
|
68
|
+
- lib/concerto_manykinds/engine.rb
|
69
|
+
- lib/concerto_manykinds/version.rb
|
70
|
+
- lib/tasks/concerto_manykinds_tasks.rake
|
71
|
+
- test/concerto_template_scheduling_test.rb
|
72
|
+
- test/dummy/README.rdoc
|
73
|
+
- test/dummy/Rakefile
|
74
|
+
- test/dummy/app/assets/javascripts/application.js
|
75
|
+
- test/dummy/app/assets/stylesheets/application.css
|
76
|
+
- test/dummy/app/controllers/application_controller.rb
|
77
|
+
- test/dummy/app/helpers/application_helper.rb
|
78
|
+
- test/dummy/app/views/layouts/application.html.erb
|
79
|
+
- test/dummy/bin/bundle
|
80
|
+
- test/dummy/bin/rails
|
81
|
+
- test/dummy/bin/rake
|
82
|
+
- test/dummy/config.ru
|
83
|
+
- test/dummy/config/application.rb
|
84
|
+
- test/dummy/config/boot.rb
|
85
|
+
- test/dummy/config/database.yml
|
86
|
+
- test/dummy/config/environment.rb
|
87
|
+
- test/dummy/config/environments/development.rb
|
88
|
+
- test/dummy/config/environments/production.rb
|
89
|
+
- test/dummy/config/environments/test.rb
|
90
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
91
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
92
|
+
- test/dummy/config/initializers/inflections.rb
|
93
|
+
- test/dummy/config/initializers/mime_types.rb
|
94
|
+
- test/dummy/config/initializers/secret_token.rb
|
95
|
+
- test/dummy/config/initializers/session_store.rb
|
96
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
97
|
+
- test/dummy/config/locales/en.yml
|
98
|
+
- test/dummy/config/routes.rb
|
99
|
+
- test/dummy/public/404.html
|
100
|
+
- test/dummy/public/422.html
|
101
|
+
- test/dummy/public/500.html
|
102
|
+
- test/dummy/public/favicon.ico
|
103
|
+
- test/fixtures/concerto_template_scheduling/schedules.yml
|
104
|
+
- test/functional/concerto_template_scheduling/schedules_controller_test.rb
|
105
|
+
- test/integration/navigation_test.rb
|
106
|
+
- test/test_helper.rb
|
107
|
+
- test/unit/concerto_template_scheduling/schedule_test.rb
|
108
|
+
- test/unit/helpers/concerto_template_scheduling/schedules_helper_test.rb
|
109
|
+
homepage: https://github.com/mfrederickson/concerto_manykinds
|
110
|
+
licenses: []
|
111
|
+
metadata: {}
|
112
|
+
post_install_message:
|
113
|
+
rdoc_options: []
|
114
|
+
require_paths:
|
115
|
+
- lib
|
116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
requirements: []
|
127
|
+
rubyforge_project:
|
128
|
+
rubygems_version: 2.2.1
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: Allow multiple kinds (content types) per template field
|
132
|
+
test_files:
|
133
|
+
- test/test_helper.rb
|
134
|
+
- test/fixtures/concerto_template_scheduling/schedules.yml
|
135
|
+
- test/concerto_template_scheduling_test.rb
|
136
|
+
- test/functional/concerto_template_scheduling/schedules_controller_test.rb
|
137
|
+
- test/integration/navigation_test.rb
|
138
|
+
- test/dummy/app/controllers/application_controller.rb
|
139
|
+
- test/dummy/app/assets/stylesheets/application.css
|
140
|
+
- test/dummy/app/assets/javascripts/application.js
|
141
|
+
- test/dummy/app/helpers/application_helper.rb
|
142
|
+
- test/dummy/app/views/layouts/application.html.erb
|
143
|
+
- test/dummy/README.rdoc
|
144
|
+
- test/dummy/Rakefile
|
145
|
+
- test/dummy/config.ru
|
146
|
+
- test/dummy/config/application.rb
|
147
|
+
- test/dummy/config/locales/en.yml
|
148
|
+
- test/dummy/config/initializers/inflections.rb
|
149
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
150
|
+
- test/dummy/config/initializers/mime_types.rb
|
151
|
+
- test/dummy/config/initializers/secret_token.rb
|
152
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
153
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
154
|
+
- test/dummy/config/initializers/session_store.rb
|
155
|
+
- test/dummy/config/database.yml
|
156
|
+
- test/dummy/config/environment.rb
|
157
|
+
- test/dummy/config/boot.rb
|
158
|
+
- test/dummy/config/environments/production.rb
|
159
|
+
- test/dummy/config/environments/test.rb
|
160
|
+
- test/dummy/config/environments/development.rb
|
161
|
+
- test/dummy/config/routes.rb
|
162
|
+
- test/dummy/public/404.html
|
163
|
+
- test/dummy/public/favicon.ico
|
164
|
+
- test/dummy/public/500.html
|
165
|
+
- test/dummy/public/422.html
|
166
|
+
- test/dummy/bin/rake
|
167
|
+
- test/dummy/bin/bundle
|
168
|
+
- test/dummy/bin/rails
|
169
|
+
- test/unit/concerto_template_scheduling/schedule_test.rb
|
170
|
+
- test/unit/helpers/concerto_template_scheduling/schedules_helper_test.rb
|