casein 3.1.11 → 4.0.0.beta1
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 +7 -0
- data/Gemfile +1 -0
- data/MIT-LICENSE +2 -1
- data/PUBLIC_VERSION.yml +4 -4
- data/README.rdoc +68 -71
- data/Rakefile +9 -8
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/casein.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/header.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/icons/add.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/icons/delete.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/icons/table.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/alertBg.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/background.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/bottom.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/loginBoxBg.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/loginBoxBottom.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/loginBoxTop.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/loginSubmit.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/recoverSubmit.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/login/top.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/nav.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/rightNav.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/rightNavButton.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/images → app/assets/images/casein}/visitSiteNav.png +0 -0
- data/{lib/generators/casein/update/templates/public/casein/javascripts → app/assets/javascripts/casein}/casein.js +3 -0
- data/{lib/generators/casein/update/templates/public/casein/javascripts → app/assets/javascripts/casein}/login.js +3 -0
- data/app/assets/stylesheets/casein/casein.css.scss +4 -0
- data/{lib/generators/casein/update/templates/public/casein/stylesheets/elements.css → app/assets/stylesheets/casein/elements.css.scss} +1 -1
- data/{lib/generators/casein/update/templates/public/casein/stylesheets/login.css → app/assets/stylesheets/casein/login.css.scss} +2 -2
- data/{lib/generators/casein/update/templates/public/casein/stylesheets/screen.css → app/assets/stylesheets/casein/screen.css.scss} +10 -10
- data/app/controllers/casein/users_controller.rb +10 -4
- data/app/helpers/casein/casein_helper.rb +2 -2
- data/app/views/casein/users/index.html.erb +1 -1
- data/app/views/layouts/casein_auth.html.erb +3 -3
- data/config/routes.rb +3 -3
- data/lib/casein.rb +1 -1
- data/lib/casein/engine.rb +4 -0
- data/lib/generators/casein/install/USAGE +1 -1
- data/lib/generators/casein/install/install_generator.rb +2 -2
- data/lib/generators/casein/install/templates/{public/casein/javascripts → app/assets/javascripts/casein}/custom.js +0 -0
- data/lib/generators/casein/install/templates/{public/casein/stylesheets/custom.css → app/assets/stylesheets/casein/custom.css.scss} +1 -1
- data/lib/generators/casein/install/templates/app/helpers/casein/config_helper.rb +28 -28
- data/lib/generators/casein/scaffold/templates/controller.rb +14 -2
- data/lib/generators/casein/scaffold/templates/views/_table.html.erb +1 -1
- metadata +86 -116
- data/lib/generators/casein/update/USAGE +0 -1
- data/lib/generators/casein/update/templates/public/casein/javascripts/jquery.js +0 -154
- data/lib/generators/casein/update/templates/public/casein/javascripts/rails.js +0 -132
- data/lib/generators/casein/update/update_generator.rb +0 -40
|
@@ -58,11 +58,11 @@ module Casein
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
def casein_show_icon icon_name
|
|
61
|
-
"<div class='icon'
|
|
61
|
+
"<div class='icon'>".html_safe + image_tag("casein/icons/#{icon_name}.png", :alt => "") + "</div>".html_safe
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
def casein_show_row_icon icon_name
|
|
65
|
-
|
|
65
|
+
"<div class='iconRow'>".html_safe + image_tag("casein/icons/#{icon_name}.png", :alt => "") + "</div>".html_safe
|
|
66
66
|
end
|
|
67
67
|
|
|
68
68
|
# Styled form tag helpers
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<% confirm_message += "\n\nWARNING: This is your user account. You will be logged out if you proceed." %>
|
|
22
22
|
<% end %>
|
|
23
23
|
|
|
24
|
-
<%= link_to(casein_show_row_icon("delete"), casein_user_path(user), :method => :delete, :confirm => confirm_message) %>
|
|
24
|
+
<%= link_to(casein_show_row_icon("delete"), casein_user_path(user), :method => :delete, :data => { :confirm => confirm_message }) %>
|
|
25
25
|
<% end %>
|
|
26
26
|
</td>
|
|
27
27
|
</tr>
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<head>
|
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
7
7
|
<title>Welcome to <%= casein_config_website_name %></title>
|
|
8
|
-
<%= stylesheet_link_tag "
|
|
9
|
-
<%= javascript_include_tag "
|
|
8
|
+
<%= stylesheet_link_tag "casein/login" %>
|
|
9
|
+
<%= javascript_include_tag "casein/login" %>
|
|
10
10
|
<%= csrf_meta_tag %>
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
</div>
|
|
19
19
|
<div id="footer">
|
|
20
20
|
<p>Based on <%= link_to "Casein", "http://www.caseincms.com" %> <%= casein_get_short_version_string %> technology,
|
|
21
|
-
an open-source project
|
|
21
|
+
an open-source project.</p>
|
|
22
22
|
</div>
|
|
23
23
|
</body>
|
|
24
24
|
</html>
|
data/config/routes.rb
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
Rails.application.routes.draw do
|
|
2
2
|
|
|
3
|
-
match "/admin" => redirect("/casein")
|
|
3
|
+
match "/admin" => redirect("/casein"), :via => :get
|
|
4
4
|
|
|
5
5
|
namespace :casein do
|
|
6
6
|
|
|
7
7
|
resources :users do
|
|
8
8
|
member do
|
|
9
|
-
|
|
9
|
+
patch :update_password, :reset_password
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
resource :user_session
|
|
14
14
|
resource :password_reset, :only => [:create, :edit, :update]
|
|
15
15
|
|
|
16
|
-
match "/blank" => "casein#blank"
|
|
16
|
+
match "/blank" => "casein#blank", :via => :get
|
|
17
17
|
root :to => "casein#index"
|
|
18
18
|
end
|
|
19
19
|
|
data/lib/casein.rb
CHANGED
data/lib/casein/engine.rb
CHANGED
|
@@ -4,6 +4,10 @@ require "rails"
|
|
|
4
4
|
module Casein
|
|
5
5
|
class Engine < Rails::Engine
|
|
6
6
|
|
|
7
|
+
initializer "casein.assets.precompile" do |app|
|
|
8
|
+
app.config.assets.precompile += %w(casein/login.js casein/login.css casein/casein.css casein/casein.js casein/custom.css.scss casein/custom.js casein/*.png casein/login/*.png casein/icons/*.png)
|
|
9
|
+
end
|
|
10
|
+
|
|
7
11
|
rake_tasks do
|
|
8
12
|
load "railties/tasks.rake"
|
|
9
13
|
end
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Copies user
|
|
1
|
+
Copies user-configurable Casein files into the main project
|
|
@@ -27,8 +27,8 @@ module Casein
|
|
|
27
27
|
copy_file "public/robots.txt", "public/robots.txt"
|
|
28
28
|
|
|
29
29
|
#blank stylesheets and JavaScript files
|
|
30
|
-
copy_file "
|
|
31
|
-
copy_file "
|
|
30
|
+
copy_file "app/assets/stylesheets/casein/custom.css.scss", "app/assets/stylesheets/casein/custom.css.scss"
|
|
31
|
+
copy_file "app/assets/javascripts/casein/custom.js", "app/assets/javascripts/casein/custom.js"
|
|
32
32
|
|
|
33
33
|
#migrations
|
|
34
34
|
migration_template 'db/migrate/casein_create_users.rb', "db/migrate/casein_create_users.rb"
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* CASEIN CUSTOM
|
|
1
|
+
/* CASEIN CUSTOM */
|
|
2
2
|
/* Use this file for your project-specific Casein CSS */
|
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
module Casein
|
|
2
2
|
module ConfigHelper
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
# Text string containing the name of the website or client
|
|
5
|
+
# Used in text and titles throughout Casein
|
|
6
6
|
def casein_config_website_name
|
|
7
|
-
|
|
7
|
+
'Casein'
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
# URL to the logo used for the login screen and top banner - it should be a transparent PNG
|
|
11
11
|
def casein_config_logo
|
|
12
|
-
|
|
12
|
+
'casein/casein.png'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
# The server hostname where Casein will run
|
|
16
16
|
def casein_config_hostname
|
|
17
17
|
if ENV['RAILS_ENV'] == 'production'
|
|
18
18
|
'http://www.caseincms.com'
|
|
19
19
|
else
|
|
20
|
-
'http://
|
|
20
|
+
'http://0.0.0.0:3000'
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
24
|
+
# The sender email address used for notifications
|
|
25
|
+
def casein_config_email_from_address
|
|
26
|
+
'donotreply@caseincms.com'
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# The page that the user is shown when they login or click the logo
|
|
30
|
+
# do not point this at casein/index!
|
|
31
|
+
def casein_config_dashboard_url
|
|
32
|
+
url_for :controller => :casein, :action => :blank
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# A list of stylesheet files to include in the page head section
|
|
36
|
+
def casein_config_stylesheet_includes
|
|
37
|
+
%w[casein/custom casein/casein]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# A list of JavaScript files to include in the page head section
|
|
41
|
+
def casein_config_javascript_includes
|
|
42
|
+
%w[casein/custom casein/casein]
|
|
43
|
+
end
|
|
44
|
+
|
|
45
45
|
end
|
|
46
46
|
end
|
|
@@ -23,7 +23,7 @@ module Casein
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
def create
|
|
26
|
-
@<%= singular_name %> = <%= class_name %>.new
|
|
26
|
+
@<%= singular_name %> = <%= class_name %>.new <%= singular_name %>_params
|
|
27
27
|
|
|
28
28
|
if @<%= singular_name %>.save
|
|
29
29
|
flash[:notice] = '<%= singular_name.humanize.capitalize %> created'
|
|
@@ -39,7 +39,7 @@ module Casein
|
|
|
39
39
|
|
|
40
40
|
@<%= singular_name %> = <%= class_name %>.find params[:id]
|
|
41
41
|
|
|
42
|
-
if @<%= singular_name %>.update_attributes
|
|
42
|
+
if @<%= singular_name %>.update_attributes <%= singular_name %>_params
|
|
43
43
|
flash[:notice] = '<%= singular_name.humanize.capitalize %> has been updated'
|
|
44
44
|
redirect_to casein_<%= @plural_route %>_path
|
|
45
45
|
else
|
|
@@ -56,5 +56,17 @@ module Casein
|
|
|
56
56
|
redirect_to casein_<%= @plural_route %>_path
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
+
private
|
|
60
|
+
<%
|
|
61
|
+
permit_list = ""
|
|
62
|
+
attributes.each_with_index {|attribute|
|
|
63
|
+
permit_list += ", " unless permit_list.empty?
|
|
64
|
+
permit_list += ":#{attribute.name}"
|
|
65
|
+
}
|
|
66
|
+
%>
|
|
67
|
+
def <%= singular_name %>_params
|
|
68
|
+
params.require(:<%= singular_name %>).permit(<%= permit_list %>)
|
|
69
|
+
end
|
|
70
|
+
|
|
59
71
|
end
|
|
60
72
|
end
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<tr class="<%%= 'even' if index.modulo(2) == 0 %> hover">
|
|
11
11
|
<% attributes.each do |attribute| %><td><%%= casein_table_cell_link <%= singular_name %>.<%= attribute.name %>, casein_<%= singular_name %>_path(<%= singular_name %>) %></td>
|
|
12
12
|
<% end %><td class="delete">
|
|
13
|
-
<%%= link_to(casein_show_row_icon("delete"), casein_<%= singular_name %>_path(<%= singular_name %>), :method => :delete, :confirm => "Are you sure you want to delete this <%= singular_name.humanize.downcase %>?") %>
|
|
13
|
+
<%%= link_to(casein_show_row_icon("delete"), casein_<%= singular_name %>_path(<%= singular_name %>), :method => :delete, :data => { :confirm => "Are you sure you want to delete this <%= singular_name.humanize.downcase %>?" }) %>
|
|
14
14
|
</td>
|
|
15
15
|
</tr>
|
|
16
16
|
<%% end %>
|
metadata
CHANGED
|
@@ -1,84 +1,93 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: casein
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 3
|
|
8
|
-
- 1
|
|
9
|
-
- 11
|
|
10
|
-
version: 3.1.11
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.0.0.beta1
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- Russell Quinn
|
|
14
|
-
- Spoiled Milk
|
|
15
8
|
autorequire:
|
|
16
9
|
bindir: bin
|
|
17
10
|
cert_chain: []
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
11
|
+
date: 2013-07-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: will_paginate
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.0.4
|
|
23
20
|
type: :runtime
|
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
|
-
requirements:
|
|
27
|
-
- - ">="
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
|
-
segments:
|
|
31
|
-
- 0
|
|
32
|
-
version: "0"
|
|
33
|
-
name: casein
|
|
34
|
-
version_requirements: *id001
|
|
35
21
|
prerelease: false
|
|
36
|
-
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.0.4
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: authlogic
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 3.3.0
|
|
37
34
|
type: :runtime
|
|
38
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
-
none: false
|
|
40
|
-
requirements:
|
|
41
|
-
- - "="
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
hash: 7
|
|
44
|
-
segments:
|
|
45
|
-
- 3
|
|
46
|
-
- 0
|
|
47
|
-
- 0
|
|
48
|
-
version: 3.0.0
|
|
49
|
-
name: will_paginate
|
|
50
|
-
version_requirements: *id002
|
|
51
35
|
prerelease: false
|
|
52
|
-
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 3.3.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jquery-rails
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
53
48
|
type: :runtime
|
|
54
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
|
55
|
-
none: false
|
|
56
|
-
requirements:
|
|
57
|
-
- - "="
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
hash: 1
|
|
60
|
-
segments:
|
|
61
|
-
- 3
|
|
62
|
-
- 0
|
|
63
|
-
- 3
|
|
64
|
-
version: 3.0.3
|
|
65
|
-
name: authlogic
|
|
66
|
-
version_requirements: *id003
|
|
67
49
|
prerelease: false
|
|
68
|
-
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
description: Casein is an open-source CMS for Ruby on Rails.
|
|
69
56
|
email: mail@russellquinn.com
|
|
70
57
|
executables: []
|
|
71
|
-
|
|
72
58
|
extensions: []
|
|
73
|
-
|
|
74
|
-
extra_rdoc_files:
|
|
59
|
+
extra_rdoc_files:
|
|
75
60
|
- README.rdoc
|
|
76
|
-
files:
|
|
61
|
+
files:
|
|
77
62
|
- Gemfile
|
|
78
63
|
- MIT-LICENSE
|
|
79
64
|
- PUBLIC_VERSION.yml
|
|
80
65
|
- README.rdoc
|
|
81
66
|
- Rakefile
|
|
67
|
+
- app/assets/images/casein/casein.png
|
|
68
|
+
- app/assets/images/casein/header.png
|
|
69
|
+
- app/assets/images/casein/icons/add.png
|
|
70
|
+
- app/assets/images/casein/icons/delete.png
|
|
71
|
+
- app/assets/images/casein/icons/table.png
|
|
72
|
+
- app/assets/images/casein/login/alertBg.png
|
|
73
|
+
- app/assets/images/casein/login/background.png
|
|
74
|
+
- app/assets/images/casein/login/bottom.png
|
|
75
|
+
- app/assets/images/casein/login/loginBoxBg.png
|
|
76
|
+
- app/assets/images/casein/login/loginBoxBottom.png
|
|
77
|
+
- app/assets/images/casein/login/loginBoxTop.png
|
|
78
|
+
- app/assets/images/casein/login/loginSubmit.png
|
|
79
|
+
- app/assets/images/casein/login/recoverSubmit.png
|
|
80
|
+
- app/assets/images/casein/login/top.png
|
|
81
|
+
- app/assets/images/casein/nav.png
|
|
82
|
+
- app/assets/images/casein/rightNav.png
|
|
83
|
+
- app/assets/images/casein/rightNavButton.png
|
|
84
|
+
- app/assets/images/casein/visitSiteNav.png
|
|
85
|
+
- app/assets/javascripts/casein/casein.js
|
|
86
|
+
- app/assets/javascripts/casein/login.js
|
|
87
|
+
- app/assets/stylesheets/casein/casein.css.scss
|
|
88
|
+
- app/assets/stylesheets/casein/elements.css.scss
|
|
89
|
+
- app/assets/stylesheets/casein/login.css.scss
|
|
90
|
+
- app/assets/stylesheets/casein/screen.css.scss
|
|
82
91
|
- app/controllers/casein/casein_controller.rb
|
|
83
92
|
- app/controllers/casein/password_resets_controller.rb
|
|
84
93
|
- app/controllers/casein/user_sessions_controller.rb
|
|
@@ -103,12 +112,12 @@ files:
|
|
|
103
112
|
- lib/casein/engine.rb
|
|
104
113
|
- lib/generators/casein/install/USAGE
|
|
105
114
|
- lib/generators/casein/install/install_generator.rb
|
|
115
|
+
- lib/generators/casein/install/templates/app/assets/javascripts/casein/custom.js
|
|
116
|
+
- lib/generators/casein/install/templates/app/assets/stylesheets/casein/custom.css.scss
|
|
106
117
|
- lib/generators/casein/install/templates/app/helpers/casein/config_helper.rb
|
|
107
118
|
- lib/generators/casein/install/templates/app/views/casein/layouts/_left_navigation.html.erb
|
|
108
119
|
- lib/generators/casein/install/templates/app/views/casein/layouts/_right_navigation.html.erb
|
|
109
120
|
- lib/generators/casein/install/templates/db/migrate/casein_create_users.rb
|
|
110
|
-
- lib/generators/casein/install/templates/public/casein/javascripts/custom.js
|
|
111
|
-
- lib/generators/casein/install/templates/public/casein/stylesheets/custom.css
|
|
112
121
|
- lib/generators/casein/install/templates/public/robots.txt
|
|
113
122
|
- lib/generators/casein/scaffold/USAGE
|
|
114
123
|
- lib/generators/casein/scaffold/scaffold_generator.rb
|
|
@@ -120,67 +129,28 @@ files:
|
|
|
120
129
|
- lib/generators/casein/scaffold/templates/views/index.html.erb
|
|
121
130
|
- lib/generators/casein/scaffold/templates/views/new.html.erb
|
|
122
131
|
- lib/generators/casein/scaffold/templates/views/show.html.erb
|
|
123
|
-
- lib/generators/casein/update/USAGE
|
|
124
|
-
- lib/generators/casein/update/templates/public/casein/images/casein.png
|
|
125
|
-
- lib/generators/casein/update/templates/public/casein/images/header.png
|
|
126
|
-
- lib/generators/casein/update/templates/public/casein/images/icons/add.png
|
|
127
|
-
- lib/generators/casein/update/templates/public/casein/images/icons/delete.png
|
|
128
|
-
- lib/generators/casein/update/templates/public/casein/images/icons/table.png
|
|
129
|
-
- lib/generators/casein/update/templates/public/casein/images/login/alertBg.png
|
|
130
|
-
- lib/generators/casein/update/templates/public/casein/images/login/background.png
|
|
131
|
-
- lib/generators/casein/update/templates/public/casein/images/login/bottom.png
|
|
132
|
-
- lib/generators/casein/update/templates/public/casein/images/login/loginBoxBg.png
|
|
133
|
-
- lib/generators/casein/update/templates/public/casein/images/login/loginBoxBottom.png
|
|
134
|
-
- lib/generators/casein/update/templates/public/casein/images/login/loginBoxTop.png
|
|
135
|
-
- lib/generators/casein/update/templates/public/casein/images/login/loginSubmit.png
|
|
136
|
-
- lib/generators/casein/update/templates/public/casein/images/login/recoverSubmit.png
|
|
137
|
-
- lib/generators/casein/update/templates/public/casein/images/login/top.png
|
|
138
|
-
- lib/generators/casein/update/templates/public/casein/images/nav.png
|
|
139
|
-
- lib/generators/casein/update/templates/public/casein/images/rightNav.png
|
|
140
|
-
- lib/generators/casein/update/templates/public/casein/images/rightNavButton.png
|
|
141
|
-
- lib/generators/casein/update/templates/public/casein/images/visitSiteNav.png
|
|
142
|
-
- lib/generators/casein/update/templates/public/casein/javascripts/casein.js
|
|
143
|
-
- lib/generators/casein/update/templates/public/casein/javascripts/jquery.js
|
|
144
|
-
- lib/generators/casein/update/templates/public/casein/javascripts/login.js
|
|
145
|
-
- lib/generators/casein/update/templates/public/casein/javascripts/rails.js
|
|
146
|
-
- lib/generators/casein/update/templates/public/casein/stylesheets/elements.css
|
|
147
|
-
- lib/generators/casein/update/templates/public/casein/stylesheets/login.css
|
|
148
|
-
- lib/generators/casein/update/templates/public/casein/stylesheets/screen.css
|
|
149
|
-
- lib/generators/casein/update/update_generator.rb
|
|
150
132
|
- lib/railties/tasks.rake
|
|
151
|
-
|
|
152
|
-
homepage: http://github.com/spoiledmilk/casein3
|
|
133
|
+
homepage: http://github.com/russellquinn/casein
|
|
153
134
|
licenses: []
|
|
154
|
-
|
|
135
|
+
metadata: {}
|
|
155
136
|
post_install_message:
|
|
156
137
|
rdoc_options: []
|
|
157
|
-
|
|
158
|
-
require_paths:
|
|
138
|
+
require_paths:
|
|
159
139
|
- lib
|
|
160
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
none: false
|
|
171
|
-
requirements:
|
|
172
|
-
- - ">="
|
|
173
|
-
- !ruby/object:Gem::Version
|
|
174
|
-
hash: 3
|
|
175
|
-
segments:
|
|
176
|
-
- 0
|
|
177
|
-
version: "0"
|
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - '>='
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - '>'
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: 1.3.1
|
|
178
150
|
requirements: []
|
|
179
|
-
|
|
180
151
|
rubyforge_project:
|
|
181
|
-
rubygems_version:
|
|
152
|
+
rubygems_version: 2.0.5
|
|
182
153
|
signing_key:
|
|
183
|
-
specification_version:
|
|
154
|
+
specification_version: 4
|
|
184
155
|
summary: A lightweight Ruby on Rails CMS.
|
|
185
156
|
test_files: []
|
|
186
|
-
|