preseason 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.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/CONTRIBUTING.md +18 -0
  4. data/Gemfile +4 -0
  5. data/Gemfile.lock +100 -0
  6. data/LICENSE.txt +23 -0
  7. data/README.md +129 -0
  8. data/Rakefile +1 -0
  9. data/bin/preseason +8 -0
  10. data/lib/Gemfile +4 -0
  11. data/lib/Rakefile +1 -0
  12. data/lib/play.rb +2 -0
  13. data/lib/preseason/colorize.rb +57 -0
  14. data/lib/preseason/config/authentication.rb +31 -0
  15. data/lib/preseason/config/database.rb +48 -0
  16. data/lib/preseason/config/factory.rb +19 -0
  17. data/lib/preseason/config/heroku.rb +17 -0
  18. data/lib/preseason/config/ie8.rb +17 -0
  19. data/lib/preseason/config.rb +6 -0
  20. data/lib/preseason/generator_context.rb +20 -0
  21. data/lib/preseason/recipe/active_admin.rb +7 -0
  22. data/lib/preseason/recipe/application.rb +6 -0
  23. data/lib/preseason/recipe/authlogic.rb +50 -0
  24. data/lib/preseason/recipe/bundle.rb +7 -0
  25. data/lib/preseason/recipe/custom_error_pages.rb +30 -0
  26. data/lib/preseason/recipe/database.rb +28 -0
  27. data/lib/preseason/recipe/devise.rb +9 -0
  28. data/lib/preseason/recipe/flash.rb +6 -0
  29. data/lib/preseason/recipe/foreman.rb +5 -0
  30. data/lib/preseason/recipe/gemfile.rb +147 -0
  31. data/lib/preseason/recipe/git.rb +62 -0
  32. data/lib/preseason/recipe/gitignore.rb +22 -0
  33. data/lib/preseason/recipe/guard.rb +7 -0
  34. data/lib/preseason/recipe/heroku.rb +12 -0
  35. data/lib/preseason/recipe/ie8.rb +18 -0
  36. data/lib/preseason/recipe/initializer.rb +20 -0
  37. data/lib/preseason/recipe/playbook.rb +69 -0
  38. data/lib/preseason/recipe/production.rb +36 -0
  39. data/lib/preseason/recipe/routes.rb +21 -0
  40. data/lib/preseason/recipe/rspec.rb +5 -0
  41. data/lib/preseason/recipe/rvm.rb +10 -0
  42. data/lib/preseason/recipe/schedule.rb +5 -0
  43. data/lib/preseason/recipe/spork_rspec.rb +7 -0
  44. data/lib/preseason/recipe/whiskey_disk.rb +5 -0
  45. data/lib/preseason/recipe.rb +38 -0
  46. data/lib/preseason/templates/authlogic/POST_INSTALL +10 -0
  47. data/lib/preseason/templates/authlogic/app/controllers/application_controller.rb +40 -0
  48. data/lib/preseason/templates/authlogic/app/controllers/user_session_controller.rb +58 -0
  49. data/lib/preseason/templates/authlogic/app/mailers/site_mailer.rb +5 -0
  50. data/lib/preseason/templates/authlogic/app/models/user.rb +11 -0
  51. data/lib/preseason/templates/authlogic/app/models/user_session.rb +2 -0
  52. data/lib/preseason/templates/authlogic/app/views/site_mailer/password_reset_instructions.html.erb +22 -0
  53. data/lib/preseason/templates/authlogic/app/views/user_session/acquire_password.html.erb +14 -0
  54. data/lib/preseason/templates/authlogic/app/views/user_session/forgot_password.html.erb +11 -0
  55. data/lib/preseason/templates/authlogic/app/views/user_session/new.html.erb +17 -0
  56. data/lib/preseason/templates/authlogic/config/routes.rb +11 -0
  57. data/lib/preseason/templates/authlogic/spec/factories/users.rb +11 -0
  58. data/lib/preseason/templates/custom_error_pages/app/views/errors/application_error.html.erb +5 -0
  59. data/lib/preseason/templates/custom_error_pages/app/views/errors/not_found.html.erb +5 -0
  60. data/lib/preseason/templates/custom_error_pages/app/views/errors/unprocessable_entity.html.erb +5 -0
  61. data/lib/preseason/templates/custom_error_pages/config/routes.rb +5 -0
  62. data/lib/preseason/templates/database/config/database.yml.dist.erb +19 -0
  63. data/lib/preseason/templates/database/config/database.yml.erb +19 -0
  64. data/lib/preseason/templates/flash/app/views/shared/_flash.html.erb +6 -0
  65. data/lib/preseason/templates/ie8/app/assets/javascripts/ie8.coffee +8 -0
  66. data/lib/preseason/templates/playbook/app/views/layouts/application.html.erb +31 -0
  67. data/lib/preseason/templates/readme/README.md.erb +17 -0
  68. data/lib/preseason/templates/schedule/config/schedule.rb +7 -0
  69. data/lib/preseason/templates/spec/spec_helper.erb +61 -0
  70. data/lib/preseason/templates/sqlite/config/database.yml +17 -0
  71. data/lib/preseason/templates/whiskey_disk/config/deploy.yml +7 -0
  72. data/lib/preseason/version.rb +3 -0
  73. data/lib/preseason.rb +82 -0
  74. data/preseason.gemspec +27 -0
  75. metadata +175 -0
@@ -0,0 +1,22 @@
1
+ <table width="600">
2
+ <tbody>
3
+ <tr>
4
+ <td style="padding:15px;">
5
+ <%= @user.first_name %>,
6
+
7
+ <p>A request to reset your <a href="CHANGEME.com">CHANGEME.com</a> password has been made.</p>
8
+
9
+ <p>If you did not make this request, please ignore this email.</p>
10
+
11
+ <p>If you did make this request, please click the following link to choose a new password:</p>
12
+
13
+ <p><%= link_to 'Reset Your Password', reset_password_url(:host => 'CHANGEME.com', :token => @user.perishable_token) %></p>
14
+
15
+ <p>
16
+ Thank you,<br />
17
+ CHANGEME staff
18
+ </p>
19
+ </td>
20
+ </tr>
21
+ </tbody>
22
+ </table>
@@ -0,0 +1,14 @@
1
+ <%= form_for :user, :url => reset_password_path(:token => @user.perishable_token), :html => {:method => 'post'} do |f| %>
2
+ <fieldset>
3
+ <legend>Reset your password</legend>
4
+
5
+ <%= f.label :password %>
6
+ <%= f.password_field :password %>
7
+
8
+ <%= f.label :password_confirmation, 'Password (again)' %>
9
+ <%= f.password_field :password_confirmation %>
10
+
11
+ <%= f.submit 'Update' %>
12
+ <%= link_to 'Cancel', root_path %>
13
+ </fieldset>
14
+ <% end %>
@@ -0,0 +1,11 @@
1
+ <%= form_tag forgot_password_path do %>
2
+ <fieldset>
3
+ <legend>Forgot Password</legend>
4
+
5
+ <%= label_tag :email, 'Enter the email you used to register' %>
6
+ <%= email_field_tag :email, params[:email] %>
7
+
8
+ <%= submit_tag 'Submit' %>
9
+ <%= link_to 'Cancel', login_path %>
10
+ </fieldset>
11
+ <% end %>
@@ -0,0 +1,17 @@
1
+ <%= form_for @user_session do |f| %>
2
+ <fieldset>
3
+ <legend>Sign In</legend>
4
+
5
+ <%= f.label :email %>
6
+ <%= f.text_field :email %></div>
7
+
8
+ <%= f.label :password %>
9
+ <%= f.password_field :password %>
10
+
11
+ <%= f.check_box :remember_me %> <label for="signin_remember_me">Remember Me</label>
12
+
13
+ <%= f.button 'Sign In' %>
14
+ </fieldset>
15
+ <% end %>
16
+
17
+ <p><%= link_to "Forgot Password?", forgot_password_path %>
@@ -0,0 +1,11 @@
1
+
2
+ # authentication routes
3
+ get :login, :to => 'user_session#new', :as => :login
4
+ post :login, :to => 'user_session#create', :as => :login
5
+ delete :logout, :to => 'user_session#destroy', :as => :logout
6
+ get :forgot_password, :to => 'user_session#forgot_password', :as => :forgot_password
7
+ post :forgot_password, :to => 'user_session#send_reset_password_link', :as => :forgot_password
8
+ get '/reset_password/:token', :to => 'user_session#acquire_password', :as => :reset_password
9
+ post '/reset_password/:token', :to => 'user_session#reset_password', :as => :reset_password
10
+ get :register, :to => 'users#new', :as => :register
11
+ post :register, :to => 'users#create', :as => :register
@@ -0,0 +1,11 @@
1
+ # Read about factories at https://github.com/thoughtbot/factory_girl
2
+
3
+ FactoryGirl.define do
4
+ factory :user do
5
+ first_name 'Test'
6
+ last_name 'User'
7
+ email 'testuser@example.com'
8
+ password 'test1234'
9
+ password_confirmation 'test1234'
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ <article class="page">
2
+ <h1>We're sorry, but something went wrong.</h1>
3
+
4
+ <p>Please try your request again. If you continue to experience problems, please let us know.</p>
5
+ </article>
@@ -0,0 +1,5 @@
1
+ <article class="page">
2
+ <h1>The page you were looking for doesn't exist.</h1>
3
+
4
+ <p>You may have mistyped the address or the page may have moved.</p>
5
+ </article>
@@ -0,0 +1,5 @@
1
+ <article class="page">
2
+ <h1>The change you wanted was rejected.</h1>
3
+
4
+ <p>Maybe you tried to change something you didn't have access to.</p>
5
+ </article>
@@ -0,0 +1,5 @@
1
+
2
+ # custom error routes
3
+ match '/404' => 'errors#not_found' , :via => [:get, :post]
4
+ match '/422' => 'errors#unprocessable_entity' , :via => [:get, :post]
5
+ match '/500' => 'errors#application_error' , :via => [:get, :post]
@@ -0,0 +1,19 @@
1
+ development:
2
+ adapter: <%= config.database.adapter_name %>
3
+ database: <%= app_name %>_development
4
+ username:
5
+ password:
6
+ host: localhost
7
+
8
+ test:
9
+ adapter: <%= config.database.adapter_name %>
10
+ database: <%= app_name %>_test
11
+ username:
12
+ password:
13
+ host: localhost
14
+
15
+ production:
16
+ adapter: <%= config.database.adapter_name %>
17
+ database: <%= app_name %>_production
18
+ username:
19
+ password:
@@ -0,0 +1,19 @@
1
+ development:
2
+ adapter: <%= config.database.adapter_name %>
3
+ database: <%= app_name %>_development
4
+ username: <%= config.database.username %>
5
+ password: <%= config.database.password %>
6
+ host: localhost
7
+
8
+ test:
9
+ adapter: <%= config.database.adapter_name %>
10
+ database: <%= app_name %>_test
11
+ username: <%= config.database.username %>
12
+ password: <%= config.database.password %>
13
+ host: localhost
14
+
15
+ production:
16
+ adapter: <%= config.database.adapter_name %>
17
+ database: <%= app_name %>_production
18
+ username: <%= config.database.username %>
19
+ password: <%= config.database.password %>
@@ -0,0 +1,6 @@
1
+ <% flash().each do |key, msg| %>
2
+ <div class="alert alert-<%= key %> fade in">
3
+ <%= link_to '&times;'.html_safe, '#', :class => 'close', 'data-dismiss' => 'alert' %>
4
+ <%= msg %>
5
+ </div>
6
+ <% end %>
@@ -0,0 +1,8 @@
1
+ ###
2
+ IE8
3
+ Adds Bourbon Neat support for Internet Explorer 8.
4
+ Read more: http://selectivizr.com/tests/respond/
5
+ ###
6
+
7
+ #= require selectivizr
8
+ #= require respond
@@ -0,0 +1,31 @@
1
+ <!DOCTYPE html>
2
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4
+ <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5
+ <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6
+ <head>
7
+ <meta charset="utf-8">
8
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
9
+ <title>Foo</title>
10
+ <meta name="viewport" content="width=device-width, initial-scale=1">
11
+
12
+ <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
13
+
14
+ <%= stylesheet_link_tag 'screen', :media => 'all' %>
15
+ <%= csrf_meta_tags %>
16
+ <%= javascript_include_tag :modernizr %>
17
+ </head>
18
+
19
+ <body>
20
+ <!--[if lt IE 7]>
21
+ <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
22
+ <![endif]-->
23
+
24
+ <%= render 'shared/flash' %>
25
+ <%= yield %>
26
+
27
+ <%= javascript_include_tag 'application' %>
28
+ <%# all page-specific elements go into content_for(:body_close) %>
29
+ <%= yield :body_close %>
30
+ </body>
31
+ </html>
@@ -0,0 +1,17 @@
1
+ <%= app_name %> Setup
2
+ =================
3
+
4
+ ```Shell
5
+ rvm gemset create <%= app_name %>
6
+ rvm gemset use <%= app_name %>
7
+ rvm --rvmrc --create 2.0.0@<%= app_name %> --ruby-version
8
+ bundle install
9
+ cp config/database.yml.dist config/database.yml
10
+ vi config/database.yml # put in your database configation details
11
+ rake db:create
12
+ rake db:migrate
13
+ rake db:seed
14
+ rails s
15
+ ```
16
+
17
+ This Rails app was created with help from [Centresource's](http://www.centresource.com/ "Centresource") [Preseason](http://github.com/centresource/preseason "Preseason") Project
@@ -0,0 +1,7 @@
1
+ # Use this file to easily define all of your cron jobs.
2
+
3
+ every :sunday, :at => '4am' do
4
+ rake "log:clear"
5
+ end
6
+
7
+ # Learn more: http://github.com/javan/whenever
@@ -0,0 +1,61 @@
1
+ require 'rubygems'
2
+ require 'spork'
3
+
4
+ if(ENV["SIMPLECOV"])
5
+ require 'simplecov'
6
+ SimpleCov.start 'rails' do
7
+ add_filter "/spec/"
8
+ end
9
+ puts "Running coverage tool\n"
10
+ end
11
+
12
+ Spork.prefork do
13
+ ENV["RAILS_ENV"] ||= 'test'
14
+ <% if config.authentication.devise? %>
15
+ require 'rails/application'
16
+ Spork.trap_method(Rails::Application::RoutesReloader, :reload!)
17
+ <% end %>
18
+
19
+ require File.expand_path("../../config/environment", __FILE__)
20
+ require 'rspec/rails'
21
+ <% if config.authentication.authlogic? %>
22
+
23
+ require 'authlogic/test_case'
24
+
25
+ include Authlogic::TestCase
26
+ <% end %>
27
+
28
+ Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
29
+
30
+ RSpec.configure do |config|
31
+ Capybara.javascript_driver = :webkit
32
+ config.mock_with :rspec
33
+ config.fixture_path = "\#{::Rails.root}/spec/factories"
34
+ config.use_transactional_fixtures = false
35
+
36
+ config.before(:suite) do
37
+ DatabaseCleaner.strategy = :transaction
38
+ DatabaseCleaner.clean_with :truncation
39
+ end
40
+
41
+ config.before(:each) do
42
+ if example.metadata[:use_truncation] || example.metadata[:js]
43
+ DatabaseCleaner.strategy = :truncation
44
+ else
45
+ DatabaseCleaner.start
46
+ end
47
+ end
48
+
49
+ config.after(:each) do
50
+ DatabaseCleaner.clean
51
+ if example.metadata[:use_truncation] || example.metadata[:js]
52
+ DatabaseCleaner.strategy = :transaction
53
+ end
54
+ end
55
+ end
56
+
57
+ end
58
+
59
+ Spork.each_run do
60
+ <%= "FactoryGirl.reload" if config.factory.factory_girl? %>
61
+ end
@@ -0,0 +1,17 @@
1
+ development:
2
+ adapter: sqlite3
3
+ database: db/development.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ test:
8
+ adapter: sqlite3
9
+ database: db/test.sqlite3
10
+ pool: 5
11
+ timeout: 5000
12
+
13
+ production:
14
+ adapter: sqlite3
15
+ database: db/production.sqlite3
16
+ pool: 5
17
+ timeout: 5000
@@ -0,0 +1,7 @@
1
+ staging:
2
+ domain: "deployment_user@staging.mydomain.com"
3
+ deploy_to: "/path/to/where/i/deploy/staging.mydomain.com"
4
+ repository: "https://github.com/username/project.git"
5
+ branch: "staging"
6
+ rake_env:
7
+ RAILS_ENV: 'production'
@@ -0,0 +1,3 @@
1
+ class Preseason
2
+ VERSION = "0.0.1"
3
+ end
data/lib/preseason.rb ADDED
@@ -0,0 +1,82 @@
1
+ require "preseason/version"
2
+ require 'ostruct'
3
+ require_relative 'preseason/generator_context'
4
+ require_relative 'preseason/colorize'
5
+ require_relative 'preseason/config'
6
+ require_relative 'preseason/recipe'
7
+
8
+ Dir.glob("#{File.expand_path(File.dirname(__FILE__))}/preseason/{recipe,config}/*").each do |path|
9
+ require path
10
+ end
11
+
12
+ class Preseason
13
+ include Colorize
14
+
15
+ attr_reader :config
16
+
17
+ def initialize(context)
18
+ Preseason::GeneratorContext.context = context
19
+
20
+ @config = OpenStruct.new(
21
+ :database => Preseason::Config::Database.new,
22
+ :factory => Preseason::Config::Factory.new,
23
+ :authentication => Preseason::Config::Authentication.new,
24
+ :ie8 => Preseason::Config::IE8.new,
25
+ :heroku => Preseason::Config::Heroku.new
26
+ )
27
+ end
28
+
29
+ def game_on!
30
+ ask_for_config
31
+ prepare_recipes
32
+ display_post_install_messages
33
+ end
34
+
35
+ private
36
+ def ask_for_config
37
+ config.database.ask_user
38
+ config.factory.ask_user
39
+ config.authentication.ask_user
40
+ config.heroku.ask_user if config.database.postgres?
41
+ config.ie8.ask_user
42
+ end
43
+
44
+ def prepare_recipes
45
+ recipes.each &:prepare
46
+ end
47
+
48
+ def display_post_install_messages
49
+ recipes.each do |recipe|
50
+ readme "#{recipe.recipe_root}/#{recipe.post_install_hook}" if recipe.post_install_hook
51
+ end
52
+ end
53
+
54
+ def recipes
55
+ @recipes ||= %w(
56
+ Rvm
57
+ Gemfile
58
+ Gitignore
59
+ Database
60
+ Production
61
+ Bundle
62
+ Flash
63
+ Application
64
+ Schedule
65
+ Rspec
66
+ WhiskeyDisk
67
+ Foreman
68
+ Authlogic
69
+ Devise
70
+ ActiveAdmin
71
+ CustomErrorPages
72
+ Guard
73
+ SporkRspec
74
+ Playbook
75
+ Initializer
76
+ IE8
77
+ Routes
78
+ Git
79
+ Heroku
80
+ ).map { |recipe_name| "Preseason::Recipe::#{recipe_name}".constantize.new(config) }
81
+ end
82
+ end
data/preseason.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'preseason/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.required_ruby_version = '>= 2.0.0'
8
+ spec.name = "preseason"
9
+ spec.version = Preseason::VERSION
10
+ spec.authors = ["Centresource Interactive Agency"]
11
+ spec.email = ["dev@centresource.com"]
12
+ spec.description = %q{An opinionated Rails application starter kit}
13
+ spec.summary = %q{We start a lot of new Rails projects; this gem is intended to reduce that spin up time by bringing in the tools we use in one fell swoop.}
14
+ spec.homepage = "https://github.com/centresource/preseason"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files`.split($/)
18
+ spec.executables = ["preseason"]
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency 'rails', '~> 4.0'
23
+
24
+ spec.add_development_dependency 'pry', '~> 0'
25
+ spec.add_development_dependency 'bundler', '~> 1.3'
26
+ spec.add_development_dependency 'rake', '~> 0'
27
+ end
metadata ADDED
@@ -0,0 +1,175 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: preseason
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Centresource Interactive Agency
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: An opinionated Rails application starter kit
70
+ email:
71
+ - dev@centresource.com
72
+ executables:
73
+ - preseason
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - .gitignore
78
+ - CONTRIBUTING.md
79
+ - Gemfile
80
+ - Gemfile.lock
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/preseason
85
+ - lib/Gemfile
86
+ - lib/Rakefile
87
+ - lib/play.rb
88
+ - lib/preseason.rb
89
+ - lib/preseason/colorize.rb
90
+ - lib/preseason/config.rb
91
+ - lib/preseason/config/authentication.rb
92
+ - lib/preseason/config/database.rb
93
+ - lib/preseason/config/factory.rb
94
+ - lib/preseason/config/heroku.rb
95
+ - lib/preseason/config/ie8.rb
96
+ - lib/preseason/generator_context.rb
97
+ - lib/preseason/recipe.rb
98
+ - lib/preseason/recipe/active_admin.rb
99
+ - lib/preseason/recipe/application.rb
100
+ - lib/preseason/recipe/authlogic.rb
101
+ - lib/preseason/recipe/bundle.rb
102
+ - lib/preseason/recipe/custom_error_pages.rb
103
+ - lib/preseason/recipe/database.rb
104
+ - lib/preseason/recipe/devise.rb
105
+ - lib/preseason/recipe/flash.rb
106
+ - lib/preseason/recipe/foreman.rb
107
+ - lib/preseason/recipe/gemfile.rb
108
+ - lib/preseason/recipe/git.rb
109
+ - lib/preseason/recipe/gitignore.rb
110
+ - lib/preseason/recipe/guard.rb
111
+ - lib/preseason/recipe/heroku.rb
112
+ - lib/preseason/recipe/ie8.rb
113
+ - lib/preseason/recipe/initializer.rb
114
+ - lib/preseason/recipe/playbook.rb
115
+ - lib/preseason/recipe/production.rb
116
+ - lib/preseason/recipe/routes.rb
117
+ - lib/preseason/recipe/rspec.rb
118
+ - lib/preseason/recipe/rvm.rb
119
+ - lib/preseason/recipe/schedule.rb
120
+ - lib/preseason/recipe/spork_rspec.rb
121
+ - lib/preseason/recipe/whiskey_disk.rb
122
+ - lib/preseason/templates/authlogic/POST_INSTALL
123
+ - lib/preseason/templates/authlogic/app/controllers/application_controller.rb
124
+ - lib/preseason/templates/authlogic/app/controllers/user_session_controller.rb
125
+ - lib/preseason/templates/authlogic/app/mailers/site_mailer.rb
126
+ - lib/preseason/templates/authlogic/app/models/user.rb
127
+ - lib/preseason/templates/authlogic/app/models/user_session.rb
128
+ - lib/preseason/templates/authlogic/app/views/site_mailer/password_reset_instructions.html.erb
129
+ - lib/preseason/templates/authlogic/app/views/user_session/acquire_password.html.erb
130
+ - lib/preseason/templates/authlogic/app/views/user_session/forgot_password.html.erb
131
+ - lib/preseason/templates/authlogic/app/views/user_session/new.html.erb
132
+ - lib/preseason/templates/authlogic/config/routes.rb
133
+ - lib/preseason/templates/authlogic/spec/factories/users.rb
134
+ - lib/preseason/templates/custom_error_pages/app/views/errors/application_error.html.erb
135
+ - lib/preseason/templates/custom_error_pages/app/views/errors/not_found.html.erb
136
+ - lib/preseason/templates/custom_error_pages/app/views/errors/unprocessable_entity.html.erb
137
+ - lib/preseason/templates/custom_error_pages/config/routes.rb
138
+ - lib/preseason/templates/database/config/database.yml.dist.erb
139
+ - lib/preseason/templates/database/config/database.yml.erb
140
+ - lib/preseason/templates/flash/app/views/shared/_flash.html.erb
141
+ - lib/preseason/templates/ie8/app/assets/javascripts/ie8.coffee
142
+ - lib/preseason/templates/playbook/app/views/layouts/application.html.erb
143
+ - lib/preseason/templates/readme/README.md.erb
144
+ - lib/preseason/templates/schedule/config/schedule.rb
145
+ - lib/preseason/templates/spec/spec_helper.erb
146
+ - lib/preseason/templates/sqlite/config/database.yml
147
+ - lib/preseason/templates/whiskey_disk/config/deploy.yml
148
+ - lib/preseason/version.rb
149
+ - preseason.gemspec
150
+ homepage: https://github.com/centresource/preseason
151
+ licenses:
152
+ - MIT
153
+ metadata: {}
154
+ post_install_message:
155
+ rdoc_options: []
156
+ require_paths:
157
+ - lib
158
+ required_ruby_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - '>='
161
+ - !ruby/object:Gem::Version
162
+ version: 2.0.0
163
+ required_rubygems_version: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ requirements: []
169
+ rubyforge_project:
170
+ rubygems_version: 2.2.2
171
+ signing_key:
172
+ specification_version: 4
173
+ summary: We start a lot of new Rails projects; this gem is intended to reduce that
174
+ spin up time by bringing in the tools we use in one fell swoop.
175
+ test_files: []