rails3_assist 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. data/README.markdown +10 -3
  2. data/VERSION +1 -1
  3. data/lib/rails3_assist/app.rb +7 -41
  4. data/lib/rails3_assist/artifact/directory.rb +42 -0
  5. data/lib/rails3_assist/artifact/files.rb +63 -0
  6. data/lib/rails3_assist/artifact/path.rb +16 -0
  7. data/lib/rails3_assist/artifact.rb +34 -0
  8. data/lib/rails3_assist/directory/app.rb +17 -0
  9. data/lib/rails3_assist/directory/container.rb +24 -0
  10. data/lib/rails3_assist/directory/root.rb +20 -0
  11. data/lib/rails3_assist/directory.rb +55 -0
  12. data/lib/rails3_assist/file/application.rb +14 -0
  13. data/lib/rails3_assist/file/environment.rb +15 -0
  14. data/lib/rails3_assist/file/special.rb +48 -0
  15. data/lib/rails3_assist/file.rb +38 -0
  16. data/lib/rails3_assist/files.rb +83 -0
  17. data/lib/rails3_assist/namespaces.rb +11 -0
  18. data/lib/rails3_assist/rspec/configure.rb +2 -0
  19. data/lib/rails3_assist/rspec/matchers/have_app_config.rb +49 -0
  20. data/{spec/rails3_assist/app/app_file_names_spec.rb → lib/rails3_assist/rspec/matchers/have_special_file.rb} +0 -0
  21. data/lib/rails3_assist.rb +20 -11
  22. data/rails3_assist.gemspec +140 -49
  23. data/spec/fixtures/.gitignore +4 -0
  24. data/spec/fixtures/Gemfile +30 -0
  25. data/spec/fixtures/Gemfile.lock +73 -0
  26. data/spec/fixtures/README +256 -0
  27. data/spec/fixtures/Rakefile +7 -0
  28. data/spec/fixtures/app/controllers/application_controller.rb +3 -0
  29. data/spec/fixtures/app/controllers/users_controller.rb +83 -0
  30. data/spec/fixtures/app/helpers/application_helper.rb +2 -0
  31. data/spec/fixtures/app/helpers/users_helper.rb +2 -0
  32. data/spec/{rails3_assist/app/app_files_spec.rb → fixtures/app/mailers/user_mailer.rb} +0 -0
  33. data/spec/fixtures/app/models/user.rb +2 -0
  34. data/spec/fixtures/app/models/user_observer.rb +0 -0
  35. data/spec/fixtures/app/permits/user_permit.rb +0 -0
  36. data/spec/fixtures/app/views/layouts/application.html.erb +14 -0
  37. data/spec/fixtures/app/views/users/_form.html.erb +21 -0
  38. data/spec/fixtures/app/views/users/edit.html.erb +6 -0
  39. data/spec/fixtures/app/views/users/index.html.erb +23 -0
  40. data/spec/fixtures/app/views/users/new.html.erb +5 -0
  41. data/spec/fixtures/app/views/users/show.html.erb +10 -0
  42. data/spec/fixtures/config/application.rb +42 -0
  43. data/spec/fixtures/config/boot.rb +13 -0
  44. data/spec/fixtures/config/database.yml +22 -0
  45. data/spec/fixtures/config/environment.rb +5 -0
  46. data/spec/fixtures/config/environments/development.rb +26 -0
  47. data/spec/fixtures/config/environments/production.rb +49 -0
  48. data/spec/fixtures/config/environments/test.rb +35 -0
  49. data/spec/fixtures/config/initializers/backtrace_silencers.rb +7 -0
  50. data/spec/fixtures/config/initializers/inflections.rb +10 -0
  51. data/spec/fixtures/config/initializers/mime_types.rb +5 -0
  52. data/spec/fixtures/config/initializers/secret_token.rb +7 -0
  53. data/spec/fixtures/config/initializers/session_store.rb +8 -0
  54. data/spec/fixtures/config/locales/en.yml +5 -0
  55. data/spec/fixtures/config/routes.rb +60 -0
  56. data/spec/fixtures/config.ru +4 -0
  57. data/spec/fixtures/db/migrate/20100831135208_create_users.rb +13 -0
  58. data/spec/fixtures/db/seeds.rb +7 -0
  59. data/spec/fixtures/doc/README_FOR_APP +2 -0
  60. data/spec/fixtures/lib/tasks/.gitkeep +0 -0
  61. data/spec/fixtures/public/404.html +26 -0
  62. data/spec/fixtures/public/422.html +26 -0
  63. data/spec/fixtures/public/500.html +26 -0
  64. data/spec/fixtures/public/favicon.ico +0 -0
  65. data/spec/fixtures/public/images/rails.png +0 -0
  66. data/spec/fixtures/public/index.html +239 -0
  67. data/spec/fixtures/public/javascripts/application.js +2 -0
  68. data/spec/fixtures/public/javascripts/controls.js +965 -0
  69. data/spec/fixtures/public/javascripts/dragdrop.js +974 -0
  70. data/spec/fixtures/public/javascripts/effects.js +1123 -0
  71. data/spec/fixtures/public/javascripts/prototype.js +6001 -0
  72. data/spec/fixtures/public/javascripts/rails.js +175 -0
  73. data/spec/fixtures/public/robots.txt +5 -0
  74. data/spec/fixtures/public/stylesheets/.gitkeep +0 -0
  75. data/spec/fixtures/public/stylesheets/scaffold.css +56 -0
  76. data/spec/fixtures/script/rails +6 -0
  77. data/spec/fixtures/test/fixtures/users.yml +7 -0
  78. data/spec/fixtures/test/functional/users_controller_test.rb +49 -0
  79. data/spec/fixtures/test/performance/browsing_test.rb +9 -0
  80. data/spec/fixtures/test/test_helper.rb +13 -0
  81. data/spec/fixtures/test/unit/helpers/users_helper_test.rb +4 -0
  82. data/spec/fixtures/test/unit/user_test.rb +8 -0
  83. data/spec/fixtures/vendor/plugins/.gitkeep +0 -0
  84. data/spec/fixtures.rb +3 -0
  85. data/spec/rails3_assist/app_spec.rb +30 -0
  86. data/spec/rails3_assist/artifact/directory_spec.rb +66 -0
  87. data/spec/rails3_assist/artifact/files_spec.rb +64 -0
  88. data/spec/rails3_assist/artifact/path_spec.rb +23 -0
  89. data/spec/rails3_assist/artifact_spec.rb +33 -0
  90. data/spec/rails3_assist/directory/app_spec.rb +41 -0
  91. data/spec/rails3_assist/directory/container_spec.rb +63 -0
  92. data/spec/rails3_assist/directory/root_spec.rb +41 -0
  93. data/spec/rails3_assist/directory_spec.rb +59 -0
  94. data/spec/rails3_assist/file/application_spec.rb +33 -0
  95. data/spec/rails3_assist/file/environment_spec.rb +49 -0
  96. data/spec/rails3_assist/file/special_spec.rb +61 -0
  97. data/spec/rails3_assist/file_spec.rb +48 -0
  98. data/spec/rails3_assist/files_spec.rb +128 -0
  99. data/spec/rails3_assist/rspec/have_app_config_spec.rb +0 -0
  100. data/spec/spec_helper.rb +4 -2
  101. metadata +140 -49
  102. data/lib/rails3_assist/app/file_names.rb +0 -97
  103. data/lib/rails3_assist/app/methods/crud.rb +0 -31
  104. data/lib/rails3_assist/app/methods/new_content.rb +0 -11
  105. data/lib/rails3_assist/app/rails_dirs.rb +0 -106
  106. data/lib/rails3_assist/app/rails_files.rb +0 -128
  107. data/lib/rails3_assist/artifact/markers.rb +0 -45
  108. data/lib/rails3_assist/artifact/migration.rb +0 -10
  109. data/lib/rails3_assist/artifact/orm.rb +0 -136
  110. data/lib/rails3_assist/artifact/view.rb +0 -70
  111. data/lib/rails3_assist/base/class_methods.rb +0 -11
  112. data/lib/rails3_assist/base/create.rb +0 -48
  113. data/lib/rails3_assist/base/file_name.rb +0 -40
  114. data/lib/rails3_assist/base/insert.rb +0 -57
  115. data/lib/rails3_assist/base/read.rb +0 -19
  116. data/lib/rails3_assist/base/remove.rb +0 -14
  117. data/lib/rails3_assist/base.rb +0 -49
  118. data/lib/rails3_assist/extensions/core_ext.rb +0 -29
  119. data/lib/rails3_assist/rspec/macro.rb +0 -34
  120. data/spec/rails3_assist/app/app_dirs_spec.rb +0 -23
  121. data/spec/rails3_assist/artifact/controller/controller_spec.rb +0 -33
  122. data/spec/rails3_assist/artifact/helper/helper_spec.rb +0 -33
  123. data/spec/rails3_assist/artifact/mailer/mailer_spec.rb +0 -33
  124. data/spec/rails3_assist/artifact/migration/migration_spec.rb +0 -49
  125. data/spec/rails3_assist/artifact/model/model_spec.rb +0 -34
  126. data/spec/rails3_assist/artifact/observer/observer_spec.rb +0 -34
  127. data/spec/rails3_assist/artifact/orm/active_record_spec.rb +0 -33
  128. data/spec/rails3_assist/artifact/orm/mongo_mapper_spec.rb +0 -63
  129. data/spec/rails3_assist/artifact/orm/mongoid_spec.rb +0 -63
  130. data/spec/rails3_assist/artifact/view_spec/view_controller_action_spec.rb +0 -65
  131. data/spec/rails3_assist/artifact/view_spec/view_controller_default_action_specc.rb +0 -32
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rails3_assist}
8
- s.version = "0.2.4"
8
+ s.version = "0.2.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kristian Mandrup"]
12
- s.date = %q{2010-09-11}
12
+ s.date = %q{2010-09-13}
13
13
  s.description = %q{Assist in operating on Rails 3 artifacts including migrations}
14
14
  s.email = %q{kmandrup@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -26,45 +26,107 @@ Gem::Specification.new do |s|
26
26
  "VERSION",
27
27
  "lib/rails3_assist.rb",
28
28
  "lib/rails3_assist/app.rb",
29
- "lib/rails3_assist/app/file_names.rb",
30
- "lib/rails3_assist/app/methods/crud.rb",
31
- "lib/rails3_assist/app/methods/new_content.rb",
32
- "lib/rails3_assist/app/rails_dirs.rb",
33
- "lib/rails3_assist/app/rails_files.rb",
34
- "lib/rails3_assist/artifact/markers.rb",
35
- "lib/rails3_assist/artifact/migration.rb",
36
- "lib/rails3_assist/artifact/orm.rb",
37
- "lib/rails3_assist/artifact/view.rb",
38
- "lib/rails3_assist/base.rb",
39
- "lib/rails3_assist/base/class_methods.rb",
40
- "lib/rails3_assist/base/create.rb",
41
- "lib/rails3_assist/base/file_name.rb",
42
- "lib/rails3_assist/base/insert.rb",
43
- "lib/rails3_assist/base/read.rb",
44
- "lib/rails3_assist/base/remove.rb",
45
- "lib/rails3_assist/extensions/core_ext.rb",
46
- "lib/rails3_assist/rspec/macro.rb",
29
+ "lib/rails3_assist/artifact.rb",
30
+ "lib/rails3_assist/artifact/directory.rb",
31
+ "lib/rails3_assist/artifact/files.rb",
32
+ "lib/rails3_assist/artifact/path.rb",
33
+ "lib/rails3_assist/directory.rb",
34
+ "lib/rails3_assist/directory/app.rb",
35
+ "lib/rails3_assist/directory/container.rb",
36
+ "lib/rails3_assist/directory/root.rb",
37
+ "lib/rails3_assist/file.rb",
38
+ "lib/rails3_assist/file/application.rb",
39
+ "lib/rails3_assist/file/environment.rb",
40
+ "lib/rails3_assist/file/special.rb",
41
+ "lib/rails3_assist/files.rb",
42
+ "lib/rails3_assist/namespaces.rb",
43
+ "lib/rails3_assist/rspec/configure.rb",
44
+ "lib/rails3_assist/rspec/matchers/have_app_config.rb",
45
+ "lib/rails3_assist/rspec/matchers/have_special_file.rb",
47
46
  "rails3_assist.gemspec",
48
47
  "rails_generator.log",
48
+ "spec/fixtures.rb",
49
+ "spec/fixtures/.gitignore",
50
+ "spec/fixtures/Gemfile",
51
+ "spec/fixtures/Gemfile.lock",
52
+ "spec/fixtures/README",
53
+ "spec/fixtures/Rakefile",
54
+ "spec/fixtures/app/controllers/application_controller.rb",
55
+ "spec/fixtures/app/controllers/users_controller.rb",
56
+ "spec/fixtures/app/helpers/application_helper.rb",
57
+ "spec/fixtures/app/helpers/users_helper.rb",
58
+ "spec/fixtures/app/mailers/user_mailer.rb",
59
+ "spec/fixtures/app/models/user.rb",
60
+ "spec/fixtures/app/models/user_observer.rb",
61
+ "spec/fixtures/app/permits/user_permit.rb",
62
+ "spec/fixtures/app/views/layouts/application.html.erb",
63
+ "spec/fixtures/app/views/users/_form.html.erb",
64
+ "spec/fixtures/app/views/users/edit.html.erb",
65
+ "spec/fixtures/app/views/users/index.html.erb",
66
+ "spec/fixtures/app/views/users/new.html.erb",
67
+ "spec/fixtures/app/views/users/show.html.erb",
68
+ "spec/fixtures/config.ru",
69
+ "spec/fixtures/config/application.rb",
70
+ "spec/fixtures/config/boot.rb",
71
+ "spec/fixtures/config/database.yml",
72
+ "spec/fixtures/config/environment.rb",
73
+ "spec/fixtures/config/environments/development.rb",
74
+ "spec/fixtures/config/environments/production.rb",
75
+ "spec/fixtures/config/environments/test.rb",
76
+ "spec/fixtures/config/initializers/backtrace_silencers.rb",
77
+ "spec/fixtures/config/initializers/inflections.rb",
78
+ "spec/fixtures/config/initializers/mime_types.rb",
79
+ "spec/fixtures/config/initializers/secret_token.rb",
80
+ "spec/fixtures/config/initializers/session_store.rb",
81
+ "spec/fixtures/config/locales/en.yml",
82
+ "spec/fixtures/config/routes.rb",
83
+ "spec/fixtures/db/migrate/20100831135208_create_users.rb",
84
+ "spec/fixtures/db/seeds.rb",
85
+ "spec/fixtures/doc/README_FOR_APP",
86
+ "spec/fixtures/lib/tasks/.gitkeep",
49
87
  "spec/fixtures/log/development.log",
50
88
  "spec/fixtures/log/production.log",
51
89
  "spec/fixtures/log/server.log",
52
90
  "spec/fixtures/log/test.log",
91
+ "spec/fixtures/public/404.html",
92
+ "spec/fixtures/public/422.html",
93
+ "spec/fixtures/public/500.html",
94
+ "spec/fixtures/public/favicon.ico",
95
+ "spec/fixtures/public/images/rails.png",
96
+ "spec/fixtures/public/index.html",
97
+ "spec/fixtures/public/javascripts/application.js",
98
+ "spec/fixtures/public/javascripts/controls.js",
99
+ "spec/fixtures/public/javascripts/dragdrop.js",
100
+ "spec/fixtures/public/javascripts/effects.js",
101
+ "spec/fixtures/public/javascripts/prototype.js",
102
+ "spec/fixtures/public/javascripts/rails.js",
103
+ "spec/fixtures/public/robots.txt",
104
+ "spec/fixtures/public/stylesheets/.gitkeep",
105
+ "spec/fixtures/public/stylesheets/scaffold.css",
106
+ "spec/fixtures/script/rails",
107
+ "spec/fixtures/test/fixtures/users.yml",
108
+ "spec/fixtures/test/functional/users_controller_test.rb",
109
+ "spec/fixtures/test/performance/browsing_test.rb",
110
+ "spec/fixtures/test/test_helper.rb",
111
+ "spec/fixtures/test/unit/helpers/users_helper_test.rb",
112
+ "spec/fixtures/test/unit/user_test.rb",
113
+ "spec/fixtures/vendor/plugins/.gitkeep",
53
114
  "spec/load_spec.rb",
54
- "spec/rails3_assist/app/app_dirs_spec.rb",
55
- "spec/rails3_assist/app/app_file_names_spec.rb",
56
- "spec/rails3_assist/app/app_files_spec.rb",
57
- "spec/rails3_assist/artifact/controller/controller_spec.rb",
58
- "spec/rails3_assist/artifact/helper/helper_spec.rb",
59
- "spec/rails3_assist/artifact/mailer/mailer_spec.rb",
60
- "spec/rails3_assist/artifact/migration/migration_spec.rb",
61
- "spec/rails3_assist/artifact/model/model_spec.rb",
62
- "spec/rails3_assist/artifact/observer/observer_spec.rb",
63
- "spec/rails3_assist/artifact/orm/active_record_spec.rb",
64
- "spec/rails3_assist/artifact/orm/mongo_mapper_spec.rb",
65
- "spec/rails3_assist/artifact/orm/mongoid_spec.rb",
66
- "spec/rails3_assist/artifact/view_spec/view_controller_action_spec.rb",
67
- "spec/rails3_assist/artifact/view_spec/view_controller_default_action_specc.rb",
115
+ "spec/rails3_assist/app_spec.rb",
116
+ "spec/rails3_assist/artifact/directory_spec.rb",
117
+ "spec/rails3_assist/artifact/files_spec.rb",
118
+ "spec/rails3_assist/artifact/path_spec.rb",
119
+ "spec/rails3_assist/artifact_spec.rb",
120
+ "spec/rails3_assist/directory/app_spec.rb",
121
+ "spec/rails3_assist/directory/container_spec.rb",
122
+ "spec/rails3_assist/directory/root_spec.rb",
123
+ "spec/rails3_assist/directory_spec.rb",
124
+ "spec/rails3_assist/file/application_spec.rb",
125
+ "spec/rails3_assist/file/environment_spec.rb",
126
+ "spec/rails3_assist/file/special_spec.rb",
127
+ "spec/rails3_assist/file_spec.rb",
128
+ "spec/rails3_assist/files_spec.rb",
129
+ "spec/rails3_assist/rspec/have_app_config_spec.rb",
68
130
  "spec/spec_helper.rb"
69
131
  ]
70
132
  s.homepage = %q{http://github.com/kristianmandrup/rails3-assist}
@@ -73,21 +135,50 @@ Gem::Specification.new do |s|
73
135
  s.rubygems_version = %q{1.3.7}
74
136
  s.summary = %q{Assist in operating on Rails 3 artifacts including migrations}
75
137
  s.test_files = [
76
- "spec/load_spec.rb",
77
- "spec/rails3_assist/app/app_dirs_spec.rb",
78
- "spec/rails3_assist/app/app_file_names_spec.rb",
79
- "spec/rails3_assist/app/app_files_spec.rb",
80
- "spec/rails3_assist/artifact/controller/controller_spec.rb",
81
- "spec/rails3_assist/artifact/helper/helper_spec.rb",
82
- "spec/rails3_assist/artifact/mailer/mailer_spec.rb",
83
- "spec/rails3_assist/artifact/migration/migration_spec.rb",
84
- "spec/rails3_assist/artifact/model/model_spec.rb",
85
- "spec/rails3_assist/artifact/observer/observer_spec.rb",
86
- "spec/rails3_assist/artifact/orm/active_record_spec.rb",
87
- "spec/rails3_assist/artifact/orm/mongo_mapper_spec.rb",
88
- "spec/rails3_assist/artifact/orm/mongoid_spec.rb",
89
- "spec/rails3_assist/artifact/view_spec/view_controller_action_spec.rb",
90
- "spec/rails3_assist/artifact/view_spec/view_controller_default_action_specc.rb",
138
+ "spec/fixtures/app/controllers/application_controller.rb",
139
+ "spec/fixtures/app/controllers/users_controller.rb",
140
+ "spec/fixtures/app/helpers/application_helper.rb",
141
+ "spec/fixtures/app/helpers/users_helper.rb",
142
+ "spec/fixtures/app/mailers/user_mailer.rb",
143
+ "spec/fixtures/app/models/user.rb",
144
+ "spec/fixtures/app/models/user_observer.rb",
145
+ "spec/fixtures/app/permits/user_permit.rb",
146
+ "spec/fixtures/config/application.rb",
147
+ "spec/fixtures/config/boot.rb",
148
+ "spec/fixtures/config/environment.rb",
149
+ "spec/fixtures/config/environments/development.rb",
150
+ "spec/fixtures/config/environments/production.rb",
151
+ "spec/fixtures/config/environments/test.rb",
152
+ "spec/fixtures/config/initializers/backtrace_silencers.rb",
153
+ "spec/fixtures/config/initializers/inflections.rb",
154
+ "spec/fixtures/config/initializers/mime_types.rb",
155
+ "spec/fixtures/config/initializers/secret_token.rb",
156
+ "spec/fixtures/config/initializers/session_store.rb",
157
+ "spec/fixtures/config/routes.rb",
158
+ "spec/fixtures/db/migrate/20100831135208_create_users.rb",
159
+ "spec/fixtures/db/seeds.rb",
160
+ "spec/fixtures/test/functional/users_controller_test.rb",
161
+ "spec/fixtures/test/performance/browsing_test.rb",
162
+ "spec/fixtures/test/test_helper.rb",
163
+ "spec/fixtures/test/unit/helpers/users_helper_test.rb",
164
+ "spec/fixtures/test/unit/user_test.rb",
165
+ "spec/fixtures.rb",
166
+ "spec/load_spec.rb",
167
+ "spec/rails3_assist/app_spec.rb",
168
+ "spec/rails3_assist/artifact/directory_spec.rb",
169
+ "spec/rails3_assist/artifact/files_spec.rb",
170
+ "spec/rails3_assist/artifact/path_spec.rb",
171
+ "spec/rails3_assist/artifact_spec.rb",
172
+ "spec/rails3_assist/directory/app_spec.rb",
173
+ "spec/rails3_assist/directory/container_spec.rb",
174
+ "spec/rails3_assist/directory/root_spec.rb",
175
+ "spec/rails3_assist/directory_spec.rb",
176
+ "spec/rails3_assist/file/application_spec.rb",
177
+ "spec/rails3_assist/file/environment_spec.rb",
178
+ "spec/rails3_assist/file/special_spec.rb",
179
+ "spec/rails3_assist/file_spec.rb",
180
+ "spec/rails3_assist/files_spec.rb",
181
+ "spec/rails3_assist/rspec/have_app_config_spec.rb",
91
182
  "spec/spec_helper.rb"
92
183
  ]
93
184
 
@@ -0,0 +1,4 @@
1
+ .bundle
2
+ db/*.sqlite3
3
+ log/*.log
4
+ tmp/**/*
@@ -0,0 +1,30 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gem 'rails', '3.0.0'
4
+
5
+ # Bundle edge Rails instead:
6
+ # gem 'rails', :git => 'git://github.com/rails/rails.git'
7
+
8
+ gem 'sqlite3-ruby', :require => 'sqlite3'
9
+
10
+ # Use unicorn as the web server
11
+ # gem 'unicorn'
12
+
13
+ # Deploy with Capistrano
14
+ # gem 'capistrano'
15
+
16
+ # To use debugger
17
+ # gem 'ruby-debug'
18
+
19
+ # Bundle the extra gems:
20
+ # gem 'bj'
21
+ # gem 'nokogiri'
22
+ # gem 'sqlite3-ruby', :require => 'sqlite3'
23
+ # gem 'aws-s3', :require => 'aws/s3'
24
+
25
+ # Bundle gems for the local environment. Make sure to
26
+ # put test-only gems in this group so their generators
27
+ # and rake tasks are available in development mode:
28
+ # group :development, :test do
29
+ # gem 'webrat'
30
+ # end
@@ -0,0 +1,73 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ abstract (1.0.0)
5
+ actionmailer (3.0.0)
6
+ actionpack (= 3.0.0)
7
+ mail (~> 2.2.5)
8
+ actionpack (3.0.0)
9
+ activemodel (= 3.0.0)
10
+ activesupport (= 3.0.0)
11
+ builder (~> 2.1.2)
12
+ erubis (~> 2.6.6)
13
+ i18n (~> 0.4.1)
14
+ rack (~> 1.2.1)
15
+ rack-mount (~> 0.6.12)
16
+ rack-test (~> 0.5.4)
17
+ tzinfo (~> 0.3.23)
18
+ activemodel (3.0.0)
19
+ activesupport (= 3.0.0)
20
+ builder (~> 2.1.2)
21
+ i18n (~> 0.4.1)
22
+ activerecord (3.0.0)
23
+ activemodel (= 3.0.0)
24
+ activesupport (= 3.0.0)
25
+ arel (~> 1.0.0)
26
+ tzinfo (~> 0.3.23)
27
+ activeresource (3.0.0)
28
+ activemodel (= 3.0.0)
29
+ activesupport (= 3.0.0)
30
+ activesupport (3.0.0)
31
+ arel (1.0.0.rc1)
32
+ activesupport (>= 3.0.0.beta)
33
+ builder (2.1.2)
34
+ erubis (2.6.6)
35
+ abstract (>= 1.0.0)
36
+ i18n (0.4.1)
37
+ mail (2.2.5)
38
+ activesupport (>= 2.3.6)
39
+ mime-types
40
+ treetop (>= 1.4.5)
41
+ mime-types (1.16)
42
+ polyglot (0.3.1)
43
+ rack (1.2.1)
44
+ rack-mount (0.6.12)
45
+ rack (>= 1.0.0)
46
+ rack-test (0.5.4)
47
+ rack (>= 1.0)
48
+ rails (3.0.0)
49
+ actionmailer (= 3.0.0)
50
+ actionpack (= 3.0.0)
51
+ activerecord (= 3.0.0)
52
+ activeresource (= 3.0.0)
53
+ activesupport (= 3.0.0)
54
+ bundler (~> 1.0.0)
55
+ railties (= 3.0.0)
56
+ railties (3.0.0)
57
+ actionpack (= 3.0.0)
58
+ activesupport (= 3.0.0)
59
+ rake (>= 0.8.4)
60
+ thor (~> 0.14.0)
61
+ rake (0.8.7)
62
+ sqlite3-ruby (1.3.1)
63
+ thor (0.14.0)
64
+ treetop (1.4.8)
65
+ polyglot (>= 0.3.1)
66
+ tzinfo (0.3.23)
67
+
68
+ PLATFORMS
69
+ ruby
70
+
71
+ DEPENDENCIES
72
+ rails (= 3.0.0)
73
+ sqlite3-ruby
@@ -0,0 +1,256 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application framework that includes everything needed to create
4
+ database-backed web applications according to the Model-View-Control pattern.
5
+
6
+ This pattern splits the view (also called the presentation) into "dumb"
7
+ templates that are primarily responsible for inserting pre-built data in between
8
+ HTML tags. The model contains the "smart" domain objects (such as Account,
9
+ Product, Person, Post) that holds all the business logic and knows how to
10
+ persist themselves to a database. The controller handles the incoming requests
11
+ (such as Save New Account, Update Product, Show Post) by manipulating the model
12
+ and directing data to the view.
13
+
14
+ In Rails, the model is handled by what's called an object-relational mapping
15
+ layer entitled Active Record. This layer allows you to present the data from
16
+ database rows as objects and embellish these data objects with business logic
17
+ methods. You can read more about Active Record in
18
+ link:files/vendor/rails/activerecord/README.html.
19
+
20
+ The controller and view are handled by the Action Pack, which handles both
21
+ layers by its two parts: Action View and Action Controller. These two layers
22
+ are bundled in a single package due to their heavy interdependence. This is
23
+ unlike the relationship between the Active Record and Action Pack that is much
24
+ more separate. Each of these packages can be used independently outside of
25
+ Rails. You can read more about Action Pack in
26
+ link:files/vendor/rails/actionpack/README.html.
27
+
28
+
29
+ == Getting Started
30
+
31
+ 1. At the command prompt, create a new Rails application:
32
+ <tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
33
+
34
+ 2. Change directory to <tt>myapp</tt> and start the web server:
35
+ <tt>cd myapp; rails server</tt> (run with --help for options)
36
+
37
+ 3. Go to http://localhost:3000/ and you'll see:
38
+ "Welcome aboard: You're riding Ruby on Rails!"
39
+
40
+ 4. Follow the guidelines to start developing your application. You can find
41
+ the following resources handy:
42
+
43
+ * The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
44
+ * Ruby on Rails Tutorial Book: http://www.railstutorial.org/
45
+
46
+
47
+ == Debugging Rails
48
+
49
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
50
+ will help you debug it and get it back on the rails.
51
+
52
+ First area to check is the application log files. Have "tail -f" commands
53
+ running on the server.log and development.log. Rails will automatically display
54
+ debugging and runtime information to these files. Debugging info will also be
55
+ shown in the browser on requests from 127.0.0.1.
56
+
57
+ You can also log your own messages directly into the log file from your code
58
+ using the Ruby logger class from inside your controllers. Example:
59
+
60
+ class WeblogController < ActionController::Base
61
+ def destroy
62
+ @weblog = Weblog.find(params[:id])
63
+ @weblog.destroy
64
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
65
+ end
66
+ end
67
+
68
+ The result will be a message in your log file along the lines of:
69
+
70
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
71
+
72
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
73
+
74
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
75
+ several books available online as well:
76
+
77
+ * Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
78
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
79
+
80
+ These two books will bring you up to speed on the Ruby language and also on
81
+ programming in general.
82
+
83
+
84
+ == Debugger
85
+
86
+ Debugger support is available through the debugger command when you start your
87
+ Mongrel or WEBrick server with --debugger. This means that you can break out of
88
+ execution at any point in the code, investigate and change the model, and then,
89
+ resume execution! You need to install ruby-debug to run the server in debugging
90
+ mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example:
91
+
92
+ class WeblogController < ActionController::Base
93
+ def index
94
+ @posts = Post.find(:all)
95
+ debugger
96
+ end
97
+ end
98
+
99
+ So the controller will accept the action, run the first line, then present you
100
+ with a IRB prompt in the server window. Here you can do things like:
101
+
102
+ >> @posts.inspect
103
+ => "[#<Post:0x14a6be8
104
+ @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
105
+ #<Post:0x14a6620
106
+ @attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
107
+ >> @posts.first.title = "hello from a debugger"
108
+ => "hello from a debugger"
109
+
110
+ ...and even better, you can examine how your runtime objects actually work:
111
+
112
+ >> f = @posts.first
113
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
114
+ >> f.
115
+ Display all 152 possibilities? (y or n)
116
+
117
+ Finally, when you're ready to resume execution, you can enter "cont".
118
+
119
+
120
+ == Console
121
+
122
+ The console is a Ruby shell, which allows you to interact with your
123
+ application's domain model. Here you'll have all parts of the application
124
+ configured, just like it is when the application is running. You can inspect
125
+ domain models, change values, and save to the database. Starting the script
126
+ without arguments will launch it in the development environment.
127
+
128
+ To start the console, run <tt>rails console</tt> from the application
129
+ directory.
130
+
131
+ Options:
132
+
133
+ * Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications
134
+ made to the database.
135
+ * Passing an environment name as an argument will load the corresponding
136
+ environment. Example: <tt>rails console production</tt>.
137
+
138
+ To reload your controllers and models after launching the console run
139
+ <tt>reload!</tt>
140
+
141
+ More information about irb can be found at:
142
+ link:http://www.rubycentral.com/pickaxe/irb.html
143
+
144
+
145
+ == dbconsole
146
+
147
+ You can go to the command line of your database directly through <tt>rails
148
+ dbconsole</tt>. You would be connected to the database with the credentials
149
+ defined in database.yml. Starting the script without arguments will connect you
150
+ to the development database. Passing an argument will connect you to a different
151
+ database, like <tt>rails dbconsole production</tt>. Currently works for MySQL,
152
+ PostgreSQL and SQLite 3.
153
+
154
+ == Description of Contents
155
+
156
+ The default directory structure of a generated Ruby on Rails application:
157
+
158
+ |-- app
159
+ | |-- controllers
160
+ | |-- helpers
161
+ | |-- models
162
+ | `-- views
163
+ | `-- layouts
164
+ |-- config
165
+ | |-- environments
166
+ | |-- initializers
167
+ | `-- locales
168
+ |-- db
169
+ |-- doc
170
+ |-- lib
171
+ | `-- tasks
172
+ |-- log
173
+ |-- public
174
+ | |-- images
175
+ | |-- javascripts
176
+ | `-- stylesheets
177
+ |-- script
178
+ | `-- performance
179
+ |-- test
180
+ | |-- fixtures
181
+ | |-- functional
182
+ | |-- integration
183
+ | |-- performance
184
+ | `-- unit
185
+ |-- tmp
186
+ | |-- cache
187
+ | |-- pids
188
+ | |-- sessions
189
+ | `-- sockets
190
+ `-- vendor
191
+ `-- plugins
192
+
193
+ app
194
+ Holds all the code that's specific to this particular application.
195
+
196
+ app/controllers
197
+ Holds controllers that should be named like weblogs_controller.rb for
198
+ automated URL mapping. All controllers should descend from
199
+ ApplicationController which itself descends from ActionController::Base.
200
+
201
+ app/models
202
+ Holds models that should be named like post.rb. Models descend from
203
+ ActiveRecord::Base by default.
204
+
205
+ app/views
206
+ Holds the template files for the view that should be named like
207
+ weblogs/index.html.erb for the WeblogsController#index action. All views use
208
+ eRuby syntax by default.
209
+
210
+ app/views/layouts
211
+ Holds the template files for layouts to be used with views. This models the
212
+ common header/footer method of wrapping views. In your views, define a layout
213
+ using the <tt>layout :default</tt> and create a file named default.html.erb.
214
+ Inside default.html.erb, call <% yield %> to render the view using this
215
+ layout.
216
+
217
+ app/helpers
218
+ Holds view helpers that should be named like weblogs_helper.rb. These are
219
+ generated for you automatically when using generators for controllers.
220
+ Helpers can be used to wrap functionality for your views into methods.
221
+
222
+ config
223
+ Configuration files for the Rails environment, the routing map, the database,
224
+ and other dependencies.
225
+
226
+ db
227
+ Contains the database schema in schema.rb. db/migrate contains all the
228
+ sequence of Migrations for your schema.
229
+
230
+ doc
231
+ This directory is where your application documentation will be stored when
232
+ generated using <tt>rake doc:app</tt>
233
+
234
+ lib
235
+ Application specific libraries. Basically, any kind of custom code that
236
+ doesn't belong under controllers, models, or helpers. This directory is in
237
+ the load path.
238
+
239
+ public
240
+ The directory available for the web server. Contains subdirectories for
241
+ images, stylesheets, and javascripts. Also contains the dispatchers and the
242
+ default HTML files. This should be set as the DOCUMENT_ROOT of your web
243
+ server.
244
+
245
+ script
246
+ Helper scripts for automation and generation.
247
+
248
+ test
249
+ Unit and functional tests along with fixtures. When using the rails generate
250
+ command, template test files will be generated for you and placed in this
251
+ directory.
252
+
253
+ vendor
254
+ External libraries that the application depends on. Also includes the plugins
255
+ subdirectory. If the app has frozen rails, those gems also go here, under
256
+ vendor/rails/. This directory is in the load path.
@@ -0,0 +1,7 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+ require 'rake'
6
+
7
+ Fixtures::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end