lucy_cms 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -15,10 +15,6 @@ begin
15
15
  gem.description = ''
16
16
  gem.email = 'lucy@lucysoft.com'
17
17
  gem.authors = ['Lucysoft']
18
- gem.add_dependency('rails', '>=3.0.3')
19
- gem.add_dependency('active_link_to', '>=0.0.6')
20
- gem.add_dependency('paperclip', '>=2.3.8')
21
- gem.add_dependency('net-ldap', '>=0.1.1')
22
18
  end
23
19
  Jeweler::GemcutterTasks.new
24
20
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -18,13 +18,13 @@ class CmsGenerator < Rails::Generators::Base
18
18
  end
19
19
 
20
20
  def generate_initialization
21
- copy_file 'config/initializers/comfortable_mexican_sofa.rb', 'config/initializers/comfortable_mexican_sofa.rb'
21
+ copy_file 'config/initializers/LucyCMS.rb', 'config/initializers/LucyCMS.rb'
22
22
  end
23
23
 
24
24
  def generate_public_assets
25
- directory 'public/stylesheets/comfortable_mexican_sofa', 'public/stylesheets/comfortable_mexican_sofa'
26
- directory 'public/javascripts/comfortable_mexican_sofa', 'public/javascripts/comfortable_mexican_sofa'
27
- directory 'public/images/comfortable_mexican_sofa', 'public/images/comfortable_mexican_sofa'
25
+ directory 'public/stylesheets/LucyCMS', 'public/stylesheets/LucyCMS'
26
+ directory 'public/javascripts/LucyCMS', 'public/javascripts/LucyCMS'
27
+ directory 'public/images/LucyCMS', 'public/images/LucyCMS'
28
28
  end
29
29
 
30
30
  def generate_cms_seeds
@@ -41,4 +41,4 @@ class CmsGenerator < Rails::Generators::Base
41
41
  "#{orm.to_s.camelize}::Generators::Base".constantize.next_migration_number(dirname)
42
42
  end
43
43
 
44
- end
44
+ end
data/lucy_cms.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{lucy_cms}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Lucysoft"]
@@ -16,8 +16,254 @@ Gem::Specification.new do |s|
16
16
  "LICENSE",
17
17
  "README.md"
18
18
  ]
19
+ s.files = [
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "app/controllers/application_controller.rb",
27
+ "app/controllers/cms_admin/base_controller.rb",
28
+ "app/controllers/cms_admin/layouts_controller.rb",
29
+ "app/controllers/cms_admin/pages_controller.rb",
30
+ "app/controllers/cms_admin/sessions_controller.rb",
31
+ "app/controllers/cms_admin/sites_controller.rb",
32
+ "app/controllers/cms_admin/snippets_controller.rb",
33
+ "app/controllers/cms_admin/upload_dirs_controller.rb",
34
+ "app/controllers/cms_admin/users_controller.rb",
35
+ "app/controllers/cms_content_controller.rb",
36
+ "app/models/cms_block.rb",
37
+ "app/models/cms_layout.rb",
38
+ "app/models/cms_page.rb",
39
+ "app/models/cms_site.rb",
40
+ "app/models/cms_snippet.rb",
41
+ "app/models/cms_upload.rb",
42
+ "app/models/cms_upload_dir.rb",
43
+ "app/models/cms_user.rb",
44
+ "app/views/cms_admin/layouts/_form.html.erb",
45
+ "app/views/cms_admin/layouts/_index_branch.html.erb",
46
+ "app/views/cms_admin/layouts/edit.html.erb",
47
+ "app/views/cms_admin/layouts/index.html.erb",
48
+ "app/views/cms_admin/layouts/new.html.erb",
49
+ "app/views/cms_admin/pages/_form.html.erb",
50
+ "app/views/cms_admin/pages/_form_blocks.html.erb",
51
+ "app/views/cms_admin/pages/_index_branch.html.erb",
52
+ "app/views/cms_admin/pages/edit.html.erb",
53
+ "app/views/cms_admin/pages/form_blocks.js.erb",
54
+ "app/views/cms_admin/pages/index.html.erb",
55
+ "app/views/cms_admin/pages/new.html.erb",
56
+ "app/views/cms_admin/pages/toggle_branch.js.erb",
57
+ "app/views/cms_admin/sessions/new.html.erb",
58
+ "app/views/cms_admin/sites/_form.html.erb",
59
+ "app/views/cms_admin/sites/edit.html.erb",
60
+ "app/views/cms_admin/sites/new.html.erb",
61
+ "app/views/cms_admin/sites/setup.html.erb",
62
+ "app/views/cms_admin/snippets/_form.html.erb",
63
+ "app/views/cms_admin/snippets/edit.html.erb",
64
+ "app/views/cms_admin/snippets/index.html.erb",
65
+ "app/views/cms_admin/snippets/new.html.erb",
66
+ "app/views/cms_admin/upload_dirs/_file.html.erb",
67
+ "app/views/cms_admin/upload_dirs/_form.html.erb",
68
+ "app/views/cms_admin/upload_dirs/conflict.html.erb",
69
+ "app/views/cms_admin/upload_dirs/index.html.erb",
70
+ "app/views/cms_admin/upload_dirs/new.html.erb",
71
+ "app/views/cms_admin/upload_dirs/show.html.erb",
72
+ "app/views/cms_admin/upload_dirs/uploads_destroy.js.erb",
73
+ "app/views/cms_admin/users/_form.html.erb",
74
+ "app/views/cms_admin/users/_index_branch.html.erb",
75
+ "app/views/cms_admin/users/change_password.html.erb",
76
+ "app/views/cms_admin/users/edit.html.erb",
77
+ "app/views/cms_admin/users/index.html.erb",
78
+ "app/views/cms_admin/users/new.html.erb",
79
+ "app/views/layouts/cms_admin.html.erb",
80
+ "config.ru",
81
+ "config/application.rb",
82
+ "config/boot.rb",
83
+ "config/database.yml",
84
+ "config/environment.rb",
85
+ "config/environments/development.rb",
86
+ "config/environments/production.rb",
87
+ "config/environments/test.rb",
88
+ "config/initializers/LucyCMS.rb",
89
+ "config/initializers/mime_types.rb",
90
+ "config/locales/en.yml",
91
+ "config/routes.rb",
92
+ "db/cms_seeds/example.local/layouts/default.yml",
93
+ "db/cms_seeds/example.local/layouts/nested.yml",
94
+ "db/cms_seeds/example.local/pages/child.yml",
95
+ "db/cms_seeds/example.local/pages/child/subchild.yml",
96
+ "db/cms_seeds/example.local/pages/index.yml",
97
+ "db/cms_seeds/example.local/snippets/example.yml",
98
+ "db/migrate/01_create_cms.rb",
99
+ "db/seeds.rb",
100
+ "lib/LucyCMS.rb",
101
+ "lib/LucyCMS/acts_as_tree.rb",
102
+ "lib/LucyCMS/cms_tag.rb",
103
+ "lib/LucyCMS/cms_tag/field_datetime.rb",
104
+ "lib/LucyCMS/cms_tag/field_integer.rb",
105
+ "lib/LucyCMS/cms_tag/field_string.rb",
106
+ "lib/LucyCMS/cms_tag/field_text.rb",
107
+ "lib/LucyCMS/cms_tag/helper.rb",
108
+ "lib/LucyCMS/cms_tag/page_datetime.rb",
109
+ "lib/LucyCMS/cms_tag/page_integer.rb",
110
+ "lib/LucyCMS/cms_tag/page_rich_text.rb",
111
+ "lib/LucyCMS/cms_tag/page_string.rb",
112
+ "lib/LucyCMS/cms_tag/page_text.rb",
113
+ "lib/LucyCMS/cms_tag/partial.rb",
114
+ "lib/LucyCMS/cms_tag/snippet.rb",
115
+ "lib/LucyCMS/configuration.rb",
116
+ "lib/LucyCMS/controller_methods.rb",
117
+ "lib/LucyCMS/engine.rb",
118
+ "lib/LucyCMS/form_builder.rb",
119
+ "lib/LucyCMS/rails_extensions.rb",
120
+ "lib/LucyCMS/site_form_builder.rb",
121
+ "lib/LucyCMS/view_hooks.rb",
122
+ "lib/LucyCMS/view_methods.rb",
123
+ "lib/generators/README",
124
+ "lib/generators/cms_generator.rb",
125
+ "lib/tasks/LucyCMS.rake",
126
+ "lucy_cms.gemspec",
127
+ "public/404.html",
128
+ "public/422.html",
129
+ "public/500.html",
130
+ "public/favicon.ico",
131
+ "public/images/LucyCMS/arrow_bottom.gif",
132
+ "public/images/LucyCMS/arrow_right.gif",
133
+ "public/images/LucyCMS/icon_folder.png",
134
+ "public/images/LucyCMS/icon_layout.gif",
135
+ "public/images/LucyCMS/icon_move.gif",
136
+ "public/images/LucyCMS/icon_regular.gif",
137
+ "public/images/LucyCMS/icon_snippet.gif",
138
+ "public/images/LucyCMS/icon_upload.png",
139
+ "public/images/LucyCMS/icon_user.jpg",
140
+ "public/javascripts/LucyCMS/cms.js",
141
+ "public/javascripts/LucyCMS/codemirror/codemirror.css",
142
+ "public/javascripts/LucyCMS/codemirror/codemirror.js",
143
+ "public/javascripts/LucyCMS/codemirror/codemirror_base.js",
144
+ "public/javascripts/LucyCMS/codemirror/parse_css.js",
145
+ "public/javascripts/LucyCMS/codemirror/parse_html_mixed.js",
146
+ "public/javascripts/LucyCMS/codemirror/parse_js.js",
147
+ "public/javascripts/LucyCMS/codemirror/parse_xml.js",
148
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png",
149
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png",
150
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png",
151
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png",
152
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png",
153
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png",
154
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png",
155
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
156
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-icons_222222_256x240.png",
157
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-icons_2e83ff_256x240.png",
158
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-icons_454545_256x240.png",
159
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-icons_888888_256x240.png",
160
+ "public/javascripts/LucyCMS/jquery-ui/images/ui-icons_cd0a0a_256x240.png",
161
+ "public/javascripts/LucyCMS/jquery-ui/jquery-ui.css",
162
+ "public/javascripts/LucyCMS/jquery-ui/jquery-ui.js",
163
+ "public/javascripts/LucyCMS/jquery.js",
164
+ "public/javascripts/LucyCMS/plupload/plupload.full.min.js",
165
+ "public/javascripts/LucyCMS/plupload/plupload.html5.min.js",
166
+ "public/javascripts/LucyCMS/plupload/plupload.min.js",
167
+ "public/javascripts/LucyCMS/rails.js",
168
+ "public/javascripts/LucyCMS/tiny_mce/jquery.tinymce.js",
169
+ "public/javascripts/LucyCMS/tiny_mce/langs/en.js",
170
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/about.htm",
171
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/anchor.htm",
172
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/charmap.htm",
173
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/color_picker.htm",
174
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/editor_template.js",
175
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/image.htm",
176
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/img/colorpicker.jpg",
177
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/img/icons.gif",
178
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/about.js",
179
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/anchor.js",
180
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/charmap.js",
181
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/color_picker.js",
182
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/image.js",
183
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/link.js",
184
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/js/source_editor.js",
185
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/langs/en.js",
186
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/langs/en_dlg.js",
187
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/link.htm",
188
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/content.css",
189
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/dialog.css",
190
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/buttons.png",
191
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/items.gif",
192
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif",
193
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/menu_check.gif",
194
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/progress.gif",
195
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/img/tabs.gif",
196
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/skins/default/ui.css",
197
+ "public/javascripts/LucyCMS/tiny_mce/themes/advanced/source_editor.htm",
198
+ "public/javascripts/LucyCMS/tiny_mce/tiny_mce.js",
199
+ "public/javascripts/LucyCMS/tiny_mce/tiny_mce_popup.js",
200
+ "public/robots.txt",
201
+ "public/stylesheets/LucyCMS/content.css",
202
+ "public/stylesheets/LucyCMS/form.css",
203
+ "public/stylesheets/LucyCMS/reset.css",
204
+ "public/stylesheets/LucyCMS/site_form.css",
205
+ "public/stylesheets/LucyCMS/structure.css",
206
+ "public/stylesheets/LucyCMS/typography.css",
207
+ "script/rails",
208
+ "test/cms_seeds/test.host/layouts/broken.yml",
209
+ "test/cms_seeds/test.host/layouts/default.yml",
210
+ "test/cms_seeds/test.host/layouts/nested.yml",
211
+ "test/cms_seeds/test.host/pages/broken.yml",
212
+ "test/cms_seeds/test.host/pages/child.yml",
213
+ "test/cms_seeds/test.host/pages/child/subchild.yml",
214
+ "test/cms_seeds/test.host/pages/index.yml",
215
+ "test/cms_seeds/test.host/snippets/broken.yml",
216
+ "test/cms_seeds/test.host/snippets/default.yml",
217
+ "test/fixtures/cms_blocks.yml",
218
+ "test/fixtures/cms_layouts.yml",
219
+ "test/fixtures/cms_pages.yml",
220
+ "test/fixtures/cms_sites.yml",
221
+ "test/fixtures/cms_snippets.yml",
222
+ "test/fixtures/cms_upload_dirs.yml",
223
+ "test/fixtures/cms_uploads.yml",
224
+ "test/fixtures/cms_users.yml",
225
+ "test/fixtures/files/invalid_file.gif",
226
+ "test/fixtures/files/valid_image.jpg",
227
+ "test/fixtures/views/_nav_hook.html.erb",
228
+ "test/fixtures/views/_nav_hook_2.html.erb",
229
+ "test/functional/cms_admin/layouts_controller_test.rb",
230
+ "test/functional/cms_admin/pages_controller_test.rb",
231
+ "test/functional/cms_admin/sites_controller_test.rb",
232
+ "test/functional/cms_admin/snippets_controller_test.rb",
233
+ "test/functional/cms_admin/uploads_controller_test.rb",
234
+ "test/functional/cms_content_controller_test.rb",
235
+ "test/integration/rake_tasks_test.rb",
236
+ "test/integration/render_cms_seed_test.rb",
237
+ "test/integration/render_cms_test.rb",
238
+ "test/integration/sites_test.rb",
239
+ "test/integration/view_hooks_test.rb",
240
+ "test/test_helper.rb",
241
+ "test/unit/cms_block_test.rb",
242
+ "test/unit/cms_configuration_test.rb",
243
+ "test/unit/cms_layout_test.rb",
244
+ "test/unit/cms_page_test.rb",
245
+ "test/unit/cms_site_test.rb",
246
+ "test/unit/cms_snippet_test.rb",
247
+ "test/unit/cms_tag_test.rb",
248
+ "test/unit/cms_tags/field_datetime_test.rb",
249
+ "test/unit/cms_tags/field_integer_test.rb",
250
+ "test/unit/cms_tags/field_string_test.rb",
251
+ "test/unit/cms_tags/field_text_test.rb",
252
+ "test/unit/cms_tags/helper_test.rb",
253
+ "test/unit/cms_tags/page_datetime_test.rb",
254
+ "test/unit/cms_tags/page_integer_test.rb",
255
+ "test/unit/cms_tags/page_rich_text.rb",
256
+ "test/unit/cms_tags/page_string_test.rb",
257
+ "test/unit/cms_tags/page_text_test.rb",
258
+ "test/unit/cms_tags/partial_test.rb",
259
+ "test/unit/cms_tags/snippet_test.rb",
260
+ "test/unit/cms_upload_dir_test.rb",
261
+ "test/unit/cms_upload_test.rb",
262
+ "test/unit/cms_user_test.rb",
263
+ "test/unit/view_methods_test.rb"
264
+ ]
19
265
  s.require_paths = ["lib"]
20
- s.rubygems_version = %q{1.3.7}
266
+ s.rubygems_version = %q{1.6.2}
21
267
  s.summary = %q{LucyCMS is a Rails 3 CMS that lives inside your Rails App, but does not interfere with it}
22
268
  s.test_files = [
23
269
  "test/functional/cms_admin/layouts_controller_test.rb",
@@ -58,7 +304,6 @@ Gem::Specification.new do |s|
58
304
  ]
59
305
 
60
306
  if s.respond_to? :specification_version then
61
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
62
307
  s.specification_version = 3
63
308
 
64
309
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
@@ -68,10 +313,6 @@ Gem::Specification.new do |s|
68
313
  s.add_runtime_dependency(%q<mime-types>, [">= 0"])
69
314
  s.add_runtime_dependency(%q<net-ldap>, [">= 0.1.1"])
70
315
  s.add_development_dependency(%q<sqlite3>, [">= 0"])
71
- s.add_runtime_dependency(%q<rails>, [">= 3.0.3"])
72
- s.add_runtime_dependency(%q<active_link_to>, [">= 0.0.6"])
73
- s.add_runtime_dependency(%q<paperclip>, [">= 2.3.8"])
74
- s.add_runtime_dependency(%q<net-ldap>, [">= 0.1.1"])
75
316
  else
76
317
  s.add_dependency(%q<rails>, [">= 3.0.3"])
77
318
  s.add_dependency(%q<active_link_to>, [">= 0.0.6"])
@@ -79,10 +320,6 @@ Gem::Specification.new do |s|
79
320
  s.add_dependency(%q<mime-types>, [">= 0"])
80
321
  s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
81
322
  s.add_dependency(%q<sqlite3>, [">= 0"])
82
- s.add_dependency(%q<rails>, [">= 3.0.3"])
83
- s.add_dependency(%q<active_link_to>, [">= 0.0.6"])
84
- s.add_dependency(%q<paperclip>, [">= 2.3.8"])
85
- s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
86
323
  end
87
324
  else
88
325
  s.add_dependency(%q<rails>, [">= 3.0.3"])
@@ -91,10 +328,6 @@ Gem::Specification.new do |s|
91
328
  s.add_dependency(%q<mime-types>, [">= 0"])
92
329
  s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
93
330
  s.add_dependency(%q<sqlite3>, [">= 0"])
94
- s.add_dependency(%q<rails>, [">= 3.0.3"])
95
- s.add_dependency(%q<active_link_to>, [">= 0.0.6"])
96
- s.add_dependency(%q<paperclip>, [">= 2.3.8"])
97
- s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
98
331
  end
99
332
  end
100
333
 
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lucy_cms
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 0
8
- - 1
9
- version: 0.0.1
4
+ prerelease:
5
+ version: 0.0.2
10
6
  platform: ruby
11
7
  authors:
12
8
  - Lucysoft
@@ -24,10 +20,6 @@ dependencies:
24
20
  requirements:
25
21
  - - ">="
26
22
  - !ruby/object:Gem::Version
27
- segments:
28
- - 3
29
- - 0
30
- - 3
31
23
  version: 3.0.3
32
24
  type: :runtime
33
25
  prerelease: false
@@ -39,10 +31,6 @@ dependencies:
39
31
  requirements:
40
32
  - - ">="
41
33
  - !ruby/object:Gem::Version
42
- segments:
43
- - 0
44
- - 0
45
- - 6
46
34
  version: 0.0.6
47
35
  type: :runtime
48
36
  prerelease: false
@@ -54,10 +42,6 @@ dependencies:
54
42
  requirements:
55
43
  - - ">="
56
44
  - !ruby/object:Gem::Version
57
- segments:
58
- - 2
59
- - 3
60
- - 8
61
45
  version: 2.3.8
62
46
  type: :runtime
63
47
  prerelease: false
@@ -69,8 +53,6 @@ dependencies:
69
53
  requirements:
70
54
  - - ">="
71
55
  - !ruby/object:Gem::Version
72
- segments:
73
- - 0
74
56
  version: "0"
75
57
  type: :runtime
76
58
  prerelease: false
@@ -82,10 +64,6 @@ dependencies:
82
64
  requirements:
83
65
  - - ">="
84
66
  - !ruby/object:Gem::Version
85
- segments:
86
- - 0
87
- - 1
88
- - 1
89
67
  version: 0.1.1
90
68
  type: :runtime
91
69
  prerelease: false
@@ -97,72 +75,10 @@ dependencies:
97
75
  requirements:
98
76
  - - ">="
99
77
  - !ruby/object:Gem::Version
100
- segments:
101
- - 0
102
78
  version: "0"
103
79
  type: :development
104
80
  prerelease: false
105
81
  version_requirements: *id006
106
- - !ruby/object:Gem::Dependency
107
- name: rails
108
- requirement: &id007 !ruby/object:Gem::Requirement
109
- none: false
110
- requirements:
111
- - - ">="
112
- - !ruby/object:Gem::Version
113
- segments:
114
- - 3
115
- - 0
116
- - 3
117
- version: 3.0.3
118
- type: :runtime
119
- prerelease: false
120
- version_requirements: *id007
121
- - !ruby/object:Gem::Dependency
122
- name: active_link_to
123
- requirement: &id008 !ruby/object:Gem::Requirement
124
- none: false
125
- requirements:
126
- - - ">="
127
- - !ruby/object:Gem::Version
128
- segments:
129
- - 0
130
- - 0
131
- - 6
132
- version: 0.0.6
133
- type: :runtime
134
- prerelease: false
135
- version_requirements: *id008
136
- - !ruby/object:Gem::Dependency
137
- name: paperclip
138
- requirement: &id009 !ruby/object:Gem::Requirement
139
- none: false
140
- requirements:
141
- - - ">="
142
- - !ruby/object:Gem::Version
143
- segments:
144
- - 2
145
- - 3
146
- - 8
147
- version: 2.3.8
148
- type: :runtime
149
- prerelease: false
150
- version_requirements: *id009
151
- - !ruby/object:Gem::Dependency
152
- name: net-ldap
153
- requirement: &id010 !ruby/object:Gem::Requirement
154
- none: false
155
- requirements:
156
- - - ">="
157
- - !ruby/object:Gem::Version
158
- segments:
159
- - 0
160
- - 1
161
- - 1
162
- version: 0.1.1
163
- type: :runtime
164
- prerelease: false
165
- version_requirements: *id010
166
82
  description: ""
167
83
  email: lucy@lucysoft.com
168
84
  executables: []
@@ -431,7 +347,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
431
347
  requirements:
432
348
  - - ">="
433
349
  - !ruby/object:Gem::Version
434
- hash: 2389266230196271965
350
+ hash: -1077996764633238784
435
351
  segments:
436
352
  - 0
437
353
  version: "0"
@@ -440,13 +356,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
440
356
  requirements:
441
357
  - - ">="
442
358
  - !ruby/object:Gem::Version
443
- segments:
444
- - 0
445
359
  version: "0"
446
360
  requirements: []
447
361
 
448
362
  rubyforge_project:
449
- rubygems_version: 1.3.7
363
+ rubygems_version: 1.6.2
450
364
  signing_key:
451
365
  specification_version: 3
452
366
  summary: LucyCMS is a Rails 3 CMS that lives inside your Rails App, but does not interfere with it