rapid-app 0.1.3 → 0.2.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 (82) hide show
  1. data/Rakefile +14 -2
  2. data/lib/rapid-app.rb +6 -1
  3. data/lib/rapid/app/settings.rb +163 -84
  4. data/lib/rapid/app/skeleton.rb +67 -79
  5. data/lib/rapid/app/version.rb +1 -1
  6. data/lib/rapid/app/web.rb +48 -0
  7. data/public/rapid/app/application.css +10 -0
  8. data/public/rapid/app/application.js +63 -0
  9. data/rapid-app.gemspec +1 -11
  10. data/spec/hello_world/3.2.1/.gitignore +15 -0
  11. data/spec/hello_world/3.2.1/Gemfile +39 -0
  12. data/spec/hello_world/3.2.1/README.rdoc +261 -0
  13. data/spec/hello_world/3.2.1/Rakefile +7 -0
  14. data/spec/hello_world/3.2.1/app/assets/images/rails.png +0 -0
  15. data/spec/hello_world/3.2.1/app/assets/javascripts/application.js +15 -0
  16. data/spec/hello_world/3.2.1/app/assets/stylesheets/application.css +13 -0
  17. data/spec/hello_world/3.2.1/app/controllers/application_controller.rb +3 -0
  18. data/spec/hello_world/3.2.1/app/helpers/application_helper.rb +2 -0
  19. data/spec/hello_world/3.2.1/app/mailers/.gitkeep +0 -0
  20. data/spec/hello_world/3.2.1/app/models/.gitkeep +0 -0
  21. data/spec/hello_world/3.2.1/app/views/layouts/application.html.erb +14 -0
  22. data/spec/hello_world/3.2.1/config.ru +4 -0
  23. data/spec/hello_world/3.2.1/config/application.rb +59 -0
  24. data/spec/hello_world/3.2.1/config/boot.rb +6 -0
  25. data/spec/hello_world/3.2.1/config/database.yml +25 -0
  26. data/spec/hello_world/3.2.1/config/environment.rb +5 -0
  27. data/spec/hello_world/3.2.1/config/environments/development.rb +37 -0
  28. data/spec/hello_world/3.2.1/config/environments/production.rb +67 -0
  29. data/spec/hello_world/3.2.1/config/environments/test.rb +37 -0
  30. data/spec/hello_world/3.2.1/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/hello_world/3.2.1/config/initializers/inflections.rb +15 -0
  32. data/spec/hello_world/3.2.1/config/initializers/mime_types.rb +5 -0
  33. data/spec/hello_world/3.2.1/config/initializers/secret_token.rb +7 -0
  34. data/spec/hello_world/3.2.1/config/initializers/session_store.rb +8 -0
  35. data/spec/hello_world/3.2.1/config/initializers/wrap_parameters.rb +14 -0
  36. data/spec/hello_world/3.2.1/config/locales/en.yml +5 -0
  37. data/spec/hello_world/3.2.1/config/routes.rb +58 -0
  38. data/spec/hello_world/3.2.1/db/seeds.rb +7 -0
  39. data/spec/hello_world/3.2.1/doc/README_FOR_APP +2 -0
  40. data/spec/hello_world/3.2.1/lib/assets/.gitkeep +0 -0
  41. data/spec/hello_world/3.2.1/lib/tasks/.gitkeep +0 -0
  42. data/spec/hello_world/3.2.1/log/.gitkeep +0 -0
  43. data/spec/hello_world/3.2.1/public/404.html +26 -0
  44. data/spec/hello_world/3.2.1/public/422.html +26 -0
  45. data/spec/hello_world/3.2.1/public/500.html +25 -0
  46. data/spec/hello_world/3.2.1/public/favicon.ico +0 -0
  47. data/spec/hello_world/3.2.1/public/index.html +241 -0
  48. data/spec/hello_world/3.2.1/public/robots.txt +5 -0
  49. data/spec/hello_world/3.2.1/script/rails +6 -0
  50. data/spec/hello_world/3.2.1/test/fixtures/.gitkeep +0 -0
  51. data/spec/hello_world/3.2.1/test/functional/.gitkeep +0 -0
  52. data/spec/hello_world/3.2.1/test/integration/.gitkeep +0 -0
  53. data/spec/hello_world/3.2.1/test/performance/browsing_test.rb +12 -0
  54. data/spec/hello_world/3.2.1/test/test_helper.rb +13 -0
  55. data/spec/hello_world/3.2.1/test/unit/.gitkeep +0 -0
  56. data/spec/hello_world/3.2.1/vendor/assets/javascripts/.gitkeep +0 -0
  57. data/spec/hello_world/3.2.1/vendor/assets/stylesheets/.gitkeep +0 -0
  58. data/spec/hello_world/3.2.1/vendor/plugins/.gitkeep +0 -0
  59. data/spec/rapid/app/skeleton_spec.rb +48 -40
  60. data/spec/support/project.rb +77 -0
  61. data/spec/templates/app/helpers/analytics/google_helper_spec.rb +22 -0
  62. data/spec/templates/config/application_spec.rb +23 -23
  63. data/spec/templates/config/deploy/production_spec.rb +45 -45
  64. data/spec/templates/config/deploy_spec.rb +32 -32
  65. data/spec/templates/config/environments/development_spec.rb +14 -0
  66. data/spec/templates/config/environments/production_spec.rb +15 -1
  67. data/spec/templates/config/environments/test_spec.rb +14 -0
  68. data/spec/templates/features/support/env_spec.rb +4 -4
  69. data/spec/templates/lib/tasks/test.rake_spec.rb +22 -21
  70. data/spec/templates/spec/spec_helper_spec.rb +4 -4
  71. data/templates/app/helpers/analytics/google_helper.rb +21 -0
  72. data/templates/config/application.rb +4 -2
  73. data/templates/config/deploy.rb +4 -4
  74. data/templates/config/deploy/production.rb +15 -15
  75. data/templates/config/environments/development.rb +12 -3
  76. data/templates/config/environments/production.rb +9 -2
  77. data/templates/config/environments/test.rb +5 -10
  78. data/templates/lib/tasks/test.rake +3 -0
  79. data/views/edit.haml +160 -0
  80. data/views/error.haml +3 -0
  81. data/views/layout.haml +7 -0
  82. metadata +115 -80
@@ -43,7 +43,10 @@ namespace :rcov do
43
43
  end
44
44
 
45
45
  <% end %>
46
+ <% if test.rake.all? %>
46
47
  namespace :test do
47
48
  desc "<%= test.tasks_description %>"
48
49
  task :all => <%= test.tasks %>
49
50
  end
51
+
52
+ <% end %>
data/views/edit.haml ADDED
@@ -0,0 +1,160 @@
1
+ %h1 Your application setup
2
+
3
+ = bootstrap_flash
4
+
5
+ - if session[:notice]
6
+ %div{:class => 'alert alert-success'}
7
+ = session.delete :notice
8
+
9
+ - if session[:error]
10
+ %div{:class => 'alert alert-error'}
11
+ = session.delete :error
12
+
13
+ - form_for @skeleton.settings, '/rapid/app', :class => 'form-horizontal form-settings' do |f|
14
+ - f.object_name = "settings" ; nil
15
+
16
+ - f.section 'general' do
17
+ = f.control_group_text_field 'name'
18
+ = f.control_group_time_zone_select 'timezone', :priority => ActiveSupport::TimeZone.us_zones, :include_blank => true, :size => :xlarge
19
+ = f.control_group_select 'database.type', :options => Rapid::App::Settings.databases, :label => "Database", :include_blank => "None"
20
+
21
+ - f.section 'test' do
22
+
23
+ = f.control_group_check_box 'test.rake.all.on', :label => "rake test:all"
24
+ = f.control_group_check_box 'test.unit.on', :label => "Test Unit"
25
+ = f.control_group_check_box 'test.rspec.on', :label => "Rspec"
26
+ = f.control_group_check_box 'test.cucumber.on', :label => "Cucumber", "data-settings" => "#test_cucumber_settings"
27
+
28
+ - f.settings 'test.cucumber' do
29
+ = f.control_group_text_field 'test.cucumber.wip.max', :label => "Max WIP", :size => :small
30
+
31
+ = f.control_group_check_box 'test.roodi.on', :label => "Roodi", "data-settings" => "#test_roodi_settings"
32
+
33
+ - f.settings 'test.roodi' do
34
+ = f.control_group_text_field 'test.roodi.method.complexity', :label => "Method Complexity", :size => :small
35
+ = f.control_group_text_field 'test.roodi.method.lines.max', :label => "Method Max Lines", :size => :small
36
+ = f.control_group_text_field 'test.roodi.block.complexity', :label => "Block Complexity", :size => :small
37
+ = f.control_group_text_field 'test.roodi.klass.lines.max', :label => "Class Max Lines", :size => :small
38
+ = f.control_group_text_field 'test.roodi.module.lines.max', :label => "Module Max Lines", :size => :small
39
+ = f.control_group_text_field 'test.roodi.parameters.max', :label => "Parameter Max", :size => :small
40
+
41
+ = f.control_group_check_box 'test.coverage.on', :label => "Rcov", "data-settings" => "#test_coverage_settings"
42
+
43
+ - f.settings 'test.coverage' do
44
+ = f.control_group_text_field 'test.coverage.threshold', :size => :small
45
+
46
+ - f.section 'email' do
47
+ = f.control_group_check_box 'email.smtp.on', :label => "SMTP", "data-settings" => "#email_smtp_settings"
48
+
49
+ - f.settings 'email.smtp' do
50
+ = f.control_group_select 'email.smtp.provider', :options => %w(google sendgrid other)
51
+
52
+ = f.control_group_text_field 'email.smtp.address', :class => 'input', :hidden => (f.object.email.smtp.provider != 'other')
53
+
54
+ - f.control_group 'email.smtp.domain', :hidden => (f.object.email.smtp.provider != 'other') do
55
+ = f.text_field 'email.smtp.domain', :class => 'input input-small'
56
+ = ":"
57
+ = f.text_field 'email.smtp.port', :class => 'input input-small'
58
+
59
+ = f.control_group_text_field 'email.smtp.username'
60
+ = f.control_group_password_field 'email.smtp.password'
61
+
62
+ - f.control_group 'email.smtp.authentication', :hidden => (f.object.email.smtp.provider != 'other') do
63
+ = f.select 'email.smtp.authentication', :options => %w(plain login cram_md5), :class => 'input input-small'
64
+ %label{:class => "checkbox inline"}
65
+ = f.check_box 'email.smtp.tls', :class => 'input input-small'
66
+ tls
67
+
68
+ %div{:class => 'control-group'}
69
+ %div{:class => 'controls'}
70
+ %a{:href => '#', "data-toggle" => '#email_url_settings'} URLs
71
+
72
+ %div{:id => 'email_url_settings', :class => 'subsettings settings-off'}
73
+ - f.control_group 'development.domain', :label => "Development" do
74
+ = f.select 'development.protocol', :options => %w(http https), :class => 'input input-small'
75
+ = "://"
76
+ = f.text_field 'development.domain', :class => 'input input-small'
77
+ = ":"
78
+ = f.text_field 'development.port', :class => 'input input-small'
79
+
80
+ = f.select 'development.delivery_method', :options => %w(test smtp), :include_blank => true, :class => 'input input-small'
81
+
82
+ - f.control_group 'test.domain', :label => "Test" do
83
+ = f.select 'test.protocol', :options => %w(http https), :class => 'input input-small'
84
+ = "://"
85
+ = f.text_field 'test.domain', :class => 'input input-small'
86
+ = ":"
87
+ = f.text_field 'test.port', :class => 'input input-small'
88
+
89
+ - f.control_group 'production.domain', :label => "Production" do
90
+ = f.select 'production.protocol', :options => %w(http https), :class => 'input input-small'
91
+ = "://"
92
+ = f.text_field 'production.domain', :class => 'input input-small'
93
+ = ":"
94
+ = f.text_field 'production.port', :class => 'input input-small'
95
+
96
+ - f.section 'exceptions' do
97
+ = f.control_group_check_box 'exceptions.airbrake.on', :label => "Airbrake", "data-settings" => "#exceptions_airbrake_settings"
98
+
99
+ - f.settings 'exceptions.airbrake' do
100
+ = f.control_group_text_field 'exceptions.airbrake.api_key'
101
+
102
+ - f.control_group 'exceptions.airbrake.host' do
103
+ = f.text_field 'exceptions.airbrake.host', :class => 'input input-small'
104
+ = f.check_box 'exceptions.airbrake.secure'
105
+ secure
106
+
107
+ - f.section 'deploy' do
108
+
109
+ = f.control_group_check_box 'deploy.capistrano.on', :label => "Capistrano", "data-settings" => "#deploy_capistrano_settings"
110
+
111
+ - f.settings 'deploy.capistrano' do
112
+ = f.control_group_text_field 'deploy.capistrano.repository.url', :label => "Repository URL"
113
+
114
+ = f.control_group_text_field 'deploy.capistrano.production.domain'
115
+ = f.control_group_text_field 'deploy.capistrano.production.branch'
116
+ = f.control_group_text_field 'deploy.capistrano.production.user'
117
+ = f.control_group_text_field 'deploy.capistrano.production.keep', :label => "Keep Releases"
118
+ = f.control_group_select 'deploy.capistrano.production.server', :options => %w(passenger)
119
+ = f.control_group_text_field 'deploy.capistrano.production.bin'
120
+
121
+ = f.control_group_check_box 'deploy.capistrano.production.rvm.on', :label => "rvm", "data-settings" => '#deploy_capistrano_production_rvm_settings'
122
+
123
+ - f.settings 'deploy.capistrano.production.rvm' do
124
+ = f.control_group_select 'deploy.capistrano.production.rvm.type', :options => %w(system user)
125
+ - f.control_group 'deploy.capistrano.production.rvm.ruby' do
126
+ = f.text_field 'deploy.capistrano.production.rvm.ruby', :class => 'input input-small'
127
+ = "@"
128
+ = f.text_field 'deploy.capistrano.production.rvm.gemset', :class => 'input input-small'
129
+
130
+ - f.section 'analytics' do
131
+
132
+ = f.control_group_check_box 'analytics.google.on', :label => "Google Analytics", "data-settings" => '#analytics_google_settings'
133
+
134
+ - f.settings 'analytics.google' do
135
+ = f.control_group_text_field 'analytics.google.uid', :label => "UID"
136
+
137
+ - f.section 'other' do
138
+
139
+ = f.control_group_check_box 'assets.on', :label => "Assets"
140
+
141
+ = f.control_group_check_box 'haml.on', :label => "HAML"
142
+
143
+ = f.control_group_check_box 'paginate.on', :label => "Pagination"
144
+
145
+ = f.control_group_check_box 'net.on', :label => "Net::HTTP"
146
+
147
+ = f.control_group_check_box 'breadcrumbs.on', :label => "Breadcrumbs"
148
+
149
+ - f.control_group 'upload.on', :label => "Upload" do
150
+ = f.check_box 'upload.on', "data-settings" => '#upload_settings'
151
+ = "&nbsp;"
152
+ %span{:id => 'upload_settings', :class => ("settings-off" unless f.object.upload?) }
153
+ = f.check_box 'upload.private'
154
+ = "private?"
155
+
156
+ = f.control_group_check_box 'import.on', :label => "Import"
157
+
158
+ %div{:class => 'form-actions'}
159
+ %button{:class => 'btn primary', :type => 'submit'} Save changes
160
+ %button{:class => 'btn'} Cancel
data/views/error.haml ADDED
@@ -0,0 +1,3 @@
1
+ %h1 Your application did not have the expected code
2
+
3
+
data/views/layout.haml ADDED
@@ -0,0 +1,7 @@
1
+ !!!
2
+ %html
3
+ = bootstrap_head
4
+
5
+ - bootstrap_body do
6
+ %div{:class => "container"}
7
+ = yield
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rapid-app
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 2
8
9
  - 1
9
- - 3
10
- version: 0.1.3
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dan Cunning
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-02-15 00:00:00 -05:00
19
- default_executable:
18
+ date: 2012-02-24 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: rapid-core
@@ -33,7 +32,7 @@ dependencies:
33
32
  type: :runtime
34
33
  version_requirements: *id001
35
34
  - !ruby/object:Gem::Dependency
36
- name: tzinfo
35
+ name: haml
37
36
  prerelease: false
38
37
  requirement: &id002 !ruby/object:Gem::Requirement
39
38
  none: false
@@ -46,78 +45,6 @@ dependencies:
46
45
  version: "0"
47
46
  type: :runtime
48
47
  version_requirements: *id002
49
- - !ruby/object:Gem::Dependency
50
- name: activesupport
51
- prerelease: false
52
- requirement: &id003 !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- hash: 7
58
- segments:
59
- - 3
60
- - 0
61
- version: "3.0"
62
- type: :runtime
63
- version_requirements: *id003
64
- - !ruby/object:Gem::Dependency
65
- name: activemodel
66
- prerelease: false
67
- requirement: &id004 !ruby/object:Gem::Requirement
68
- none: false
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- hash: 7
73
- segments:
74
- - 3
75
- - 0
76
- version: "3.0"
77
- type: :runtime
78
- version_requirements: *id004
79
- - !ruby/object:Gem::Dependency
80
- name: i18n
81
- prerelease: false
82
- requirement: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- hash: 3
88
- segments:
89
- - 0
90
- version: "0"
91
- type: :runtime
92
- version_requirements: *id005
93
- - !ruby/object:Gem::Dependency
94
- name: erubis
95
- prerelease: false
96
- requirement: &id006 !ruby/object:Gem::Requirement
97
- none: false
98
- requirements:
99
- - - ">="
100
- - !ruby/object:Gem::Version
101
- hash: 3
102
- segments:
103
- - 0
104
- version: "0"
105
- type: :runtime
106
- version_requirements: *id006
107
- - !ruby/object:Gem::Dependency
108
- name: railties
109
- prerelease: false
110
- requirement: &id007 !ruby/object:Gem::Requirement
111
- none: false
112
- requirements:
113
- - - ">="
114
- - !ruby/object:Gem::Version
115
- hash: 3
116
- segments:
117
- - 0
118
- version: "0"
119
- type: :development
120
- version_requirements: *id007
121
48
  description: Rapidly maintain and modify your Rails application
122
49
  email:
123
50
  - dancunning@gmail.com
@@ -138,13 +65,67 @@ files:
138
65
  - lib/rapid/app/settings.rb
139
66
  - lib/rapid/app/skeleton.rb
140
67
  - lib/rapid/app/version.rb
68
+ - lib/rapid/app/web.rb
69
+ - public/rapid/app/application.css
70
+ - public/rapid/app/application.js
141
71
  - rapid-app.gemspec
72
+ - spec/hello_world/3.2.1/.gitignore
73
+ - spec/hello_world/3.2.1/Gemfile
74
+ - spec/hello_world/3.2.1/README.rdoc
75
+ - spec/hello_world/3.2.1/Rakefile
76
+ - spec/hello_world/3.2.1/app/assets/images/rails.png
77
+ - spec/hello_world/3.2.1/app/assets/javascripts/application.js
78
+ - spec/hello_world/3.2.1/app/assets/stylesheets/application.css
79
+ - spec/hello_world/3.2.1/app/controllers/application_controller.rb
80
+ - spec/hello_world/3.2.1/app/helpers/application_helper.rb
81
+ - spec/hello_world/3.2.1/app/mailers/.gitkeep
82
+ - spec/hello_world/3.2.1/app/models/.gitkeep
83
+ - spec/hello_world/3.2.1/app/views/layouts/application.html.erb
84
+ - spec/hello_world/3.2.1/config.ru
85
+ - spec/hello_world/3.2.1/config/application.rb
86
+ - spec/hello_world/3.2.1/config/boot.rb
87
+ - spec/hello_world/3.2.1/config/database.yml
88
+ - spec/hello_world/3.2.1/config/environment.rb
89
+ - spec/hello_world/3.2.1/config/environments/development.rb
90
+ - spec/hello_world/3.2.1/config/environments/production.rb
91
+ - spec/hello_world/3.2.1/config/environments/test.rb
92
+ - spec/hello_world/3.2.1/config/initializers/backtrace_silencers.rb
93
+ - spec/hello_world/3.2.1/config/initializers/inflections.rb
94
+ - spec/hello_world/3.2.1/config/initializers/mime_types.rb
95
+ - spec/hello_world/3.2.1/config/initializers/secret_token.rb
96
+ - spec/hello_world/3.2.1/config/initializers/session_store.rb
97
+ - spec/hello_world/3.2.1/config/initializers/wrap_parameters.rb
98
+ - spec/hello_world/3.2.1/config/locales/en.yml
99
+ - spec/hello_world/3.2.1/config/routes.rb
100
+ - spec/hello_world/3.2.1/db/seeds.rb
101
+ - spec/hello_world/3.2.1/doc/README_FOR_APP
102
+ - spec/hello_world/3.2.1/lib/assets/.gitkeep
103
+ - spec/hello_world/3.2.1/lib/tasks/.gitkeep
104
+ - spec/hello_world/3.2.1/log/.gitkeep
105
+ - spec/hello_world/3.2.1/public/404.html
106
+ - spec/hello_world/3.2.1/public/422.html
107
+ - spec/hello_world/3.2.1/public/500.html
108
+ - spec/hello_world/3.2.1/public/favicon.ico
109
+ - spec/hello_world/3.2.1/public/index.html
110
+ - spec/hello_world/3.2.1/public/robots.txt
111
+ - spec/hello_world/3.2.1/script/rails
112
+ - spec/hello_world/3.2.1/test/fixtures/.gitkeep
113
+ - spec/hello_world/3.2.1/test/functional/.gitkeep
114
+ - spec/hello_world/3.2.1/test/integration/.gitkeep
115
+ - spec/hello_world/3.2.1/test/performance/browsing_test.rb
116
+ - spec/hello_world/3.2.1/test/test_helper.rb
117
+ - spec/hello_world/3.2.1/test/unit/.gitkeep
118
+ - spec/hello_world/3.2.1/vendor/assets/javascripts/.gitkeep
119
+ - spec/hello_world/3.2.1/vendor/assets/stylesheets/.gitkeep
120
+ - spec/hello_world/3.2.1/vendor/plugins/.gitkeep
142
121
  - spec/rapid/app/skeleton_spec.rb
143
122
  - spec/rapid/app_spec.rb
144
123
  - spec/spec_helper.rb
145
124
  - spec/support/more_string_matchers.rb
125
+ - spec/support/project.rb
146
126
  - spec/support/rapid.rb
147
127
  - spec/templates/app/controllers/application_controller_spec.rb
128
+ - spec/templates/app/helpers/analytics/google_helper_spec.rb
148
129
  - spec/templates/app/helpers/application_helper_spec.rb
149
130
  - spec/templates/app/mailers/test_mailer_spec.rb
150
131
  - spec/templates/app/views/test_mailer/test_email.text.erb_spec.rb
@@ -189,6 +170,7 @@ files:
189
170
  - spec/templates/spec/spec_helper_spec.rb
190
171
  - spec/templates/test/test_helper_spec.rb
191
172
  - templates/app/controllers/application_controller.rb
173
+ - templates/app/helpers/analytics/google_helper.rb
192
174
  - templates/app/helpers/application_helper.rb
193
175
  - templates/app/mailers/test_mailer.rb
194
176
  - templates/app/views/test_mailer/test_email.text.erb
@@ -232,7 +214,9 @@ files:
232
214
  - templates/spec/factories.rb
233
215
  - templates/spec/spec_helper.rb
234
216
  - templates/test/test_helper.rb
235
- has_rdoc: true
217
+ - views/edit.haml
218
+ - views/error.haml
219
+ - views/layout.haml
236
220
  homepage: ""
237
221
  licenses: []
238
222
 
@@ -262,17 +246,68 @@ required_rubygems_version: !ruby/object:Gem::Requirement
262
246
  requirements: []
263
247
 
264
248
  rubyforge_project: rapid-app
265
- rubygems_version: 1.6.2
249
+ rubygems_version: 1.8.17
266
250
  signing_key:
267
251
  specification_version: 3
268
252
  summary: Rapidly maintain and modify your Rails application
269
253
  test_files:
254
+ - spec/hello_world/3.2.1/.gitignore
255
+ - spec/hello_world/3.2.1/Gemfile
256
+ - spec/hello_world/3.2.1/README.rdoc
257
+ - spec/hello_world/3.2.1/Rakefile
258
+ - spec/hello_world/3.2.1/app/assets/images/rails.png
259
+ - spec/hello_world/3.2.1/app/assets/javascripts/application.js
260
+ - spec/hello_world/3.2.1/app/assets/stylesheets/application.css
261
+ - spec/hello_world/3.2.1/app/controllers/application_controller.rb
262
+ - spec/hello_world/3.2.1/app/helpers/application_helper.rb
263
+ - spec/hello_world/3.2.1/app/mailers/.gitkeep
264
+ - spec/hello_world/3.2.1/app/models/.gitkeep
265
+ - spec/hello_world/3.2.1/app/views/layouts/application.html.erb
266
+ - spec/hello_world/3.2.1/config.ru
267
+ - spec/hello_world/3.2.1/config/application.rb
268
+ - spec/hello_world/3.2.1/config/boot.rb
269
+ - spec/hello_world/3.2.1/config/database.yml
270
+ - spec/hello_world/3.2.1/config/environment.rb
271
+ - spec/hello_world/3.2.1/config/environments/development.rb
272
+ - spec/hello_world/3.2.1/config/environments/production.rb
273
+ - spec/hello_world/3.2.1/config/environments/test.rb
274
+ - spec/hello_world/3.2.1/config/initializers/backtrace_silencers.rb
275
+ - spec/hello_world/3.2.1/config/initializers/inflections.rb
276
+ - spec/hello_world/3.2.1/config/initializers/mime_types.rb
277
+ - spec/hello_world/3.2.1/config/initializers/secret_token.rb
278
+ - spec/hello_world/3.2.1/config/initializers/session_store.rb
279
+ - spec/hello_world/3.2.1/config/initializers/wrap_parameters.rb
280
+ - spec/hello_world/3.2.1/config/locales/en.yml
281
+ - spec/hello_world/3.2.1/config/routes.rb
282
+ - spec/hello_world/3.2.1/db/seeds.rb
283
+ - spec/hello_world/3.2.1/doc/README_FOR_APP
284
+ - spec/hello_world/3.2.1/lib/assets/.gitkeep
285
+ - spec/hello_world/3.2.1/lib/tasks/.gitkeep
286
+ - spec/hello_world/3.2.1/log/.gitkeep
287
+ - spec/hello_world/3.2.1/public/404.html
288
+ - spec/hello_world/3.2.1/public/422.html
289
+ - spec/hello_world/3.2.1/public/500.html
290
+ - spec/hello_world/3.2.1/public/favicon.ico
291
+ - spec/hello_world/3.2.1/public/index.html
292
+ - spec/hello_world/3.2.1/public/robots.txt
293
+ - spec/hello_world/3.2.1/script/rails
294
+ - spec/hello_world/3.2.1/test/fixtures/.gitkeep
295
+ - spec/hello_world/3.2.1/test/functional/.gitkeep
296
+ - spec/hello_world/3.2.1/test/integration/.gitkeep
297
+ - spec/hello_world/3.2.1/test/performance/browsing_test.rb
298
+ - spec/hello_world/3.2.1/test/test_helper.rb
299
+ - spec/hello_world/3.2.1/test/unit/.gitkeep
300
+ - spec/hello_world/3.2.1/vendor/assets/javascripts/.gitkeep
301
+ - spec/hello_world/3.2.1/vendor/assets/stylesheets/.gitkeep
302
+ - spec/hello_world/3.2.1/vendor/plugins/.gitkeep
270
303
  - spec/rapid/app/skeleton_spec.rb
271
304
  - spec/rapid/app_spec.rb
272
305
  - spec/spec_helper.rb
273
306
  - spec/support/more_string_matchers.rb
307
+ - spec/support/project.rb
274
308
  - spec/support/rapid.rb
275
309
  - spec/templates/app/controllers/application_controller_spec.rb
310
+ - spec/templates/app/helpers/analytics/google_helper_spec.rb
276
311
  - spec/templates/app/helpers/application_helper_spec.rb
277
312
  - spec/templates/app/mailers/test_mailer_spec.rb
278
313
  - spec/templates/app/views/test_mailer/test_email.text.erb_spec.rb