happy_seed 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 (102) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/bin/happy_seed +7 -0
  5. data/happy_seed.rb +45 -0
  6. data/lib/generators/happy_seed/.DS_Store +0 -0
  7. data/lib/generators/happy_seed/bootstrap/bootstrap_generator.rb +31 -0
  8. data/lib/generators/happy_seed/bootstrap/templates/app/assets/javascripts/application.js +15 -0
  9. data/lib/generators/happy_seed/bootstrap/templates/app/assets/stylesheets/application/index.css.scss +7 -0
  10. data/lib/generators/happy_seed/bootstrap/templates/app/assets/stylesheets/application/variables.css.scss +12 -0
  11. data/lib/generators/happy_seed/bootstrap/templates/app/helpers/application_helper.rb +19 -0
  12. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_chromeframe.html.haml +4 -0
  13. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_flashes.html.haml +8 -0
  14. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_footer.html.haml +8 -0
  15. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_head.html.haml +13 -0
  16. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_header.html.haml +16 -0
  17. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_javascripts.html.haml +12 -0
  18. data/lib/generators/happy_seed/bootstrap/templates/app/views/application/_stylesheets.html.haml +4 -0
  19. data/lib/generators/happy_seed/bootstrap/templates/app/views/layouts/application.html.haml +16 -0
  20. data/lib/generators/happy_seed/bootstrap/templates/docs/README.01.bootstrap.rdoc +31 -0
  21. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/_form.html.haml +19 -0
  22. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/edit.html.haml +10 -0
  23. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/index.html.haml +26 -0
  24. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/new.html.haml +8 -0
  25. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/show.html.haml +15 -0
  26. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/rails/.DS_Store +0 -0
  27. data/lib/generators/happy_seed/bootstrap/templates/lib/templates/rails/scaffold_controller/controller.rb +54 -0
  28. data/lib/generators/happy_seed/devise/devise_generator.rb +37 -0
  29. data/lib/generators/happy_seed/devise/templates/app/views/devise/passwords/edit.html.haml +31 -0
  30. data/lib/generators/happy_seed/devise/templates/app/views/devise/passwords/new.html.haml +27 -0
  31. data/lib/generators/happy_seed/devise/templates/app/views/devise/registrations/new.html.haml +34 -0
  32. data/lib/generators/happy_seed/devise/templates/app/views/devise/sessions/new.html.haml +38 -0
  33. data/lib/generators/happy_seed/devise/templates/docs/README.03.devise.rdoc +24 -0
  34. data/lib/generators/happy_seed/facebook/facebook_generator.rb +50 -0
  35. data/lib/generators/happy_seed/facebook/templates/docs/README.06.facebook.rdoc +24 -0
  36. data/lib/generators/happy_seed/foreman/foreman_generator.rb +27 -0
  37. data/lib/generators/happy_seed/foreman/templates/.env +5 -0
  38. data/lib/generators/happy_seed/foreman/templates/.foreman +1 -0
  39. data/lib/generators/happy_seed/foreman/templates/Procfile +1 -0
  40. data/lib/generators/happy_seed/foreman/templates/app/controllers/.DS_Store +0 -0
  41. data/lib/generators/happy_seed/foreman/templates/app/controllers/setup_controller.rb +29 -0
  42. data/lib/generators/happy_seed/foreman/templates/app/views/setup/index.html.haml +31 -0
  43. data/lib/generators/happy_seed/foreman/templates/application_controller.rb +10 -0
  44. data/lib/generators/happy_seed/foreman/templates/config/unicorn.rb +33 -0
  45. data/lib/generators/happy_seed/foreman/templates/docs/README.00.base.rdoc +34 -0
  46. data/lib/generators/happy_seed/omniauth/omniauth_generator.rb +48 -0
  47. data/lib/generators/happy_seed/omniauth/templates/app/controllers/omniauth_callbacks_controller.rb +29 -0
  48. data/lib/generators/happy_seed/omniauth/templates/app/models/identity.rb +11 -0
  49. data/lib/generators/happy_seed/omniauth/templates/docs/README.04.omniauth.rdoc +27 -0
  50. data/lib/generators/happy_seed/omniauth/templates/user.rb +51 -0
  51. data/lib/generators/happy_seed/splash/splash_generator.rb +44 -0
  52. data/lib/generators/happy_seed/splash/templates/app/controllers/splash_controller.rb +55 -0
  53. data/lib/generators/happy_seed/splash/templates/app/views/layouts/splash.html.haml +14 -0
  54. data/lib/generators/happy_seed/splash/templates/app/views/splash/_environment_checks.html.haml +45 -0
  55. data/lib/generators/happy_seed/splash/templates/app/views/splash/index.html.haml +23 -0
  56. data/lib/generators/happy_seed/splash/templates/app/views/splash/signup.js.erb +8 -0
  57. data/lib/generators/happy_seed/splash/templates/docs/README.02.splash.rdoc +29 -0
  58. data/lib/generators/happy_seed/twitter/.DS_Store +0 -0
  59. data/lib/generators/happy_seed/twitter/templates/docs/README.05.twitter.rdoc +24 -0
  60. data/lib/generators/happy_seed/twitter/twitter_generator.rb +50 -0
  61. data/lib/generators/seed/bootstrap/templates/lib/templates/rails/.DS_Store +0 -0
  62. data/lib/happy_seed.rb +2 -0
  63. data/lib/happy_seed/version.rb +3 -0
  64. data/lib/tasks/seed_tasks.rake +4 -0
  65. data/test/dummy/README.rdoc +28 -0
  66. data/test/dummy/Rakefile +6 -0
  67. data/test/dummy/app/assets/javascripts/application.js +13 -0
  68. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  69. data/test/dummy/app/controllers/application_controller.rb +5 -0
  70. data/test/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  72. data/test/dummy/bin/bundle +3 -0
  73. data/test/dummy/bin/rails +4 -0
  74. data/test/dummy/bin/rake +4 -0
  75. data/test/dummy/config.ru +4 -0
  76. data/test/dummy/config/application.rb +23 -0
  77. data/test/dummy/config/boot.rb +5 -0
  78. data/test/dummy/config/database.yml +25 -0
  79. data/test/dummy/config/environment.rb +5 -0
  80. data/test/dummy/config/environments/development.rb +37 -0
  81. data/test/dummy/config/environments/production.rb +82 -0
  82. data/test/dummy/config/environments/test.rb +39 -0
  83. data/test/dummy/config/initializers/assets.rb +8 -0
  84. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  85. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  86. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  87. data/test/dummy/config/initializers/inflections.rb +16 -0
  88. data/test/dummy/config/initializers/mime_types.rb +4 -0
  89. data/test/dummy/config/initializers/session_store.rb +3 -0
  90. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  91. data/test/dummy/config/locales/en.yml +23 -0
  92. data/test/dummy/config/routes.rb +56 -0
  93. data/test/dummy/config/secrets.yml +22 -0
  94. data/test/dummy/db/test.sqlite3 +0 -0
  95. data/test/dummy/log/test.log +10 -0
  96. data/test/dummy/public/404.html +67 -0
  97. data/test/dummy/public/422.html +67 -0
  98. data/test/dummy/public/500.html +66 -0
  99. data/test/dummy/public/favicon.ico +0 -0
  100. data/test/seed_test.rb +7 -0
  101. data/test/test_helper.rb +15 -0
  102. metadata +213 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 26e60c5911152f307cc1dabb05e7c72ba887becd86648e586eddc3f43a69a6f62784e712f940fe2aae404af383ff7aa0660d9dd351907b8dd8102d31b02fa8c7
15
+
16
+ test:
17
+ secret_key_base: 5839f435a469b1970d65b9e095029250a901df4e0394af819549c1f74f955000447ea37d4f3595d2bcb3d2bb5c643726e757d1d33e528c384032c18f797e0a5d
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
@@ -0,0 +1,10 @@
1
+  (0.1ms) begin transaction
2
+ --------------------
3
+ HappySeedTest: test_truth
4
+ --------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ --------------------
8
+ HappySeedTest: test_truth
9
+ --------------------
10
+  (0.0ms) rollback transaction
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
data/test/seed_test.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class HappySeedTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, HappySeed
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
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
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: happy_seed
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Will Schenk
8
+ - Ricky Reusser
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-07-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: 4.1.4
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: 4.1.4
28
+ - !ruby/object:Gem::Dependency
29
+ name: sqlite3
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ description: HappySeed is a project that will build up a rails apps using some common
43
+ best practices.
44
+ email:
45
+ - will@happyfuncorp.com
46
+ executables:
47
+ - happy_seed
48
+ extensions: []
49
+ extra_rdoc_files: []
50
+ files:
51
+ - MIT-LICENSE
52
+ - Rakefile
53
+ - bin/happy_seed
54
+ - happy_seed.rb
55
+ - lib/generators/happy_seed/.DS_Store
56
+ - lib/generators/happy_seed/bootstrap/bootstrap_generator.rb
57
+ - lib/generators/happy_seed/bootstrap/templates/app/assets/javascripts/application.js
58
+ - lib/generators/happy_seed/bootstrap/templates/app/assets/stylesheets/application/index.css.scss
59
+ - lib/generators/happy_seed/bootstrap/templates/app/assets/stylesheets/application/variables.css.scss
60
+ - lib/generators/happy_seed/bootstrap/templates/app/helpers/application_helper.rb
61
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_chromeframe.html.haml
62
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_flashes.html.haml
63
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_footer.html.haml
64
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_head.html.haml
65
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_header.html.haml
66
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_javascripts.html.haml
67
+ - lib/generators/happy_seed/bootstrap/templates/app/views/application/_stylesheets.html.haml
68
+ - lib/generators/happy_seed/bootstrap/templates/app/views/layouts/application.html.haml
69
+ - lib/generators/happy_seed/bootstrap/templates/docs/README.01.bootstrap.rdoc
70
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/_form.html.haml
71
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/edit.html.haml
72
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/index.html.haml
73
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/new.html.haml
74
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/haml/scaffold/show.html.haml
75
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/rails/.DS_Store
76
+ - lib/generators/happy_seed/bootstrap/templates/lib/templates/rails/scaffold_controller/controller.rb
77
+ - lib/generators/happy_seed/devise/devise_generator.rb
78
+ - lib/generators/happy_seed/devise/templates/app/views/devise/passwords/edit.html.haml
79
+ - lib/generators/happy_seed/devise/templates/app/views/devise/passwords/new.html.haml
80
+ - lib/generators/happy_seed/devise/templates/app/views/devise/registrations/new.html.haml
81
+ - lib/generators/happy_seed/devise/templates/app/views/devise/sessions/new.html.haml
82
+ - lib/generators/happy_seed/devise/templates/docs/README.03.devise.rdoc
83
+ - lib/generators/happy_seed/facebook/facebook_generator.rb
84
+ - lib/generators/happy_seed/facebook/templates/docs/README.06.facebook.rdoc
85
+ - lib/generators/happy_seed/foreman/foreman_generator.rb
86
+ - lib/generators/happy_seed/foreman/templates/.env
87
+ - lib/generators/happy_seed/foreman/templates/.foreman
88
+ - lib/generators/happy_seed/foreman/templates/Procfile
89
+ - lib/generators/happy_seed/foreman/templates/app/controllers/.DS_Store
90
+ - lib/generators/happy_seed/foreman/templates/app/controllers/setup_controller.rb
91
+ - lib/generators/happy_seed/foreman/templates/app/views/setup/index.html.haml
92
+ - lib/generators/happy_seed/foreman/templates/application_controller.rb
93
+ - lib/generators/happy_seed/foreman/templates/config/unicorn.rb
94
+ - lib/generators/happy_seed/foreman/templates/docs/README.00.base.rdoc
95
+ - lib/generators/happy_seed/omniauth/omniauth_generator.rb
96
+ - lib/generators/happy_seed/omniauth/templates/app/controllers/omniauth_callbacks_controller.rb
97
+ - lib/generators/happy_seed/omniauth/templates/app/models/identity.rb
98
+ - lib/generators/happy_seed/omniauth/templates/docs/README.04.omniauth.rdoc
99
+ - lib/generators/happy_seed/omniauth/templates/user.rb
100
+ - lib/generators/happy_seed/splash/splash_generator.rb
101
+ - lib/generators/happy_seed/splash/templates/app/controllers/splash_controller.rb
102
+ - lib/generators/happy_seed/splash/templates/app/views/layouts/splash.html.haml
103
+ - lib/generators/happy_seed/splash/templates/app/views/splash/_environment_checks.html.haml
104
+ - lib/generators/happy_seed/splash/templates/app/views/splash/index.html.haml
105
+ - lib/generators/happy_seed/splash/templates/app/views/splash/signup.js.erb
106
+ - lib/generators/happy_seed/splash/templates/docs/README.02.splash.rdoc
107
+ - lib/generators/happy_seed/twitter/.DS_Store
108
+ - lib/generators/happy_seed/twitter/templates/docs/README.05.twitter.rdoc
109
+ - lib/generators/happy_seed/twitter/twitter_generator.rb
110
+ - lib/generators/seed/bootstrap/templates/lib/templates/rails/.DS_Store
111
+ - lib/happy_seed.rb
112
+ - lib/happy_seed/version.rb
113
+ - lib/tasks/seed_tasks.rake
114
+ - test/dummy/README.rdoc
115
+ - test/dummy/Rakefile
116
+ - test/dummy/app/assets/javascripts/application.js
117
+ - test/dummy/app/assets/stylesheets/application.css
118
+ - test/dummy/app/controllers/application_controller.rb
119
+ - test/dummy/app/helpers/application_helper.rb
120
+ - test/dummy/app/views/layouts/application.html.erb
121
+ - test/dummy/bin/bundle
122
+ - test/dummy/bin/rails
123
+ - test/dummy/bin/rake
124
+ - test/dummy/config.ru
125
+ - test/dummy/config/application.rb
126
+ - test/dummy/config/boot.rb
127
+ - test/dummy/config/database.yml
128
+ - test/dummy/config/environment.rb
129
+ - test/dummy/config/environments/development.rb
130
+ - test/dummy/config/environments/production.rb
131
+ - test/dummy/config/environments/test.rb
132
+ - test/dummy/config/initializers/assets.rb
133
+ - test/dummy/config/initializers/backtrace_silencers.rb
134
+ - test/dummy/config/initializers/cookies_serializer.rb
135
+ - test/dummy/config/initializers/filter_parameter_logging.rb
136
+ - test/dummy/config/initializers/inflections.rb
137
+ - test/dummy/config/initializers/mime_types.rb
138
+ - test/dummy/config/initializers/session_store.rb
139
+ - test/dummy/config/initializers/wrap_parameters.rb
140
+ - test/dummy/config/locales/en.yml
141
+ - test/dummy/config/routes.rb
142
+ - test/dummy/config/secrets.yml
143
+ - test/dummy/db/test.sqlite3
144
+ - test/dummy/log/test.log
145
+ - test/dummy/public/404.html
146
+ - test/dummy/public/422.html
147
+ - test/dummy/public/500.html
148
+ - test/dummy/public/favicon.ico
149
+ - test/seed_test.rb
150
+ - test/test_helper.rb
151
+ homepage: https://github.com/sublimeguile/happy_seed
152
+ licenses:
153
+ - MIT
154
+ metadata: {}
155
+ post_install_message:
156
+ rdoc_options: []
157
+ require_paths:
158
+ - lib
159
+ required_ruby_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - '>='
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - '>='
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ requirements: []
170
+ rubyforge_project:
171
+ rubygems_version: 2.2.2
172
+ signing_key:
173
+ specification_version: 4
174
+ summary: HappySeed is a project that will build up a rails apps using some common
175
+ best practices.
176
+ test_files:
177
+ - test/dummy/app/assets/javascripts/application.js
178
+ - test/dummy/app/assets/stylesheets/application.css
179
+ - test/dummy/app/controllers/application_controller.rb
180
+ - test/dummy/app/helpers/application_helper.rb
181
+ - test/dummy/app/views/layouts/application.html.erb
182
+ - test/dummy/bin/bundle
183
+ - test/dummy/bin/rails
184
+ - test/dummy/bin/rake
185
+ - test/dummy/config/application.rb
186
+ - test/dummy/config/boot.rb
187
+ - test/dummy/config/database.yml
188
+ - test/dummy/config/environment.rb
189
+ - test/dummy/config/environments/development.rb
190
+ - test/dummy/config/environments/production.rb
191
+ - test/dummy/config/environments/test.rb
192
+ - test/dummy/config/initializers/assets.rb
193
+ - test/dummy/config/initializers/backtrace_silencers.rb
194
+ - test/dummy/config/initializers/cookies_serializer.rb
195
+ - test/dummy/config/initializers/filter_parameter_logging.rb
196
+ - test/dummy/config/initializers/inflections.rb
197
+ - test/dummy/config/initializers/mime_types.rb
198
+ - test/dummy/config/initializers/session_store.rb
199
+ - test/dummy/config/initializers/wrap_parameters.rb
200
+ - test/dummy/config/locales/en.yml
201
+ - test/dummy/config/routes.rb
202
+ - test/dummy/config/secrets.yml
203
+ - test/dummy/config.ru
204
+ - test/dummy/db/test.sqlite3
205
+ - test/dummy/log/test.log
206
+ - test/dummy/public/404.html
207
+ - test/dummy/public/422.html
208
+ - test/dummy/public/500.html
209
+ - test/dummy/public/favicon.ico
210
+ - test/dummy/Rakefile
211
+ - test/dummy/README.rdoc
212
+ - test/seed_test.rb
213
+ - test/test_helper.rb