website_builder_engine 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 +6 -0
- data/Gemfile +20 -0
- data/Gemfile.lock +173 -0
- data/MIT-LICENSE +20 -0
- data/README.textile +260 -0
- data/Rakefile +26 -0
- data/app/assets/images/website_builder_engine/.gitkeep +0 -0
- data/app/assets/javascripts/website_builder_engine/application.js +9 -0
- data/app/assets/javascripts/website_builder_engine/articles.js.coffee +3 -0
- data/app/assets/javascripts/website_builder_engine/home.js.coffee +3 -0
- data/app/assets/javascripts/website_builder_engine/jqueryui.js +406 -0
- data/app/assets/javascripts/website_builder_engine/modernizr.js +4 -0
- data/app/assets/javascripts/website_builder_engine/offerpages.js.coffee +3 -0
- data/app/assets/javascripts/website_builder_engine/respond.js +2 -0
- data/app/assets/javascripts/website_builder_engine/settings.js.coffee +3 -0
- data/app/assets/javascripts/website_builder_engine/tabs.js +41 -0
- data/app/assets/stylesheets/website_builder_engine/application.css +33 -0
- data/app/assets/stylesheets/website_builder_engine/articles.css.scss +87 -0
- data/app/assets/stylesheets/website_builder_engine/base.css.scss +336 -0
- data/app/assets/stylesheets/website_builder_engine/home.css.scss +7 -0
- data/app/assets/stylesheets/website_builder_engine/layout.css.scss +64 -0
- data/app/assets/stylesheets/website_builder_engine/normalize.css.scss +413 -0
- data/app/assets/stylesheets/website_builder_engine/offerpages.css.scss +232 -0
- data/app/assets/stylesheets/website_builder_engine/scaffolds.css.scss +56 -0
- data/app/assets/stylesheets/website_builder_engine/settings.css.scss +7 -0
- data/app/assets/stylesheets/website_builder_engine/skeleton.css.scss +237 -0
- data/app/controllers/website_builder_engine/application_controller.rb +5 -0
- data/app/controllers/website_builder_engine/articles_controller.rb +113 -0
- data/app/controllers/website_builder_engine/home_controller.rb +7 -0
- data/app/controllers/website_builder_engine/offerpages_controller.rb +98 -0
- data/app/controllers/website_builder_engine/settings_controller.rb +85 -0
- data/app/helpers/website_builder_engine/application_helper.rb +4 -0
- data/app/models/article.rb +13 -0
- data/app/models/offerpage.rb +15 -0
- data/app/models/setting.rb +13 -0
- data/app/views/layouts/website_builder_engine/application.html.haml +22 -0
- data/app/views/layouts/website_builder_engine/home.html.haml +24 -0
- data/app/views/shared/_navigation.html.haml +3 -0
- data/app/views/website_builder_engine/articles/_form.html.haml +47 -0
- data/app/views/website_builder_engine/articles/edit.html.haml +7 -0
- data/app/views/website_builder_engine/articles/index.html.haml +16 -0
- data/app/views/website_builder_engine/articles/new.html.haml +5 -0
- data/app/views/website_builder_engine/articles/publish.html.haml +7 -0
- data/app/views/website_builder_engine/articles/show.html.haml +36 -0
- data/app/views/website_builder_engine/articles/template.html.haml +72 -0
- data/app/views/website_builder_engine/home/index.html.haml +26 -0
- data/app/views/website_builder_engine/offerpages/_form.html.haml +49 -0
- data/app/views/website_builder_engine/offerpages/edit.html.haml +7 -0
- data/app/views/website_builder_engine/offerpages/index.html.haml +16 -0
- data/app/views/website_builder_engine/offerpages/new.html.haml +5 -0
- data/app/views/website_builder_engine/offerpages/publish.html.haml +7 -0
- data/app/views/website_builder_engine/offerpages/show.html.haml +37 -0
- data/app/views/website_builder_engine/offerpages/template.html.haml +71 -0
- data/app/views/website_builder_engine/settings/_form.html.haml +40 -0
- data/app/views/website_builder_engine/settings/edit.html.haml +7 -0
- data/app/views/website_builder_engine/settings/index.html.haml +19 -0
- data/app/views/website_builder_engine/settings/new.html.haml +5 -0
- data/app/views/website_builder_engine/settings/show.html.haml +34 -0
- data/app/views/website_builder_engine/welcome/template.html.haml +66 -0
- data/config/routes.rb +19 -0
- data/db/seeds.rb +68 -0
- data/lib/tasks/website_builder_engine_tasks.rake +4 -0
- data/lib/website_builder_engine.rb +4 -0
- data/lib/website_builder_engine/engine.rb +5 -0
- data/script/rails +6 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_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/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +51 -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 +27 -0
- data/spec/dummy/config/environments/production.rb +51 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -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 +12 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/mongoid.yml +20 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/db/seeds.rb +68 -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 +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/spec_helper.rb +41 -0
- data/version.rb +3 -0
- data/website_builder_engine.gemspec +31 -0
- metadata +381 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The test environment is used exclusively to run your application's
|
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
8
|
+
config.cache_classes = true
|
|
9
|
+
|
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
|
11
|
+
config.serve_static_assets = true
|
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
|
13
|
+
|
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
|
15
|
+
config.whiny_nils = true
|
|
16
|
+
|
|
17
|
+
# Show full error reports and disable caching
|
|
18
|
+
config.consider_all_requests_local = true
|
|
19
|
+
config.action_controller.perform_caching = false
|
|
20
|
+
|
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
|
22
|
+
config.action_dispatch.show_exceptions = false
|
|
23
|
+
|
|
24
|
+
# Disable request forgery protection in test environment
|
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
|
26
|
+
|
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
|
29
|
+
# ActionMailer::Base.deliveries array.
|
|
30
|
+
config.action_mailer.delivery_method = :test
|
|
31
|
+
|
|
32
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
|
33
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
34
|
+
# like if you have constraints or database-specific column types
|
|
35
|
+
# config.active_record.schema_format = :sql
|
|
36
|
+
|
|
37
|
+
# Print deprecation notices to the stderr
|
|
38
|
+
config.active_support.deprecation = :stderr
|
|
39
|
+
end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
Dummy::Application.config.secret_token = '972f04e7801c47d9da214f1903c28df91bf8ae3f73e97f1f538204e17b4d053351cc4a49c0f32603ba12b386c3598010c5d27692e9a9e7d4cd52c1e598839294'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
|
4
|
+
|
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
6
|
+
# which shouldn't be used to store highly confidential information
|
|
7
|
+
# (create the session table with "rails generate session_migration")
|
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
#
|
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
|
4
|
+
# is enabled by default.
|
|
5
|
+
|
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
7
|
+
ActionController::Base.wrap_parameters format: [:json]
|
|
8
|
+
|
|
9
|
+
# Disable root element in JSON by default.
|
|
10
|
+
if defined?(ActiveRecord)
|
|
11
|
+
ActiveRecord::Base.include_root_in_json = false
|
|
12
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
development:
|
|
2
|
+
host: localhost
|
|
3
|
+
database: dummy_development
|
|
4
|
+
|
|
5
|
+
test:
|
|
6
|
+
host: localhost
|
|
7
|
+
database: dummy_test
|
|
8
|
+
|
|
9
|
+
# set these environment variables on your prod server
|
|
10
|
+
production:
|
|
11
|
+
host: <%= ENV['MONGOID_HOST'] %>
|
|
12
|
+
port: <%= ENV['MONGOID_PORT'] %>
|
|
13
|
+
username: <%= ENV['MONGOID_USERNAME'] %>
|
|
14
|
+
password: <%= ENV['MONGOID_PASSWORD'] %>
|
|
15
|
+
database: <%= ENV['MONGOID_DATABASE'] %>
|
|
16
|
+
# slaves:
|
|
17
|
+
# - host: slave1.local
|
|
18
|
+
# port: 27018
|
|
19
|
+
# - host: slave2.local
|
|
20
|
+
# port: 27019
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
3
|
+
#
|
|
4
|
+
# Examples:
|
|
5
|
+
#
|
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
|
8
|
+
puts 'EMPTY THE MONGODB DATABASE'
|
|
9
|
+
Mongoid.master.collections.reject { |c| c.name =~ /^system/}.each(&:drop)
|
|
10
|
+
setting = Setting.create! :articles_directory => 'howto',
|
|
11
|
+
:offerpages_directory => 'products',
|
|
12
|
+
:domain => 'railsapps.github.com',
|
|
13
|
+
:site_name => 'Rails Apps',
|
|
14
|
+
:site_title => 'Rails 3.1 Example Apps and Tutorials',
|
|
15
|
+
:site_tagline => 'Starter Apps for Rails 3.1',
|
|
16
|
+
:site_description => 'Examples of complete working Rails 3.1 web applications',
|
|
17
|
+
:site_keywords => 'rails, ruby, apps, application, example, tutorial',
|
|
18
|
+
:twitter_account => 'rails_apps',
|
|
19
|
+
:sidebar => "h6. Colophon\n\nCreated with html5-website-builder"
|
|
20
|
+
puts 'Set defaults for the app'
|
|
21
|
+
|
|
22
|
+
data =
|
|
23
|
+
<<-RUBY
|
|
24
|
+
h3. Lorem Ipsum Dolor
|
|
25
|
+
|
|
26
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
27
|
+
|
|
28
|
+
h3. Dolor Sit Amet
|
|
29
|
+
|
|
30
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
31
|
+
|
|
32
|
+
bq. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
33
|
+
RUBY
|
|
34
|
+
|
|
35
|
+
offerpage = Offerpage.create! :title => 'Installing Rails 3.1',
|
|
36
|
+
:filename => 'ebook',
|
|
37
|
+
:description => 'Free ebook shows how to create starter apps for Rails 3.1',
|
|
38
|
+
:keywords => 'ebook, rails, ruby, apps, application, example, tutorial, install',
|
|
39
|
+
:headline => 'Save Time Creating Apps with Rails 3.1',
|
|
40
|
+
:subhead => 'What You Need to Know',
|
|
41
|
+
:content_block1 => data,
|
|
42
|
+
:content_block2 => data,
|
|
43
|
+
:offer_block => data,
|
|
44
|
+
:testimonials => data,
|
|
45
|
+
:published => false
|
|
46
|
+
puts "Created offerpage #{offerpage.id}"
|
|
47
|
+
|
|
48
|
+
article1 = Article.create! :title => 'Installing Rails 3.1',
|
|
49
|
+
:filename => 'installing-rails-3-1',
|
|
50
|
+
:description => 'Detailed instructions on how to install Rails 3.1',
|
|
51
|
+
:keywords => 'rails, ruby, apps, application, example, tutorial, install',
|
|
52
|
+
:headline => 'Read This Before Installing Rails 3.1',
|
|
53
|
+
:subhead => 'What You Need to Know',
|
|
54
|
+
:content => data,
|
|
55
|
+
:published => false,
|
|
56
|
+
:related_items => []
|
|
57
|
+
puts "Created sample article #{article1.id}"
|
|
58
|
+
article2 = Article.create! :title => 'Using Rails 3.1',
|
|
59
|
+
:filename => 'using-rails-3-1',
|
|
60
|
+
:description => 'Detailed instructions on how to use Rails 3.1',
|
|
61
|
+
:keywords => 'rails, ruby, apps, application, example, tutorial, install',
|
|
62
|
+
:headline => 'How to Use Rails 3.1',
|
|
63
|
+
:subhead => 'What You Need to Know',
|
|
64
|
+
:content => data,
|
|
65
|
+
:sidebar => setting.sidebar,
|
|
66
|
+
:related_items => [article1._id.to_s],
|
|
67
|
+
:published => false
|
|
68
|
+
puts "Created sample article #{article2.id}"
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/404.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/422.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/500.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
23
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
|
6
|
+
require 'rails/commands'
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Configure Rails Environment
|
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
|
3
|
+
|
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
5
|
+
require "rspec/rails"
|
|
6
|
+
|
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
|
8
|
+
|
|
9
|
+
# Load support files
|
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
11
|
+
|
|
12
|
+
RSpec.configure do |config|
|
|
13
|
+
# == Mock Framework
|
|
14
|
+
#
|
|
15
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
16
|
+
#
|
|
17
|
+
# config.mock_with :mocha
|
|
18
|
+
# config.mock_with :flexmock
|
|
19
|
+
# config.mock_with :rr
|
|
20
|
+
config.mock_with :rspec
|
|
21
|
+
|
|
22
|
+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
23
|
+
# config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
24
|
+
|
|
25
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
26
|
+
# examples within a transaction, remove the following line or assign false
|
|
27
|
+
# instead of true.
|
|
28
|
+
# config.use_transactional_fixtures = true
|
|
29
|
+
|
|
30
|
+
# Clean up the database
|
|
31
|
+
require 'database_cleaner'
|
|
32
|
+
config.before(:suite) do
|
|
33
|
+
DatabaseCleaner.strategy = :truncation
|
|
34
|
+
DatabaseCleaner.orm = "mongoid"
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
config.before(:each) do
|
|
38
|
+
DatabaseCleaner.clean
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
data/version.rb
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require File.dirname(__FILE__) + "/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "website_builder_engine"
|
|
7
|
+
s.version = WebsiteBuilderEngine::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Daniel Kehoe"]
|
|
10
|
+
s.email = ["daniel@danielkehoe.com"]
|
|
11
|
+
s.homepage = "https://github.com/DanielKehoe/website_builder_engine"
|
|
12
|
+
s.summary = "Rails 3.1 engine generates static HTML5 webpages."
|
|
13
|
+
s.description = "Add this engine to any Rails 3.1 app and create static webpages from data added through a form."
|
|
14
|
+
|
|
15
|
+
s.rubyforge_project = "website_builder_engine"
|
|
16
|
+
|
|
17
|
+
s.add_dependency "haml"
|
|
18
|
+
s.add_dependency "bson_ext"
|
|
19
|
+
s.add_dependency "mongoid"
|
|
20
|
+
s.add_dependency "RedCloth"
|
|
21
|
+
s.add_dependency "bourbon"
|
|
22
|
+
s.add_dependency "html2textile"
|
|
23
|
+
s.add_dependency "frontend-helpers"
|
|
24
|
+
|
|
25
|
+
s.add_development_dependency "rspec", "~> 2.6"
|
|
26
|
+
|
|
27
|
+
s.files = `git ls-files`.split("\n")
|
|
28
|
+
s.test_files = Dir["spec/**/*"]
|
|
29
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
|
30
|
+
s.require_path = 'lib'
|
|
31
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: website_builder_engine
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.1
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Daniel Kehoe
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-08-10 00:00:00 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: haml
|
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: "0"
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: *id001
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: bson_ext
|
|
28
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
29
|
+
none: false
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: "0"
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: *id002
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: mongoid
|
|
39
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: "0"
|
|
45
|
+
type: :runtime
|
|
46
|
+
prerelease: false
|
|
47
|
+
version_requirements: *id003
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: RedCloth
|
|
50
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
51
|
+
none: false
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: "0"
|
|
56
|
+
type: :runtime
|
|
57
|
+
prerelease: false
|
|
58
|
+
version_requirements: *id004
|
|
59
|
+
- !ruby/object:Gem::Dependency
|
|
60
|
+
name: bourbon
|
|
61
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
62
|
+
none: false
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: "0"
|
|
67
|
+
type: :runtime
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: *id005
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: html2textile
|
|
72
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: "0"
|
|
78
|
+
type: :runtime
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: *id006
|
|
81
|
+
- !ruby/object:Gem::Dependency
|
|
82
|
+
name: frontend-helpers
|
|
83
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
|
84
|
+
none: false
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: "0"
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: *id007
|
|
92
|
+
- !ruby/object:Gem::Dependency
|
|
93
|
+
name: rspec
|
|
94
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
|
95
|
+
none: false
|
|
96
|
+
requirements:
|
|
97
|
+
- - ~>
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: "2.6"
|
|
100
|
+
type: :development
|
|
101
|
+
prerelease: false
|
|
102
|
+
version_requirements: *id008
|
|
103
|
+
description: Add this engine to any Rails 3.1 app and create static webpages from data added through a form.
|
|
104
|
+
email:
|
|
105
|
+
- daniel@danielkehoe.com
|
|
106
|
+
executables: []
|
|
107
|
+
|
|
108
|
+
extensions: []
|
|
109
|
+
|
|
110
|
+
extra_rdoc_files: []
|
|
111
|
+
|
|
112
|
+
files:
|
|
113
|
+
- .gitignore
|
|
114
|
+
- Gemfile
|
|
115
|
+
- Gemfile.lock
|
|
116
|
+
- MIT-LICENSE
|
|
117
|
+
- README.textile
|
|
118
|
+
- Rakefile
|
|
119
|
+
- app/assets/images/website_builder_engine/.gitkeep
|
|
120
|
+
- app/assets/javascripts/website_builder_engine/application.js
|
|
121
|
+
- app/assets/javascripts/website_builder_engine/articles.js.coffee
|
|
122
|
+
- app/assets/javascripts/website_builder_engine/home.js.coffee
|
|
123
|
+
- app/assets/javascripts/website_builder_engine/jqueryui.js
|
|
124
|
+
- app/assets/javascripts/website_builder_engine/modernizr.js
|
|
125
|
+
- app/assets/javascripts/website_builder_engine/offerpages.js.coffee
|
|
126
|
+
- app/assets/javascripts/website_builder_engine/respond.js
|
|
127
|
+
- app/assets/javascripts/website_builder_engine/settings.js.coffee
|
|
128
|
+
- app/assets/javascripts/website_builder_engine/tabs.js
|
|
129
|
+
- app/assets/stylesheets/website_builder_engine/application.css
|
|
130
|
+
- app/assets/stylesheets/website_builder_engine/articles.css.scss
|
|
131
|
+
- app/assets/stylesheets/website_builder_engine/base.css.scss
|
|
132
|
+
- app/assets/stylesheets/website_builder_engine/home.css.scss
|
|
133
|
+
- app/assets/stylesheets/website_builder_engine/layout.css.scss
|
|
134
|
+
- app/assets/stylesheets/website_builder_engine/normalize.css.scss
|
|
135
|
+
- app/assets/stylesheets/website_builder_engine/offerpages.css.scss
|
|
136
|
+
- app/assets/stylesheets/website_builder_engine/scaffolds.css.scss
|
|
137
|
+
- app/assets/stylesheets/website_builder_engine/settings.css.scss
|
|
138
|
+
- app/assets/stylesheets/website_builder_engine/skeleton.css.scss
|
|
139
|
+
- app/controllers/website_builder_engine/application_controller.rb
|
|
140
|
+
- app/controllers/website_builder_engine/articles_controller.rb
|
|
141
|
+
- app/controllers/website_builder_engine/home_controller.rb
|
|
142
|
+
- app/controllers/website_builder_engine/offerpages_controller.rb
|
|
143
|
+
- app/controllers/website_builder_engine/settings_controller.rb
|
|
144
|
+
- app/helpers/website_builder_engine/application_helper.rb
|
|
145
|
+
- app/models/article.rb
|
|
146
|
+
- app/models/offerpage.rb
|
|
147
|
+
- app/models/setting.rb
|
|
148
|
+
- app/views/layouts/website_builder_engine/application.html.haml
|
|
149
|
+
- app/views/layouts/website_builder_engine/home.html.haml
|
|
150
|
+
- app/views/shared/_navigation.html.haml
|
|
151
|
+
- app/views/website_builder_engine/articles/_form.html.haml
|
|
152
|
+
- app/views/website_builder_engine/articles/edit.html.haml
|
|
153
|
+
- app/views/website_builder_engine/articles/index.html.haml
|
|
154
|
+
- app/views/website_builder_engine/articles/new.html.haml
|
|
155
|
+
- app/views/website_builder_engine/articles/publish.html.haml
|
|
156
|
+
- app/views/website_builder_engine/articles/show.html.haml
|
|
157
|
+
- app/views/website_builder_engine/articles/template.html.haml
|
|
158
|
+
- app/views/website_builder_engine/home/index.html.haml
|
|
159
|
+
- app/views/website_builder_engine/offerpages/_form.html.haml
|
|
160
|
+
- app/views/website_builder_engine/offerpages/edit.html.haml
|
|
161
|
+
- app/views/website_builder_engine/offerpages/index.html.haml
|
|
162
|
+
- app/views/website_builder_engine/offerpages/new.html.haml
|
|
163
|
+
- app/views/website_builder_engine/offerpages/publish.html.haml
|
|
164
|
+
- app/views/website_builder_engine/offerpages/show.html.haml
|
|
165
|
+
- app/views/website_builder_engine/offerpages/template.html.haml
|
|
166
|
+
- app/views/website_builder_engine/settings/_form.html.haml
|
|
167
|
+
- app/views/website_builder_engine/settings/edit.html.haml
|
|
168
|
+
- app/views/website_builder_engine/settings/index.html.haml
|
|
169
|
+
- app/views/website_builder_engine/settings/new.html.haml
|
|
170
|
+
- app/views/website_builder_engine/settings/show.html.haml
|
|
171
|
+
- app/views/website_builder_engine/welcome/template.html.haml
|
|
172
|
+
- config/routes.rb
|
|
173
|
+
- db/seeds.rb
|
|
174
|
+
- lib/tasks/website_builder_engine_tasks.rake
|
|
175
|
+
- lib/website_builder_engine.rb
|
|
176
|
+
- lib/website_builder_engine/engine.rb
|
|
177
|
+
- script/rails
|
|
178
|
+
- spec/dummy/Rakefile
|
|
179
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
180
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
181
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
182
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
183
|
+
- spec/dummy/app/mailers/.gitkeep
|
|
184
|
+
- spec/dummy/app/models/.gitkeep
|
|
185
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
186
|
+
- spec/dummy/config.ru
|
|
187
|
+
- spec/dummy/config/application.rb
|
|
188
|
+
- spec/dummy/config/boot.rb
|
|
189
|
+
- spec/dummy/config/database.yml
|
|
190
|
+
- spec/dummy/config/environment.rb
|
|
191
|
+
- spec/dummy/config/environments/development.rb
|
|
192
|
+
- spec/dummy/config/environments/production.rb
|
|
193
|
+
- spec/dummy/config/environments/test.rb
|
|
194
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
195
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
196
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
197
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
198
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
199
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
200
|
+
- spec/dummy/config/locales/en.yml
|
|
201
|
+
- spec/dummy/config/mongoid.yml
|
|
202
|
+
- spec/dummy/config/routes.rb
|
|
203
|
+
- spec/dummy/db/seeds.rb
|
|
204
|
+
- spec/dummy/lib/assets/.gitkeep
|
|
205
|
+
- spec/dummy/log/.gitkeep
|
|
206
|
+
- spec/dummy/public/404.html
|
|
207
|
+
- spec/dummy/public/422.html
|
|
208
|
+
- spec/dummy/public/500.html
|
|
209
|
+
- spec/dummy/public/favicon.ico
|
|
210
|
+
- spec/dummy/script/rails
|
|
211
|
+
- spec/spec_helper.rb
|
|
212
|
+
- version.rb
|
|
213
|
+
- website_builder_engine.gemspec
|
|
214
|
+
- spec/dummy/log/development.log
|
|
215
|
+
- spec/dummy/tmp/cache/assets/C75/490/sprockets%2F1e0d2f4073555b7928e501a19b31671d
|
|
216
|
+
- spec/dummy/tmp/cache/assets/CD4/C70/sprockets%2F8ff1af16b259c5aa22b457019871a224
|
|
217
|
+
- spec/dummy/tmp/cache/assets/CD6/9A0/sprockets%2F8462da5451a36da30059c4c5380c5e9b
|
|
218
|
+
- spec/dummy/tmp/cache/assets/CDA/D60/sprockets%2F51c60195efef64b67e8c0f22040450c7
|
|
219
|
+
- spec/dummy/tmp/cache/assets/CE4/800/sprockets%2Ff51e2f300dff84483560c85911f9d40d
|
|
220
|
+
- spec/dummy/tmp/cache/assets/CF2/D30/sprockets%2F9317f5f8e200a69745cfff51872485bc
|
|
221
|
+
- spec/dummy/tmp/cache/assets/D08/990/sprockets%2F551904c44d1816252b89dad0db6ab88a
|
|
222
|
+
- spec/dummy/tmp/cache/assets/D13/650/sprockets%2F384368ed28ce1476382d6ea1d475bab3
|
|
223
|
+
- spec/dummy/tmp/cache/assets/D23/4F0/sprockets%2F7b0bf0b9bdda000509d661b54182ed20
|
|
224
|
+
- spec/dummy/tmp/cache/assets/D25/B90/sprockets%2Fafb1005a6180f5c5243ae1085c7d26ac
|
|
225
|
+
- spec/dummy/tmp/cache/assets/D36/F90/sprockets%2F35815c841fb60ee077a8b1a02ad464ff
|
|
226
|
+
- spec/dummy/tmp/cache/assets/D39/610/sprockets%2F5a73126bff478bf209f32c880b8ca10c
|
|
227
|
+
- spec/dummy/tmp/cache/assets/D47/340/sprockets%2Fa9054964cbf58ef00c9fea29d06844c2
|
|
228
|
+
- spec/dummy/tmp/cache/assets/D5F/630/sprockets%2Fe2b630c5f94ae10826b7a85e9aa5a1a0
|
|
229
|
+
- spec/dummy/tmp/cache/assets/D68/5F0/sprockets%2F9e69a7ac8f0b15b4266db8b6201ac33f
|
|
230
|
+
- spec/dummy/tmp/cache/assets/D68/F50/sprockets%2Fec6512ea82c3b07780a1dd444d7fe5c4
|
|
231
|
+
- spec/dummy/tmp/cache/assets/D83/860/sprockets%2F7e8e453fafeec4c6ec90e79c77701642
|
|
232
|
+
- spec/dummy/tmp/cache/assets/D90/780/sprockets%2Fcd1f60a3945b49a04ad96c26d09bbbc1
|
|
233
|
+
- spec/dummy/tmp/cache/assets/DBF/5F0/sprockets%2F1ca6a62e75cdf7022c7a9010ef5d1dce
|
|
234
|
+
- spec/dummy/tmp/cache/assets/DC2/D30/sprockets%2Fb2ec531b32d0bf86f0b2818aebb97c5c
|
|
235
|
+
- spec/dummy/tmp/cache/assets/DCD/630/sprockets%2F4f37ffe94b06ccaaa3f680d344dd156d
|
|
236
|
+
- spec/dummy/tmp/cache/assets/E2B/AB0/sprockets%2F592a260fe3fe1dcf7cb83c57ca5bcb6c
|
|
237
|
+
- spec/dummy/tmp/cache/assets/E7D/C70/sprockets%2Fa1acaa9c81d2ac5e4f6fcd0e7ba90fc2
|
|
238
|
+
- spec/dummy/tmp/sass-cache/07a657683498a2b638607139bd3584a2167d4650/_bourbon.css.scssc
|
|
239
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_animation.css.scssc
|
|
240
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_background-image.css.scssc
|
|
241
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_border-radius.css.scssc
|
|
242
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_box-shadow.css.scssc
|
|
243
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_box-sizing.css.scssc
|
|
244
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_flex-box.css.scssc
|
|
245
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_inline-block.css.scssc
|
|
246
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_linear-gradient.css.scssc
|
|
247
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_radial-gradient.css.scssc
|
|
248
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_transform.css.scssc
|
|
249
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_transition.css.scssc
|
|
250
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_golden-ratio.css.scssc
|
|
251
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_grid-width.css.scssc
|
|
252
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_linear-gradient.css.scssc
|
|
253
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_tint-shade.css.scssc
|
|
254
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/articles.css.scssc
|
|
255
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/base.css.scssc
|
|
256
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/home.css.scssc
|
|
257
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/layout.css.scssc
|
|
258
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/normalize.css.scssc
|
|
259
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/offerpages.css.scssc
|
|
260
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/scaffolds.css.scssc
|
|
261
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/settings.css.scssc
|
|
262
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/skeleton.css.scssc
|
|
263
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_animation-keyframes.css.scssc
|
|
264
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_button.css.scssc
|
|
265
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_position.css.scssc
|
|
266
|
+
homepage: https://github.com/DanielKehoe/website_builder_engine
|
|
267
|
+
licenses: []
|
|
268
|
+
|
|
269
|
+
post_install_message:
|
|
270
|
+
rdoc_options: []
|
|
271
|
+
|
|
272
|
+
require_paths:
|
|
273
|
+
- lib
|
|
274
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
275
|
+
none: false
|
|
276
|
+
requirements:
|
|
277
|
+
- - ">="
|
|
278
|
+
- !ruby/object:Gem::Version
|
|
279
|
+
hash: 2164567796813750037
|
|
280
|
+
segments:
|
|
281
|
+
- 0
|
|
282
|
+
version: "0"
|
|
283
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
|
+
none: false
|
|
285
|
+
requirements:
|
|
286
|
+
- - ">="
|
|
287
|
+
- !ruby/object:Gem::Version
|
|
288
|
+
hash: 2164567796813750037
|
|
289
|
+
segments:
|
|
290
|
+
- 0
|
|
291
|
+
version: "0"
|
|
292
|
+
requirements: []
|
|
293
|
+
|
|
294
|
+
rubyforge_project: website_builder_engine
|
|
295
|
+
rubygems_version: 1.8.6
|
|
296
|
+
signing_key:
|
|
297
|
+
specification_version: 3
|
|
298
|
+
summary: Rails 3.1 engine generates static HTML5 webpages.
|
|
299
|
+
test_files:
|
|
300
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
301
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
302
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
303
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
304
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
305
|
+
- spec/dummy/config/application.rb
|
|
306
|
+
- spec/dummy/config/boot.rb
|
|
307
|
+
- spec/dummy/config/database.yml
|
|
308
|
+
- spec/dummy/config/environment.rb
|
|
309
|
+
- spec/dummy/config/environments/development.rb
|
|
310
|
+
- spec/dummy/config/environments/production.rb
|
|
311
|
+
- spec/dummy/config/environments/test.rb
|
|
312
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
313
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
314
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
315
|
+
- spec/dummy/config/initializers/secret_token.rb
|
|
316
|
+
- spec/dummy/config/initializers/session_store.rb
|
|
317
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
318
|
+
- spec/dummy/config/locales/en.yml
|
|
319
|
+
- spec/dummy/config/mongoid.yml
|
|
320
|
+
- spec/dummy/config/routes.rb
|
|
321
|
+
- spec/dummy/config.ru
|
|
322
|
+
- spec/dummy/db/seeds.rb
|
|
323
|
+
- spec/dummy/log/development.log
|
|
324
|
+
- spec/dummy/public/404.html
|
|
325
|
+
- spec/dummy/public/422.html
|
|
326
|
+
- spec/dummy/public/500.html
|
|
327
|
+
- spec/dummy/public/favicon.ico
|
|
328
|
+
- spec/dummy/Rakefile
|
|
329
|
+
- spec/dummy/script/rails
|
|
330
|
+
- spec/dummy/tmp/cache/assets/C75/490/sprockets%2F1e0d2f4073555b7928e501a19b31671d
|
|
331
|
+
- spec/dummy/tmp/cache/assets/CD4/C70/sprockets%2F8ff1af16b259c5aa22b457019871a224
|
|
332
|
+
- spec/dummy/tmp/cache/assets/CD6/9A0/sprockets%2F8462da5451a36da30059c4c5380c5e9b
|
|
333
|
+
- spec/dummy/tmp/cache/assets/CDA/D60/sprockets%2F51c60195efef64b67e8c0f22040450c7
|
|
334
|
+
- spec/dummy/tmp/cache/assets/CE4/800/sprockets%2Ff51e2f300dff84483560c85911f9d40d
|
|
335
|
+
- spec/dummy/tmp/cache/assets/CF2/D30/sprockets%2F9317f5f8e200a69745cfff51872485bc
|
|
336
|
+
- spec/dummy/tmp/cache/assets/D08/990/sprockets%2F551904c44d1816252b89dad0db6ab88a
|
|
337
|
+
- spec/dummy/tmp/cache/assets/D13/650/sprockets%2F384368ed28ce1476382d6ea1d475bab3
|
|
338
|
+
- spec/dummy/tmp/cache/assets/D23/4F0/sprockets%2F7b0bf0b9bdda000509d661b54182ed20
|
|
339
|
+
- spec/dummy/tmp/cache/assets/D25/B90/sprockets%2Fafb1005a6180f5c5243ae1085c7d26ac
|
|
340
|
+
- spec/dummy/tmp/cache/assets/D36/F90/sprockets%2F35815c841fb60ee077a8b1a02ad464ff
|
|
341
|
+
- spec/dummy/tmp/cache/assets/D39/610/sprockets%2F5a73126bff478bf209f32c880b8ca10c
|
|
342
|
+
- spec/dummy/tmp/cache/assets/D47/340/sprockets%2Fa9054964cbf58ef00c9fea29d06844c2
|
|
343
|
+
- spec/dummy/tmp/cache/assets/D5F/630/sprockets%2Fe2b630c5f94ae10826b7a85e9aa5a1a0
|
|
344
|
+
- spec/dummy/tmp/cache/assets/D68/5F0/sprockets%2F9e69a7ac8f0b15b4266db8b6201ac33f
|
|
345
|
+
- spec/dummy/tmp/cache/assets/D68/F50/sprockets%2Fec6512ea82c3b07780a1dd444d7fe5c4
|
|
346
|
+
- spec/dummy/tmp/cache/assets/D83/860/sprockets%2F7e8e453fafeec4c6ec90e79c77701642
|
|
347
|
+
- spec/dummy/tmp/cache/assets/D90/780/sprockets%2Fcd1f60a3945b49a04ad96c26d09bbbc1
|
|
348
|
+
- spec/dummy/tmp/cache/assets/DBF/5F0/sprockets%2F1ca6a62e75cdf7022c7a9010ef5d1dce
|
|
349
|
+
- spec/dummy/tmp/cache/assets/DC2/D30/sprockets%2Fb2ec531b32d0bf86f0b2818aebb97c5c
|
|
350
|
+
- spec/dummy/tmp/cache/assets/DCD/630/sprockets%2F4f37ffe94b06ccaaa3f680d344dd156d
|
|
351
|
+
- spec/dummy/tmp/cache/assets/E2B/AB0/sprockets%2F592a260fe3fe1dcf7cb83c57ca5bcb6c
|
|
352
|
+
- spec/dummy/tmp/cache/assets/E7D/C70/sprockets%2Fa1acaa9c81d2ac5e4f6fcd0e7ba90fc2
|
|
353
|
+
- spec/dummy/tmp/sass-cache/07a657683498a2b638607139bd3584a2167d4650/_bourbon.css.scssc
|
|
354
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_animation.css.scssc
|
|
355
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_background-image.css.scssc
|
|
356
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_border-radius.css.scssc
|
|
357
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_box-shadow.css.scssc
|
|
358
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_box-sizing.css.scssc
|
|
359
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_flex-box.css.scssc
|
|
360
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_inline-block.css.scssc
|
|
361
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_linear-gradient.css.scssc
|
|
362
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_radial-gradient.css.scssc
|
|
363
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_transform.css.scssc
|
|
364
|
+
- spec/dummy/tmp/sass-cache/302fa2f8e11cbf2b27aef9efd86bcb75d6bdab91/_transition.css.scssc
|
|
365
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_golden-ratio.css.scssc
|
|
366
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_grid-width.css.scssc
|
|
367
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_linear-gradient.css.scssc
|
|
368
|
+
- spec/dummy/tmp/sass-cache/3e347f3bf8ced9c987ecde037b949470d018bfab/_tint-shade.css.scssc
|
|
369
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/articles.css.scssc
|
|
370
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/base.css.scssc
|
|
371
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/home.css.scssc
|
|
372
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/layout.css.scssc
|
|
373
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/normalize.css.scssc
|
|
374
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/offerpages.css.scssc
|
|
375
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/scaffolds.css.scssc
|
|
376
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/settings.css.scssc
|
|
377
|
+
- spec/dummy/tmp/sass-cache/a9c1e3ac894a5b61781a76d76a8c7b772398885d/skeleton.css.scssc
|
|
378
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_animation-keyframes.css.scssc
|
|
379
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_button.css.scssc
|
|
380
|
+
- spec/dummy/tmp/sass-cache/f1c65dd018f9339a34ca74374476e4ab413a30ed/_position.css.scssc
|
|
381
|
+
- spec/spec_helper.rb
|