kuztuscms 0.0.1
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.
- data/.gitignore +9 -0
- data/.rvmrc +55 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +156 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +12 -0
- data/Rakefile +29 -0
- data/app/assets/images/kuztuscms/.gitkeep +0 -0
- data/app/assets/images/kuztuscms/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/kuztuscms/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/kuztuscms/.DS_Store +0 -0
- data/app/assets/javascripts/kuztuscms/application.js +15 -0
- data/app/assets/javascripts/kuztuscms/bootstrap.js +1720 -0
- data/app/assets/javascripts/kuztuscms/codemirror-compressed.js +1 -0
- data/app/assets/stylesheets/kuztuscms/.DS_Store +0 -0
- data/app/assets/stylesheets/kuztuscms/application.css.scss +16 -0
- data/app/assets/stylesheets/kuztuscms/bootstrap-responsive.css +581 -0
- data/app/assets/stylesheets/kuztuscms/bootstrap.css +3496 -0
- data/app/assets/stylesheets/kuztuscms/codemirror.css +115 -0
- data/app/controllers/kuztuscms/articles_controller.rb +53 -0
- data/app/controllers/kuztuscms/home_controller.rb +6 -0
- data/app/controllers/kuztuscms/layouts_controller.rb +75 -0
- data/app/controllers/kuztuscms/pages_controller.rb +73 -0
- data/app/controllers/kuztuscms/settings_controller.rb +48 -0
- data/app/controllers/kuztuscms/templates_controller.rb +72 -0
- data/app/controllers/kuztuscms/users_controller.rb +74 -0
- data/app/controllers/kuztuscms_controller.rb +23 -0
- data/app/helpers/kuztuscms/application_helper.rb +4 -0
- data/app/models/kuztuscms/article.rb +4 -0
- data/app/models/kuztuscms/layout.rb +14 -0
- data/app/models/kuztuscms/page.rb +8 -0
- data/app/models/kuztuscms/setting.rb +11 -0
- data/app/models/kuztuscms/template.rb +14 -0
- data/app/models/kuztuscms/user.rb +20 -0
- data/app/views/devise/_links.erb +27 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +18 -0
- data/app/views/devise/registrations/edit.html.erb +25 -0
- data/app/views/devise/registrations/new.html.erb +21 -0
- data/app/views/devise/sessions/new.html.erb +31 -0
- data/app/views/devise/unlocks/new.html.erb +19 -0
- data/app/views/kuztuscms/articles/_form.html.erb +35 -0
- data/app/views/kuztuscms/articles/edit.html.erb +1 -0
- data/app/views/kuztuscms/articles/index.html.erb +22 -0
- data/app/views/kuztuscms/articles/new.html.erb +1 -0
- data/app/views/kuztuscms/articles/show.html.erb +4 -0
- data/app/views/kuztuscms/home/index.html.erb +1 -0
- data/app/views/kuztuscms/layouts/_form.html.erb +58 -0
- data/app/views/kuztuscms/layouts/edit.html.erb +2 -0
- data/app/views/kuztuscms/layouts/index.html.erb +32 -0
- data/app/views/kuztuscms/layouts/new.html.erb +2 -0
- data/app/views/kuztuscms/pages/_form.html.erb +72 -0
- data/app/views/kuztuscms/pages/edit.html.erb +1 -0
- data/app/views/kuztuscms/pages/index.html.erb +28 -0
- data/app/views/kuztuscms/pages/new.html.erb +1 -0
- data/app/views/kuztuscms/pages/show.html.erb +1 -0
- data/app/views/kuztuscms/settings/_form.html.erb +35 -0
- data/app/views/kuztuscms/settings/edit.html.erb +1 -0
- data/app/views/kuztuscms/settings/index.html.erb +24 -0
- data/app/views/kuztuscms/settings/new.html.erb +1 -0
- data/app/views/kuztuscms/shared/_codemirror.html.erb +20 -0
- data/app/views/kuztuscms/templates/_form.html.erb +58 -0
- data/app/views/kuztuscms/templates/edit.html.erb +3 -0
- data/app/views/kuztuscms/templates/index.html.erb +28 -0
- data/app/views/kuztuscms/templates/new.html.erb +2 -0
- data/app/views/kuztuscms/users/_form.html.erb +56 -0
- data/app/views/kuztuscms/users/edit.html.erb +1 -0
- data/app/views/kuztuscms/users/index.html.erb +28 -0
- data/app/views/kuztuscms/users/new.html.erb +1 -0
- data/app/views/kuztuscms/users/show.html.erb +15 -0
- data/app/views/layouts/kuztuscms/application.html.erb +57 -0
- data/config/initializers/devise.rb +225 -0
- data/config/initializers/resolver.rb +65 -0
- data/config/locales/devise.en.yml +57 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +18 -0
- data/db/migrate/20120218074040_devise_create_kuztuscms_users.rb +52 -0
- data/db/migrate/20120218075211_create_kuztuscms_pages.rb +15 -0
- data/db/migrate/20120311080242_create_kuztuscms_templates.rb +38 -0
- data/db/migrate/20120311141419_create_kuztuscms_articles.rb +10 -0
- data/db/migrate/20120311173954_create_kuztuscms_layouts.rb +43 -0
- data/db/migrate/20120316081613_create_kuztuscms_settings.rb +10 -0
- data/kuztuscms.gemspec +33 -0
- data/lib/kuztuscms/engine.rb +13 -0
- data/lib/kuztuscms/settings.rb +26 -0
- data/lib/kuztuscms/version.rb +3 -0
- data/lib/kuztuscms.rb +7 -0
- data/lib/tasks/kuztuscms_tasks.rake +4 -0
- data/script/rails +8 -0
- data/spec/controllers/kuztuscms/articles_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/languages_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/layouts_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/pages_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/settings_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/templates_controller_spec.rb +164 -0
- data/spec/controllers/kuztuscms/translations_controller_spec.rb +164 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/javascripts/home.js +2 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/assets/stylesheets/home.css +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/home_controller.rb +4 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/home_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/views/home/index.html.erb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +16 -0
- data/spec/dummy/config/application.rb +62 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +38 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +9 -0
- data/spec/dummy/config/locales/ru.yml +5 -0
- data/spec/dummy/config/routes.rb +8 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migrate/20120313083011_devise_create_kuztuscms_users.kuztuscms.rb +59 -0
- data/spec/dummy/db/migrate/20120313083012_create_kuztuscms_pages.kuztuscms.rb +16 -0
- data/spec/dummy/db/migrate/20120313083013_create_kuztuscms_templates.kuztuscms.rb +15 -0
- data/spec/dummy/db/migrate/20120313083014_create_kuztuscms_articles.kuztuscms.rb +11 -0
- data/spec/dummy/db/migrate/20120313083015_create_kuztuscms_layouts.kuztuscms.rb +41 -0
- data/spec/dummy/db/migrate/20120316084434_create_kuztuscms_settings.kuztuscms.rb +11 -0
- data/spec/dummy/db/schema.rb +90 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/helpers/kuztuscms/articles_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/languages_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/layouts_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/pages_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/settings_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/templates_helper_spec.rb +15 -0
- data/spec/helpers/kuztuscms/translations_helper_spec.rb +15 -0
- data/spec/models/kuztuscms/article_spec.rb +5 -0
- data/spec/models/kuztuscms/language_spec.rb +5 -0
- data/spec/models/kuztuscms/layout_spec.rb +5 -0
- data/spec/models/kuztuscms/page_spec.rb +5 -0
- data/spec/models/kuztuscms/setting_spec.rb +5 -0
- data/spec/models/kuztuscms/template_spec.rb +5 -0
- data/spec/models/kuztuscms/translation_spec.rb +5 -0
- data/spec/models/kuztuscms/user_spec.rb +5 -0
- data/spec/routing/kuztuscms/articles_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/languages_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/layouts_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/pages_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/settings_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/templates_routing_spec.rb +35 -0
- data/spec/routing/kuztuscms/translations_routing_spec.rb +35 -0
- data/spec/views/kuztuscms/articles/edit.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/articles/index.html.erb_spec.rb +24 -0
- data/spec/views/kuztuscms/articles/new.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/articles/show.html.erb_spec.rb +18 -0
- data/spec/views/kuztuscms/languages/edit.html.erb_spec.rb +22 -0
- data/spec/views/kuztuscms/languages/index.html.erb_spec.rb +28 -0
- data/spec/views/kuztuscms/languages/new.html.erb_spec.rb +22 -0
- data/spec/views/kuztuscms/languages/show.html.erb_spec.rb +21 -0
- data/spec/views/kuztuscms/layouts/edit.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/layouts/index.html.erb_spec.rb +24 -0
- data/spec/views/kuztuscms/layouts/new.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/layouts/show.html.erb_spec.rb +18 -0
- data/spec/views/kuztuscms/pages/edit.html.erb_spec.rb +15 -0
- data/spec/views/kuztuscms/pages/index.html.erb_spec.rb +14 -0
- data/spec/views/kuztuscms/pages/new.html.erb_spec.rb +15 -0
- data/spec/views/kuztuscms/pages/show.html.erb_spec.rb +11 -0
- data/spec/views/kuztuscms/settings/edit.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/settings/index.html.erb_spec.rb +24 -0
- data/spec/views/kuztuscms/settings/new.html.erb_spec.rb +20 -0
- data/spec/views/kuztuscms/settings/show.html.erb_spec.rb +18 -0
- data/spec/views/kuztuscms/templates/edit.html.erb_spec.rb +28 -0
- data/spec/views/kuztuscms/templates/index.html.erb_spec.rb +40 -0
- data/spec/views/kuztuscms/templates/new.html.erb_spec.rb +28 -0
- data/spec/views/kuztuscms/templates/show.html.erb_spec.rb +30 -0
- data/spec/views/kuztuscms/translations/edit.html.erb_spec.rb +28 -0
- data/spec/views/kuztuscms/translations/index.html.erb_spec.rb +40 -0
- data/spec/views/kuztuscms/translations/new.html.erb_spec.rb +28 -0
- data/spec/views/kuztuscms/translations/show.html.erb_spec.rb +30 -0
- data/test/integration/kuztuscms/setting_test.rb +7 -0
- metadata +351 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# This is an RVM Project .rvmrc file, used to automatically load the ruby
|
|
4
|
+
# development environment upon cd'ing into the directory
|
|
5
|
+
|
|
6
|
+
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional.
|
|
7
|
+
environment_id="ruby-1.9.3-p0@kuztuscms"
|
|
8
|
+
|
|
9
|
+
#
|
|
10
|
+
# Uncomment following line if you want options to be set only for given project.
|
|
11
|
+
#
|
|
12
|
+
# PROJECT_JRUBY_OPTS=( --1.9 )
|
|
13
|
+
|
|
14
|
+
#
|
|
15
|
+
# First we attempt to load the desired environment directly from the environment
|
|
16
|
+
# file. This is very fast and efficient compared to running through the entire
|
|
17
|
+
# CLI and selector. If you want feedback on which environment was used then
|
|
18
|
+
# insert the word 'use' after --create as this triggers verbose mode.
|
|
19
|
+
#
|
|
20
|
+
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
|
|
21
|
+
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
|
|
22
|
+
then
|
|
23
|
+
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
|
|
24
|
+
|
|
25
|
+
if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]]
|
|
26
|
+
then
|
|
27
|
+
. "${rvm_path:-$HOME/.rvm}/hooks/after_use"
|
|
28
|
+
fi
|
|
29
|
+
else
|
|
30
|
+
# If the environment file has not yet been created, use the RVM CLI to select.
|
|
31
|
+
if ! rvm --create "$environment_id"
|
|
32
|
+
then
|
|
33
|
+
echo "Failed to create RVM environment '${environment_id}'."
|
|
34
|
+
exit 1
|
|
35
|
+
fi
|
|
36
|
+
fi
|
|
37
|
+
|
|
38
|
+
#
|
|
39
|
+
# If you use an RVM gemset file to install a list of gems (*.gems), you can have
|
|
40
|
+
# it be automatically loaded. Uncomment the following and adjust the filename if
|
|
41
|
+
# necessary.
|
|
42
|
+
#
|
|
43
|
+
# filename=".gems"
|
|
44
|
+
# if [[ -s "$filename" ]]
|
|
45
|
+
# then
|
|
46
|
+
# rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d'
|
|
47
|
+
# fi
|
|
48
|
+
|
|
49
|
+
# If you use bundler, this might be useful to you:
|
|
50
|
+
# if command -v bundle && [[ -s Gemfile ]]
|
|
51
|
+
# then
|
|
52
|
+
# bundle install
|
|
53
|
+
# fi
|
|
54
|
+
|
|
55
|
+
|
data/Gemfile
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
source "http://rubygems.org"
|
|
2
|
+
|
|
3
|
+
# Declare your gem's dependencies in kuztuscms.gemspec.
|
|
4
|
+
# Bundler will treat runtime dependencies like base dependencies, and
|
|
5
|
+
# development dependencies will be added by default to the :development group.
|
|
6
|
+
gemspec
|
|
7
|
+
|
|
8
|
+
# jquery-rails is used by the dummy application
|
|
9
|
+
gem "jquery-rails"
|
|
10
|
+
gem 'i18n-active_record', :path => '/Users/fragallia/Developing/gems/i18n-active_record'
|
|
11
|
+
|
|
12
|
+
# Declare any dependencies that are still in development here instead of in
|
|
13
|
+
# your gemspec. These might include edge Rails or gems from your path or
|
|
14
|
+
# Git. Remember to move these dependencies to your gemspec before releasing
|
|
15
|
+
# your gem to rubygems.org.
|
|
16
|
+
|
|
17
|
+
# To use debugger
|
|
18
|
+
# gem 'ruby-debug'
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
kuztuscms (0.0.1)
|
|
5
|
+
actionmailer
|
|
6
|
+
coffee-rails
|
|
7
|
+
devise
|
|
8
|
+
omniauth
|
|
9
|
+
rails
|
|
10
|
+
sass-rails
|
|
11
|
+
tzinfo
|
|
12
|
+
uglifier
|
|
13
|
+
|
|
14
|
+
PATH
|
|
15
|
+
remote: /Users/fragallia/Developing/gems/i18n-active_record
|
|
16
|
+
specs:
|
|
17
|
+
i18n-active_record (0.0.2)
|
|
18
|
+
i18n (>= 0.5.0)
|
|
19
|
+
|
|
20
|
+
GEM
|
|
21
|
+
remote: http://rubygems.org/
|
|
22
|
+
specs:
|
|
23
|
+
actionmailer (3.2.1)
|
|
24
|
+
actionpack (= 3.2.1)
|
|
25
|
+
mail (~> 2.4.0)
|
|
26
|
+
actionpack (3.2.1)
|
|
27
|
+
activemodel (= 3.2.1)
|
|
28
|
+
activesupport (= 3.2.1)
|
|
29
|
+
builder (~> 3.0.0)
|
|
30
|
+
erubis (~> 2.7.0)
|
|
31
|
+
journey (~> 1.0.1)
|
|
32
|
+
rack (~> 1.4.0)
|
|
33
|
+
rack-cache (~> 1.1)
|
|
34
|
+
rack-test (~> 0.6.1)
|
|
35
|
+
sprockets (~> 2.1.2)
|
|
36
|
+
activemodel (3.2.1)
|
|
37
|
+
activesupport (= 3.2.1)
|
|
38
|
+
builder (~> 3.0.0)
|
|
39
|
+
activerecord (3.2.1)
|
|
40
|
+
activemodel (= 3.2.1)
|
|
41
|
+
activesupport (= 3.2.1)
|
|
42
|
+
arel (~> 3.0.0)
|
|
43
|
+
tzinfo (~> 0.3.29)
|
|
44
|
+
activeresource (3.2.1)
|
|
45
|
+
activemodel (= 3.2.1)
|
|
46
|
+
activesupport (= 3.2.1)
|
|
47
|
+
activesupport (3.2.1)
|
|
48
|
+
i18n (~> 0.6)
|
|
49
|
+
multi_json (~> 1.0)
|
|
50
|
+
arel (3.0.2)
|
|
51
|
+
bcrypt-ruby (3.0.1)
|
|
52
|
+
builder (3.0.0)
|
|
53
|
+
coffee-rails (3.2.2)
|
|
54
|
+
coffee-script (>= 2.2.0)
|
|
55
|
+
railties (~> 3.2.0)
|
|
56
|
+
coffee-script (2.2.0)
|
|
57
|
+
coffee-script-source
|
|
58
|
+
execjs
|
|
59
|
+
coffee-script-source (1.2.0)
|
|
60
|
+
devise (2.0.4)
|
|
61
|
+
bcrypt-ruby (~> 3.0)
|
|
62
|
+
orm_adapter (~> 0.0.3)
|
|
63
|
+
railties (~> 3.1)
|
|
64
|
+
warden (~> 1.1.1)
|
|
65
|
+
diff-lcs (1.1.3)
|
|
66
|
+
erubis (2.7.0)
|
|
67
|
+
execjs (1.3.0)
|
|
68
|
+
multi_json (~> 1.0)
|
|
69
|
+
hashie (1.2.0)
|
|
70
|
+
hike (1.2.1)
|
|
71
|
+
i18n (0.6.0)
|
|
72
|
+
journey (1.0.1)
|
|
73
|
+
jquery-rails (2.0.0)
|
|
74
|
+
railties (>= 3.2.0.beta, < 5.0)
|
|
75
|
+
thor (~> 0.14)
|
|
76
|
+
json (1.6.5)
|
|
77
|
+
mail (2.4.3)
|
|
78
|
+
i18n (>= 0.4.0)
|
|
79
|
+
mime-types (~> 1.16)
|
|
80
|
+
treetop (~> 1.4.8)
|
|
81
|
+
mime-types (1.17.2)
|
|
82
|
+
multi_json (1.1.0)
|
|
83
|
+
omniauth (1.0.3)
|
|
84
|
+
hashie (~> 1.2)
|
|
85
|
+
rack
|
|
86
|
+
orm_adapter (0.0.6)
|
|
87
|
+
polyglot (0.3.3)
|
|
88
|
+
rack (1.4.1)
|
|
89
|
+
rack-cache (1.1)
|
|
90
|
+
rack (>= 0.4)
|
|
91
|
+
rack-ssl (1.3.2)
|
|
92
|
+
rack
|
|
93
|
+
rack-test (0.6.1)
|
|
94
|
+
rack (>= 1.0)
|
|
95
|
+
rails (3.2.1)
|
|
96
|
+
actionmailer (= 3.2.1)
|
|
97
|
+
actionpack (= 3.2.1)
|
|
98
|
+
activerecord (= 3.2.1)
|
|
99
|
+
activeresource (= 3.2.1)
|
|
100
|
+
activesupport (= 3.2.1)
|
|
101
|
+
bundler (~> 1.0)
|
|
102
|
+
railties (= 3.2.1)
|
|
103
|
+
railties (3.2.1)
|
|
104
|
+
actionpack (= 3.2.1)
|
|
105
|
+
activesupport (= 3.2.1)
|
|
106
|
+
rack-ssl (~> 1.3.2)
|
|
107
|
+
rake (>= 0.8.7)
|
|
108
|
+
rdoc (~> 3.4)
|
|
109
|
+
thor (~> 0.14.6)
|
|
110
|
+
rake (0.9.2.2)
|
|
111
|
+
rdoc (3.12)
|
|
112
|
+
json (~> 1.4)
|
|
113
|
+
rspec (2.8.0)
|
|
114
|
+
rspec-core (~> 2.8.0)
|
|
115
|
+
rspec-expectations (~> 2.8.0)
|
|
116
|
+
rspec-mocks (~> 2.8.0)
|
|
117
|
+
rspec-core (2.8.0)
|
|
118
|
+
rspec-expectations (2.8.0)
|
|
119
|
+
diff-lcs (~> 1.1.2)
|
|
120
|
+
rspec-mocks (2.8.0)
|
|
121
|
+
rspec-rails (2.8.1)
|
|
122
|
+
actionpack (>= 3.0)
|
|
123
|
+
activesupport (>= 3.0)
|
|
124
|
+
railties (>= 3.0)
|
|
125
|
+
rspec (~> 2.8.0)
|
|
126
|
+
sass (3.1.15)
|
|
127
|
+
sass-rails (3.2.4)
|
|
128
|
+
railties (~> 3.2.0)
|
|
129
|
+
sass (>= 3.1.10)
|
|
130
|
+
tilt (~> 1.3)
|
|
131
|
+
sprockets (2.1.2)
|
|
132
|
+
hike (~> 1.2)
|
|
133
|
+
rack (~> 1.0)
|
|
134
|
+
tilt (~> 1.1, != 1.3.0)
|
|
135
|
+
sqlite3 (1.3.5)
|
|
136
|
+
thor (0.14.6)
|
|
137
|
+
tilt (1.3.3)
|
|
138
|
+
treetop (1.4.10)
|
|
139
|
+
polyglot
|
|
140
|
+
polyglot (>= 0.3.1)
|
|
141
|
+
tzinfo (0.3.32)
|
|
142
|
+
uglifier (1.2.3)
|
|
143
|
+
execjs (>= 0.3.0)
|
|
144
|
+
multi_json (>= 1.0.2)
|
|
145
|
+
warden (1.1.1)
|
|
146
|
+
rack (>= 1.0)
|
|
147
|
+
|
|
148
|
+
PLATFORMS
|
|
149
|
+
ruby
|
|
150
|
+
|
|
151
|
+
DEPENDENCIES
|
|
152
|
+
i18n-active_record!
|
|
153
|
+
jquery-rails
|
|
154
|
+
kuztuscms!
|
|
155
|
+
rspec-rails
|
|
156
|
+
sqlite3
|
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright 2012 YOURNAME
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env rake
|
|
2
|
+
begin
|
|
3
|
+
require 'bundler/setup'
|
|
4
|
+
rescue LoadError
|
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
6
|
+
end
|
|
7
|
+
begin
|
|
8
|
+
require 'rdoc/task'
|
|
9
|
+
rescue LoadError
|
|
10
|
+
require 'rdoc/rdoc'
|
|
11
|
+
require 'rake/rdoctask'
|
|
12
|
+
RDoc::Task = Rake::RDocTask
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
17
|
+
rdoc.title = 'Kuztuscms'
|
|
18
|
+
rdoc.options << '--line-numbers'
|
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
|
24
|
+
load 'rails/tasks/engine.rake'
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Bundler::GemHelper.install_tasks
|
|
29
|
+
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// the compiled file.
|
|
9
|
+
//
|
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
|
12
|
+
//
|
|
13
|
+
//= require jquery
|
|
14
|
+
//= require jquery_ujs
|
|
15
|
+
//= require kuztuscms/bootstrap
|