refinerycms-images 0.9.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/app/controllers/admin/images_controller.rb +108 -0
- data/app/helpers/admin/images_helper.rb +27 -0
- data/app/models/image.rb +72 -0
- data/app/views/admin/images/_existing_image.html.erb +73 -0
- data/app/views/admin/images/_form.html.erb +54 -0
- data/app/views/admin/images/_grid_view.html.erb +19 -0
- data/app/views/admin/images/_images.html.erb +2 -0
- data/app/views/admin/images/_list_view.html.erb +10 -0
- data/app/views/admin/images/_list_view_image.html.erb +17 -0
- data/app/views/admin/images/edit.html.erb +1 -0
- data/app/views/admin/images/index.html.erb +38 -0
- data/app/views/admin/images/insert.html.erb +47 -0
- data/app/views/admin/images/new.html.erb +1 -0
- data/config/locales/cs.yml +41 -0
- data/config/locales/da.yml +41 -0
- data/config/locales/de.yml +41 -0
- data/config/locales/el.yml +41 -0
- data/config/locales/en.yml +41 -0
- data/config/locales/es.yml +40 -0
- data/config/locales/fr.yml +41 -0
- data/config/locales/it.yml +47 -0
- data/config/locales/lolcat.yml +41 -0
- data/config/locales/lt.yml +41 -0
- data/config/locales/lv.yml +41 -0
- data/config/locales/nb.yml +42 -0
- data/config/locales/nl.yml +40 -0
- data/config/locales/pl.yml +42 -0
- data/config/locales/pt-BR.yml +42 -0
- data/config/locales/rs.yml +42 -0
- data/config/locales/ru.yml +41 -0
- data/config/locales/sl.yml +40 -0
- data/config/locales/sv.yml +41 -0
- data/config/locales/vi.yml +41 -0
- data/config/locales/zh-CN.yml +41 -0
- data/config/locales/zh-TW.yml +41 -0
- data/config/routes.rb +12 -0
- data/db/migrate/20100913234707_create_refinerycms_images_schema.rb +23 -0
- data/features/manage_images.feature +49 -0
- data/features/step_definitions/image_steps.rb +40 -0
- data/features/support/factories.rb +5 -0
- data/features/support/paths.rb +17 -0
- data/features/uploads/beach.jpeg +0 -0
- data/features/uploads/id-rather-be-here.jpg +0 -0
- data/features/uploads/refinery_is_awesome.txt +1 -0
- data/lib/gemspec.rb +35 -0
- data/lib/generators/refinerycms_images_generator.rb +8 -0
- data/lib/refinerycms-images.rb +69 -0
- data/license.md +21 -0
- data/readme.md +34 -0
- data/refinerycms-images.gemspec +97 -0
- data/spec/models/image_spec.rb +87 -0
- data/spec/uploads/beach.jpeg +0 -0
- metadata +142 -0
Binary file
|
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: refinerycms-images
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.9.9.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Resolve Digital
|
9
|
+
- Philip Arndt
|
10
|
+
- David Jones
|
11
|
+
- Steven Heidel
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
|
16
|
+
date: 2011-02-15 00:00:00 +13:00
|
17
|
+
default_executable:
|
18
|
+
dependencies:
|
19
|
+
- !ruby/object:Gem::Dependency
|
20
|
+
name: refinerycms-core
|
21
|
+
prerelease: false
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.9.9.1
|
28
|
+
type: :runtime
|
29
|
+
version_requirements: *id001
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: dragonfly
|
32
|
+
prerelease: false
|
33
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 0.8.2
|
39
|
+
type: :runtime
|
40
|
+
version_requirements: *id002
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rack-cache
|
43
|
+
prerelease: false
|
44
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ~>
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 0.5.2
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id003
|
52
|
+
description: Handles all image upload and processing functionality in Refinery CMS.
|
53
|
+
email: info@refinerycms.com
|
54
|
+
executables: []
|
55
|
+
|
56
|
+
extensions: []
|
57
|
+
|
58
|
+
extra_rdoc_files: []
|
59
|
+
|
60
|
+
files:
|
61
|
+
- app/controllers/admin/images_controller.rb
|
62
|
+
- app/helpers/admin/images_helper.rb
|
63
|
+
- app/models/image.rb
|
64
|
+
- app/views/admin/images/_existing_image.html.erb
|
65
|
+
- app/views/admin/images/_form.html.erb
|
66
|
+
- app/views/admin/images/_grid_view.html.erb
|
67
|
+
- app/views/admin/images/_images.html.erb
|
68
|
+
- app/views/admin/images/_list_view.html.erb
|
69
|
+
- app/views/admin/images/_list_view_image.html.erb
|
70
|
+
- app/views/admin/images/edit.html.erb
|
71
|
+
- app/views/admin/images/index.html.erb
|
72
|
+
- app/views/admin/images/insert.html.erb
|
73
|
+
- app/views/admin/images/new.html.erb
|
74
|
+
- config/locales/cs.yml
|
75
|
+
- config/locales/da.yml
|
76
|
+
- config/locales/de.yml
|
77
|
+
- config/locales/el.yml
|
78
|
+
- config/locales/en.yml
|
79
|
+
- config/locales/es.yml
|
80
|
+
- config/locales/fr.yml
|
81
|
+
- config/locales/it.yml
|
82
|
+
- config/locales/lolcat.yml
|
83
|
+
- config/locales/lt.yml
|
84
|
+
- config/locales/lv.yml
|
85
|
+
- config/locales/nb.yml
|
86
|
+
- config/locales/nl.yml
|
87
|
+
- config/locales/pl.yml
|
88
|
+
- config/locales/pt-BR.yml
|
89
|
+
- config/locales/rs.yml
|
90
|
+
- config/locales/ru.yml
|
91
|
+
- config/locales/sl.yml
|
92
|
+
- config/locales/sv.yml
|
93
|
+
- config/locales/vi.yml
|
94
|
+
- config/locales/zh-CN.yml
|
95
|
+
- config/locales/zh-TW.yml
|
96
|
+
- config/routes.rb
|
97
|
+
- db/migrate/20100913234707_create_refinerycms_images_schema.rb
|
98
|
+
- features/manage_images.feature
|
99
|
+
- features/step_definitions/image_steps.rb
|
100
|
+
- features/support/factories.rb
|
101
|
+
- features/support/paths.rb
|
102
|
+
- features/uploads/beach.jpeg
|
103
|
+
- features/uploads/id-rather-be-here.jpg
|
104
|
+
- features/uploads/refinery_is_awesome.txt
|
105
|
+
- lib/gemspec.rb
|
106
|
+
- lib/generators/refinerycms_images_generator.rb
|
107
|
+
- lib/refinerycms-images.rb
|
108
|
+
- license.md
|
109
|
+
- readme.md
|
110
|
+
- refinerycms-images.gemspec
|
111
|
+
- spec/models/image_spec.rb
|
112
|
+
- spec/uploads/beach.jpeg
|
113
|
+
has_rdoc: true
|
114
|
+
homepage: http://refinerycms.com
|
115
|
+
licenses:
|
116
|
+
- MIT
|
117
|
+
post_install_message:
|
118
|
+
rdoc_options: []
|
119
|
+
|
120
|
+
require_paths:
|
121
|
+
- lib
|
122
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
123
|
+
none: false
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: "0"
|
128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: "0"
|
134
|
+
requirements: []
|
135
|
+
|
136
|
+
rubyforge_project: refinerycms
|
137
|
+
rubygems_version: 1.5.2
|
138
|
+
signing_key:
|
139
|
+
specification_version: 3
|
140
|
+
summary: Images engine for Refinery CMS
|
141
|
+
test_files: []
|
142
|
+
|