enginizer 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 (100) hide show
  1. data/.gitignore +17 -0
  2. data/.rvmrc +52 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/bin/enginizer +5 -0
  8. data/enginizer.gemspec +23 -0
  9. data/lib/core_ext/string.rb +6 -0
  10. data/lib/enginizer.rb +2 -0
  11. data/lib/enginizer/app.rb +10 -0
  12. data/lib/enginizer/cli.rb +15 -0
  13. data/lib/enginizer/cmd.rb +1 -0
  14. data/lib/enginizer/extension.rb +82 -0
  15. data/lib/enginizer/templates/%namespaced_name%/%namespaced_name%.gemspec.tt +28 -0
  16. data/lib/enginizer/templates/%namespaced_name%/.rspec +5 -0
  17. data/lib/enginizer/templates/%namespaced_name%/.rvmrc.tt +21 -0
  18. data/lib/enginizer/templates/%namespaced_name%/Gemfile +20 -0
  19. data/lib/enginizer/templates/%namespaced_name%/Guardfile +37 -0
  20. data/lib/enginizer/templates/%namespaced_name%/MIT-LICENSE.tt +20 -0
  21. data/lib/enginizer/templates/%namespaced_name%/README.md.tt +3 -0
  22. data/lib/enginizer/templates/%namespaced_name%/Rakefile.tt +32 -0
  23. data/lib/enginizer/templates/%namespaced_name%/app/assets/images/%namespace%/admin/.gitkeep +0 -0
  24. data/lib/enginizer/templates/%namespaced_name%/app/assets/images/%namespace%/application/.gitkeep +0 -0
  25. data/lib/enginizer/templates/%namespaced_name%/app/assets/javascripts/%namespace%/admin/index.js.coffee +1 -0
  26. data/lib/enginizer/templates/%namespaced_name%/app/assets/javascripts/%namespace%/application/index.js.coffee +1 -0
  27. data/lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/admin.css.sass +1 -0
  28. data/lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/admin/.gitkeep +0 -0
  29. data/lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/application.css.sass +1 -0
  30. data/lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/application/.gitkeep +0 -0
  31. data/lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/admin/.gitkeep +0 -0
  32. data/lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/application/.gitkeep +0 -0
  33. data/lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/application_controller.rb.tt +4 -0
  34. data/lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/admin/.gitkeep +0 -0
  35. data/lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/application/.gitkeep +0 -0
  36. data/lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/application_helper.rb.tt +4 -0
  37. data/lib/enginizer/templates/%namespaced_name%/app/models/%namespace%.rb.tt +5 -0
  38. data/lib/enginizer/templates/%namespaced_name%/app/models/%namespace%/.gitkeep +0 -0
  39. data/lib/enginizer/templates/%namespaced_name%/app/views/%namespace%/admin/.gitkeep +0 -0
  40. data/lib/enginizer/templates/%namespaced_name%/app/views/%namespace%/application/.gitkeep +0 -0
  41. data/lib/enginizer/templates/%namespaced_name%/app/views/layouts/%namespace%/.gitkeep +0 -0
  42. data/lib/enginizer/templates/%namespaced_name%/config/routes.rb.tt +3 -0
  43. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%.rb.tt +16 -0
  44. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/configuration.rb.tt +11 -0
  45. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/engine.rb.tt +36 -0
  46. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/version.rb.tt +5 -0
  47. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/testing_support/factories.rb +5 -0
  48. data/lib/enginizer/templates/%namespaced_name%/lib/%namespace%/testing_support/factories/.gitkeep +0 -0
  49. data/lib/enginizer/templates/%namespaced_name%/lib/%namespaced_name%.rb.tt +1 -0
  50. data/lib/enginizer/templates/%namespaced_name%/lib/tasks/%namespaced_name%_tasks.rake.tt +4 -0
  51. data/lib/enginizer/templates/%namespaced_name%/script/rails.tt +8 -0
  52. data/lib/enginizer/templates/%namespaced_name%/spec/%namespace%/%extension_name%/.gitkeep +0 -0
  53. data/lib/enginizer/templates/%namespaced_name%/spec/%namespace%/%extension_name%_spec.rb.tt +2 -0
  54. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/README.rdoc +261 -0
  55. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/Rakefile +7 -0
  56. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/images/.gitkeep +0 -0
  57. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/javascripts/application.js +15 -0
  58. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/stylesheets/application.css +13 -0
  59. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/controllers/application_controller.rb +3 -0
  60. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/helpers/application_helper.rb +2 -0
  61. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/mailers/.gitkeep +0 -0
  62. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/models/.gitkeep +0 -0
  63. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/app/views/layouts/application.html.erb +14 -0
  64. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config.ru +4 -0
  65. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/application.rb.tt +65 -0
  66. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/boot.rb +10 -0
  67. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/database.yml +25 -0
  68. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environment.rb +5 -0
  69. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/development.rb +37 -0
  70. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/production.rb +67 -0
  71. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/test.rb +37 -0
  72. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  73. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/inflections.rb +15 -0
  74. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/mime_types.rb +5 -0
  75. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/secret_token.rb +7 -0
  76. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/session_store.rb +8 -0
  77. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/teabag.rb.tt +58 -0
  78. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  79. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/locales/en.yml +5 -0
  80. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/config/routes.rb.tt +4 -0
  81. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/db/.gitkeep +0 -0
  82. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/lib/assets/.gitkeep +0 -0
  83. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/log/.gitkeep +0 -0
  84. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/public/404.html +26 -0
  85. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/public/422.html +26 -0
  86. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/public/500.html +25 -0
  87. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/public/favicon.ico +0 -0
  88. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/script/rails +6 -0
  89. data/lib/enginizer/templates/%namespaced_name%/spec/dummy/spec/.gitkeep +0 -0
  90. data/lib/enginizer/templates/%namespaced_name%/spec/factory_spec.rb +7 -0
  91. data/lib/enginizer/templates/%namespaced_name%/spec/javascripts/fixtures/.empty_directory +0 -0
  92. data/lib/enginizer/templates/%namespaced_name%/spec/javascripts/nfinity/admin/.empty_directory +0 -0
  93. data/lib/enginizer/templates/%namespaced_name%/spec/javascripts/nfinity/application/.empty_directory +0 -0
  94. data/lib/enginizer/templates/%namespaced_name%/spec/javascripts/spec_helper.coffee +1 -0
  95. data/lib/enginizer/templates/%namespaced_name%/spec/javascripts/support/.gitkeep +0 -0
  96. data/lib/enginizer/templates/%namespaced_name%/spec/spec_helper.rb.tt +49 -0
  97. data/lib/enginizer/templates/%namespaced_name%/spec/support/.gitkeep +0 -0
  98. data/lib/enginizer/templates/%namespaced_name%/spec/teabag_env.rb +17 -0
  99. data/lib/enginizer/version.rb +5 -0
  100. metadata +193 -0
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount <%= namespace.camel_case %>::<%= extension_name.camel_case %>::Engine => "/<%= namespaced_name %>"
4
+ end
@@ -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,25 @@
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
+ </div>
24
+ </body>
25
+ </html>
@@ -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'
@@ -0,0 +1,7 @@
1
+ FactoryGirl.factories.map(&:name).each do |factory_name|
2
+ describe "when using #{factory_name} factory" do
3
+ it 'should be valid' do
4
+ build(factory_name).should be_valid
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,49 @@
1
+ require 'spork'
2
+ require 'spork/ext/ruby-debug'
3
+
4
+ Spork.prefork do
5
+ ENV["RAILS_ENV"] ||= 'test'
6
+ require File.expand_path("../dummy/config/environment", __FILE__)
7
+ require 'rspec/rails'
8
+ require 'rspec/autorun'
9
+ require 'shoulda-matchers'
10
+
11
+ require '<%= namespace %>/testing_support/factories'
12
+
13
+ Spork.trap_method Rails::Application, :reload_routes!
14
+ Spork.trap_method Rails::Application::RoutesReloader, :reload!
15
+ Spork.trap_method Rails::Application, :eager_load!
16
+
17
+ ENGINE_ROOT = File.expand_path("../../", __FILE__)
18
+ Dir["#{ENGINE_ROOT}/spec/support/**/*.rb"].each {|f| require f}
19
+
20
+ RSpec.configure do |config|
21
+ config.include FactoryGirl::Syntax::Methods
22
+
23
+ config.fixture_path = "#{ENGINE_ROOT}/spec/factories"
24
+ config.use_transactional_fixtures = true
25
+ config.infer_base_class_for_anonymous_controllers = false
26
+ config.treat_symbols_as_metadata_keys_with_true_values = true
27
+ config.order = "random"
28
+
29
+ config.before do
30
+ <%= namespace.camel_case %>.config {}
31
+ end
32
+
33
+ config.before :each, :admin do
34
+ @request.host = 'admin.<%= namespace %>.dev'
35
+ Rails.application.reload_routes!
36
+ end
37
+ end
38
+ end
39
+
40
+ Spork.each_run do
41
+ Dir[
42
+ "#{ENGINE_ROOT}/app/controllers/**/*.rb",
43
+ "#{ENGINE_ROOT}/app/models/**/*.rb",
44
+ "#{ENGINE_ROOT}/app/serializers/**/*.rb",
45
+ "#{ENGINE_ROOT}/lib/**/*.rb"
46
+ ].each do |file|
47
+ load file
48
+ end
49
+ end
@@ -0,0 +1,17 @@
1
+ ENV["RAILS_ROOT"] = File.expand_path("../../", __FILE__)
2
+ require File.expand_path("../dummy/config/environment", __FILE__)
3
+
4
+ Teabag.setup do |config|
5
+ # Driver
6
+ config.driver = "phantomjs" # available: phantomjs, selenium
7
+ # config.phantomjs_bin = "/usr/local/bin/phantomjs"
8
+
9
+ # Behaviors
10
+ #config.server_timeout = 20 # timeout for starting the server
11
+ config.fail_fast = true
12
+
13
+ # Output
14
+ config.formatters = "clean"
15
+ #config.suppress_log = false # suppress logs coming from console[log/error/debug]
16
+ config.color = true
17
+ end
@@ -0,0 +1,5 @@
1
+ module Enginizer
2
+ def self.version
3
+ "0.0.1"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: enginizer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Christopher Hein
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rvm
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rails
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: Command line tool for building modular rails applications.
63
+ email:
64
+ - me@christopherhein.com
65
+ executables:
66
+ - enginizer
67
+ extensions: []
68
+ extra_rdoc_files: []
69
+ files:
70
+ - .gitignore
71
+ - .rvmrc
72
+ - Gemfile
73
+ - LICENSE.txt
74
+ - README.md
75
+ - Rakefile
76
+ - bin/enginizer
77
+ - enginizer.gemspec
78
+ - lib/core_ext/string.rb
79
+ - lib/enginizer.rb
80
+ - lib/enginizer/app.rb
81
+ - lib/enginizer/cli.rb
82
+ - lib/enginizer/cmd.rb
83
+ - lib/enginizer/extension.rb
84
+ - lib/enginizer/templates/%namespaced_name%/%namespaced_name%.gemspec.tt
85
+ - lib/enginizer/templates/%namespaced_name%/.rspec
86
+ - lib/enginizer/templates/%namespaced_name%/.rvmrc.tt
87
+ - lib/enginizer/templates/%namespaced_name%/Gemfile
88
+ - lib/enginizer/templates/%namespaced_name%/Guardfile
89
+ - lib/enginizer/templates/%namespaced_name%/MIT-LICENSE.tt
90
+ - lib/enginizer/templates/%namespaced_name%/README.md.tt
91
+ - lib/enginizer/templates/%namespaced_name%/Rakefile.tt
92
+ - lib/enginizer/templates/%namespaced_name%/app/assets/images/%namespace%/admin/.gitkeep
93
+ - lib/enginizer/templates/%namespaced_name%/app/assets/images/%namespace%/application/.gitkeep
94
+ - lib/enginizer/templates/%namespaced_name%/app/assets/javascripts/%namespace%/admin/index.js.coffee
95
+ - lib/enginizer/templates/%namespaced_name%/app/assets/javascripts/%namespace%/application/index.js.coffee
96
+ - lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/admin.css.sass
97
+ - lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/admin/.gitkeep
98
+ - lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/application.css.sass
99
+ - lib/enginizer/templates/%namespaced_name%/app/assets/stylesheets/%namespace%/application/.gitkeep
100
+ - lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/admin/.gitkeep
101
+ - lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/application/.gitkeep
102
+ - lib/enginizer/templates/%namespaced_name%/app/controllers/%namespace%/application_controller.rb.tt
103
+ - lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/admin/.gitkeep
104
+ - lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/application/.gitkeep
105
+ - lib/enginizer/templates/%namespaced_name%/app/helpers/%namespace%/application_helper.rb.tt
106
+ - lib/enginizer/templates/%namespaced_name%/app/models/%namespace%.rb.tt
107
+ - lib/enginizer/templates/%namespaced_name%/app/models/%namespace%/.gitkeep
108
+ - lib/enginizer/templates/%namespaced_name%/app/views/%namespace%/admin/.gitkeep
109
+ - lib/enginizer/templates/%namespaced_name%/app/views/%namespace%/application/.gitkeep
110
+ - lib/enginizer/templates/%namespaced_name%/app/views/layouts/%namespace%/.gitkeep
111
+ - lib/enginizer/templates/%namespaced_name%/config/routes.rb.tt
112
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%.rb.tt
113
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/configuration.rb.tt
114
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/engine.rb.tt
115
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/%extension_name%/version.rb.tt
116
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/testing_support/factories.rb
117
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespace%/testing_support/factories/.gitkeep
118
+ - lib/enginizer/templates/%namespaced_name%/lib/%namespaced_name%.rb.tt
119
+ - lib/enginizer/templates/%namespaced_name%/lib/tasks/%namespaced_name%_tasks.rake.tt
120
+ - lib/enginizer/templates/%namespaced_name%/script/rails.tt
121
+ - lib/enginizer/templates/%namespaced_name%/spec/%namespace%/%extension_name%/.gitkeep
122
+ - lib/enginizer/templates/%namespaced_name%/spec/%namespace%/%extension_name%_spec.rb.tt
123
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/README.rdoc
124
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/Rakefile
125
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/images/.gitkeep
126
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/javascripts/application.js
127
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/assets/stylesheets/application.css
128
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/controllers/application_controller.rb
129
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/helpers/application_helper.rb
130
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/mailers/.gitkeep
131
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/models/.gitkeep
132
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/app/views/layouts/application.html.erb
133
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config.ru
134
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/application.rb.tt
135
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/boot.rb
136
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/database.yml
137
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environment.rb
138
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/development.rb
139
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/production.rb
140
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/environments/test.rb
141
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/backtrace_silencers.rb
142
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/inflections.rb
143
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/mime_types.rb
144
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/secret_token.rb
145
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/session_store.rb
146
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/teabag.rb.tt
147
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/initializers/wrap_parameters.rb
148
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/locales/en.yml
149
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/config/routes.rb.tt
150
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/db/.gitkeep
151
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/lib/assets/.gitkeep
152
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/log/.gitkeep
153
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/public/404.html
154
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/public/422.html
155
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/public/500.html
156
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/public/favicon.ico
157
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/script/rails
158
+ - lib/enginizer/templates/%namespaced_name%/spec/dummy/spec/.gitkeep
159
+ - lib/enginizer/templates/%namespaced_name%/spec/factory_spec.rb
160
+ - lib/enginizer/templates/%namespaced_name%/spec/javascripts/fixtures/.empty_directory
161
+ - lib/enginizer/templates/%namespaced_name%/spec/javascripts/nfinity/admin/.empty_directory
162
+ - lib/enginizer/templates/%namespaced_name%/spec/javascripts/nfinity/application/.empty_directory
163
+ - lib/enginizer/templates/%namespaced_name%/spec/javascripts/spec_helper.coffee
164
+ - lib/enginizer/templates/%namespaced_name%/spec/javascripts/support/.gitkeep
165
+ - lib/enginizer/templates/%namespaced_name%/spec/spec_helper.rb.tt
166
+ - lib/enginizer/templates/%namespaced_name%/spec/support/.gitkeep
167
+ - lib/enginizer/templates/%namespaced_name%/spec/teabag_env.rb
168
+ - lib/enginizer/version.rb
169
+ homepage: http://chrishein.com
170
+ licenses: []
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ none: false
177
+ requirements:
178
+ - - ! '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ none: false
183
+ requirements:
184
+ - - ! '>='
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ requirements: []
188
+ rubyforge_project:
189
+ rubygems_version: 1.8.24
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: Command line tool for building modular rails applications.
193
+ test_files: []