-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdisguise.gemspec
225 lines (220 loc) · 9.61 KB
/
disguise.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{disguise}
s.version = "3.0.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Justin Ball"]
s.date = %q{2010-09-16}
s.description = %q{Add themes to your Rails application to easily change the view layer and impress everyone you know}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"app/controllers/admin/disguise/domain_themes_controller.rb",
"app/controllers/admin/disguise/themes_controller.rb",
"app/models/domain_theme.rb",
"app/models/theme.rb",
"app/views/admin/themes/_theme.html.erb",
"app/views/admin/themes/edit.html.erb",
"app/views/admin/themes/no_themes.html.erb",
"config/locales/ar.yml",
"config/locales/bg.yml",
"config/locales/ca.yml",
"config/locales/cs.yml",
"config/locales/da.yml",
"config/locales/de.yml",
"config/locales/el.yml",
"config/locales/en.yml",
"config/locales/es.yml",
"config/locales/et.yml",
"config/locales/fa.yml",
"config/locales/fi.yml",
"config/locales/fr.yml",
"config/locales/gl.yml",
"config/locales/hi.yml",
"config/locales/hr.yml",
"config/locales/hu.yml",
"config/locales/id.yml",
"config/locales/it.yml",
"config/locales/iw.yml",
"config/locales/ja.yml",
"config/locales/ko.yml",
"config/locales/lt.yml",
"config/locales/lv.yml",
"config/locales/mt.yml",
"config/locales/nl.yml",
"config/locales/no.yml",
"config/locales/pl.yml",
"config/locales/pt-PT.yml",
"config/locales/pt.yml",
"config/locales/ro.yml",
"config/locales/ru.yml",
"config/locales/sk.yml",
"config/locales/sl.yml",
"config/locales/sq.yml",
"config/locales/sr.yml",
"config/locales/sv.yml",
"config/locales/th.yml",
"config/locales/tl.yml",
"config/locales/tr.yml",
"config/locales/uk.yml",
"config/locales/vi.yml",
"config/locales/zh-CN.yml",
"config/locales/zh-TW.yml",
"config/locales/zh.yml",
"config/routes.rb",
"db/migrate/20090530170040_create_themes.rb",
"db/migrate/20090606153236_create_domain_themes.rb",
"disguise.gemspec",
"lib/disguise.rb",
"lib/disguise/config.rb",
"lib/disguise/controllers/disguise_application.rb",
"lib/disguise/engine.rb",
"lib/generators/disguise/USAGE",
"lib/generators/disguise/theme_generator.rb",
"lib/generators/disguise/theme_templates/INSTALL",
"lib/generators/disguise/theme_templates/description.txt",
"lib/generators/disguise/theme_templates/locales/en.yml",
"lib/generators/disguise/theme_templates/preview.gif",
"lib/generators/disguise/theme_templates/stylesheets/styles.css",
"lib/generators/disguise/theme_templates/views/_footer.html.erb",
"lib/generators/disguise/theme_templates/views/_head.html.erb",
"lib/generators/disguise/theme_templates/views/_header.html.erb",
"lib/generators/disguise/theme_templates/views/default.html.erb",
"lib/tasks/diguise.rake",
"test/rails_test/.gitignore",
"test/rails_test/.rake_tasks",
"test/rails_test/Gemfile",
"test/rails_test/Gemfile.lock",
"test/rails_test/Rakefile",
"test/rails_test/app/controllers/admin/domain_themes_controller.rb",
"test/rails_test/app/controllers/admin/themes_controller.rb",
"test/rails_test/app/controllers/application_controller.rb",
"test/rails_test/app/controllers/default_controller.rb",
"test/rails_test/app/models/.keep",
"test/rails_test/app/models/user.rb",
"test/rails_test/app/views/default/index.html.erb",
"test/rails_test/app/views/layouts/default.html.erb",
"test/rails_test/config.ru",
"test/rails_test/config/application.rb",
"test/rails_test/config/boot.rb",
"test/rails_test/config/database.yml",
"test/rails_test/config/environment.rb",
"test/rails_test/config/environments/development.rb",
"test/rails_test/config/environments/production.rb",
"test/rails_test/config/environments/test.rb",
"test/rails_test/config/initializers/backtrace_silencers.rb",
"test/rails_test/config/initializers/disguise.rb",
"test/rails_test/config/initializers/inflections.rb",
"test/rails_test/config/initializers/mime_types.rb",
"test/rails_test/config/initializers/secret_token.rb",
"test/rails_test/config/initializers/session_store.rb",
"test/rails_test/config/routes.rb",
"test/rails_test/db/.keep",
"test/rails_test/db/migrate/20090530170040_create_themes.rb",
"test/rails_test/db/migrate/20090602041838_create_users.rb",
"test/rails_test/db/migrate/20090606153236_create_domain_themes.rb",
"test/rails_test/features/step_definitions/webrat_steps.rb",
"test/rails_test/features/support/env.rb",
"test/rails_test/public/.htaccess",
"test/rails_test/public/404.html",
"test/rails_test/public/422.html",
"test/rails_test/public/500.html",
"test/rails_test/public/dispatch.rb",
"test/rails_test/public/favicon.ico",
"test/rails_test/public/images/blue/preview.gif",
"test/rails_test/public/images/rails.png",
"test/rails_test/public/javascripts/application.js",
"test/rails_test/public/javascripts/controls.js",
"test/rails_test/public/javascripts/dragdrop.js",
"test/rails_test/public/javascripts/effects.js",
"test/rails_test/public/javascripts/prototype.js",
"test/rails_test/public/javascripts/rails.js",
"test/rails_test/public/robots.txt",
"test/rails_test/public/stylesheets/.gitkeep",
"test/rails_test/public/stylesheets/application.css",
"test/rails_test/script/rails",
"test/rails_test/test/factories.rb",
"test/rails_test/test/functional/.keep",
"test/rails_test/test/functional/admin/domain_themes_controller_test.rb",
"test/rails_test/test/functional/admin/themes_controller_test.rb",
"test/rails_test/test/functional/default_controller_test.rb",
"test/rails_test/test/integration/.keep",
"test/rails_test/test/test_helper.rb",
"test/rails_test/test/unit/.keep",
"test/rails_test/test/unit/domain_theme_test.rb",
"test/rails_test/test/unit/theme_test.rb",
"test/rails_test/themes/blue/description.txt",
"test/rails_test/themes/blue/locales/blue.yml",
"test/rails_test/themes/blue/locales/en.yml",
"test/rails_test/themes/blue/views/default/index.html.erb",
"test/rails_test/themes/blue/views/layouts/default.html.erb",
"test/rails_test/themes/blue/views/layouts/global/_footer.html.erb",
"test/rails_test/themes/blue/views/layouts/global/_head.html.erb",
"test/rails_test/themes/blue/views/layouts/global/_header.html.erb",
"test/rails_test/themes/red/description.txt",
"test/rails_test/themes/red/locales/en.yml",
"test/rails_test/themes/red/views/layouts/default.html.erb",
"test/rails_test/themes/red/views/layouts/global/_footer.html.erb",
"test/rails_test/themes/red/views/layouts/global/_head.html.erb",
"test/rails_test/themes/red/views/layouts/global/_header.html.erb"
]
s.homepage = %q{http://github.com/jbasdf/disguise}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{disguise}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Easy to use view theme system for Rails}
s.test_files = [
"test/rails_test/app/controllers/admin/domain_themes_controller.rb",
"test/rails_test/app/controllers/admin/themes_controller.rb",
"test/rails_test/app/controllers/application_controller.rb",
"test/rails_test/app/controllers/default_controller.rb",
"test/rails_test/app/models/user.rb",
"test/rails_test/config/application.rb",
"test/rails_test/config/boot.rb",
"test/rails_test/config/environment.rb",
"test/rails_test/config/environments/development.rb",
"test/rails_test/config/environments/production.rb",
"test/rails_test/config/environments/test.rb",
"test/rails_test/config/initializers/backtrace_silencers.rb",
"test/rails_test/config/initializers/disguise.rb",
"test/rails_test/config/initializers/inflections.rb",
"test/rails_test/config/initializers/mime_types.rb",
"test/rails_test/config/initializers/secret_token.rb",
"test/rails_test/config/initializers/session_store.rb",
"test/rails_test/config/routes.rb",
"test/rails_test/db/migrate/20090530170040_create_themes.rb",
"test/rails_test/db/migrate/20090602041838_create_users.rb",
"test/rails_test/db/migrate/20090606153236_create_domain_themes.rb",
"test/rails_test/features/step_definitions/webrat_steps.rb",
"test/rails_test/features/support/env.rb",
"test/rails_test/public/dispatch.rb",
"test/rails_test/test/factories.rb",
"test/rails_test/test/functional/admin/domain_themes_controller_test.rb",
"test/rails_test/test/functional/admin/themes_controller_test.rb",
"test/rails_test/test/functional/default_controller_test.rb",
"test/rails_test/test/test_helper.rb",
"test/rails_test/test/unit/domain_theme_test.rb",
"test/rails_test/test/unit/theme_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end