active_record-events 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/Rakefile +4 -4
  4. data/lib/active_record/events/version.rb +1 -1
  5. data/spec/dummy/config/boot.rb +4 -9
  6. data/spec/dummy/config/database.yml +3 -3
  7. data/spec/dummy/config/environment.rb +13 -4
  8. data/spec/dummy/db/development.sqlite3 +0 -0
  9. data/spec/dummy/db/migrate/20150813132804_create_tasks.rb +1 -1
  10. data/spec/dummy/db/test.sqlite3 +0 -0
  11. data/spec/spec_helper.rb +1 -6
  12. metadata +25 -79
  13. data/spec/dummy/README.rdoc +0 -261
  14. data/spec/dummy/Rakefile +0 -7
  15. data/spec/dummy/app/assets/javascripts/application.js +0 -15
  16. data/spec/dummy/app/assets/stylesheets/application.css +0 -13
  17. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  18. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  19. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  20. data/spec/dummy/config.ru +0 -4
  21. data/spec/dummy/config/application.rb +0 -65
  22. data/spec/dummy/config/environments/development.rb +0 -37
  23. data/spec/dummy/config/environments/production.rb +0 -67
  24. data/spec/dummy/config/environments/test.rb +0 -37
  25. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  26. data/spec/dummy/config/initializers/inflections.rb +0 -15
  27. data/spec/dummy/config/initializers/mime_types.rb +0 -5
  28. data/spec/dummy/config/initializers/secret_token.rb +0 -7
  29. data/spec/dummy/config/initializers/session_store.rb +0 -8
  30. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  31. data/spec/dummy/config/locales/en.yml +0 -5
  32. data/spec/dummy/config/routes.rb +0 -58
  33. data/spec/dummy/log/development.log +0 -725
  34. data/spec/dummy/log/test.log +0 -7118
  35. data/spec/dummy/public/404.html +0 -26
  36. data/spec/dummy/public/422.html +0 -26
  37. data/spec/dummy/public/500.html +0 -25
  38. data/spec/dummy/public/favicon.ico +0 -0
  39. data/spec/dummy/script/rails +0 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51e19972997a5f87de5268b2bc246e9f4188a3ff
4
- data.tar.gz: c86cec40b7cba3054f81a2d29e39cbff1cf2c4d4
3
+ metadata.gz: a0b1350f5e2e286cc941a3568065e8fc0af60f6d
4
+ data.tar.gz: 2167ddafdd1fe0218b51edba809f54990035ee56
5
5
  SHA512:
6
- metadata.gz: 57566bc28b17b9c4ad9ab426c1125b321a0b2289b9807d315dbb674a71c48545e50feeae3b2c0298af9150002906c1a17a814c39f5c1f3a84b3204a101955a72
7
- data.tar.gz: 73faffcc142e362e2f20428a6b24f3b6cb16f4b6dd7529a5883a324f1fc53783fee5dc7ce5d1dcf813ae664c95e1e3c57150817be02892c77ba2ab7e5e3adc80
6
+ metadata.gz: 8d739ebb3497a38b91b3f7e04f3a24b4a1992b86642104807def7249893e739b556ff7fa23c9423a42aefd13ed762fd9d5493a0ea594b09923bf63c1a734886f
7
+ data.tar.gz: ab301feadc5eb722a373a930b6d6724d194e63e115801deeeb22f4e41d53fe513c1fb43547a3adb7948d79c2ef4f0fae8761c263488526fe1ac75f045216881c
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # ActiveRecord::Events
1
+ # ActiveRecord::Events [![Gem version](https://img.shields.io/gem/v/active_record-events.svg)](https://rubygems.org/gems/active_record-events) [![Build status](https://img.shields.io/travis/pienkowb/active_record-events.svg)](https://travis-ci.org/pienkowb/active_record-events)
2
2
 
3
3
  An ActiveRecord extension providing convenience methods for timestamp management.
4
4
 
@@ -40,7 +40,7 @@ class Task < ActiveRecord::Base
40
40
  end
41
41
 
42
42
  def complete!
43
- touch :completed_at
43
+ touch(:completed_at)
44
44
  end
45
45
  end
46
46
  ```
@@ -65,8 +65,8 @@ handles :complete, :archive
65
65
  In addition, the macro defines two scope methods – one for retrieving objects with a recorded timestamp and one for those without it, for example:
66
66
 
67
67
  ```ruby
68
- scope :not_completed, -> { where completed_at: nil }
69
- scope :completed, -> { where.not completed_at: nil }
68
+ scope :not_completed, -> { where(completed_at: nil) }
69
+ scope :completed, -> { where.not(completed_at: nil) }
70
70
  ```
71
71
 
72
72
  ## See also
data/Rakefile CHANGED
@@ -22,8 +22,8 @@ RDoc::Task.new(:rdoc) do |rdoc|
22
22
  rdoc.rdoc_files.include('lib/**/*.rb')
23
23
  end
24
24
 
25
- APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
26
- load 'rails/tasks/engine.rake'
25
+ require 'standalone_migrations'
26
+ StandaloneMigrations::Tasks.load_tasks
27
27
 
28
28
  Bundler::GemHelper.install_tasks
29
29
 
@@ -31,6 +31,6 @@ require 'rspec/core'
31
31
  require 'rspec/core/rake_task'
32
32
 
33
33
  desc 'Run all specs in spec directory (excluding plugin specs)'
34
- RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
34
+ RSpec::Core::RakeTask.new(spec: 'db:test:prepare')
35
35
 
36
- task :default => :spec
36
+ task default: :spec
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module Events
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
@@ -1,10 +1,5 @@
1
- require 'rubygems'
2
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
3
 
4
- if File.exist?(gemfile)
5
- ENV['BUNDLE_GEMFILE'] = gemfile
6
- require 'bundler'
7
- Bundler.setup
8
- end
9
-
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -5,7 +5,7 @@
5
5
  # gem 'sqlite3'
6
6
  development:
7
7
  adapter: sqlite3
8
- database: db/development.sqlite3
8
+ database: spec/dummy/db/development.sqlite3
9
9
  pool: 5
10
10
  timeout: 5000
11
11
 
@@ -14,12 +14,12 @@ development:
14
14
  # Do not set this db to the same as development or production.
15
15
  test:
16
16
  adapter: sqlite3
17
- database: db/test.sqlite3
17
+ database: spec/dummy/db/test.sqlite3
18
18
  pool: 5
19
19
  timeout: 5000
20
20
 
21
21
  production:
22
22
  adapter: sqlite3
23
- database: db/production.sqlite3
23
+ database: spec/dummy/db/production.sqlite3
24
24
  pool: 5
25
25
  timeout: 5000
@@ -1,5 +1,14 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
1
+ require File.expand_path('../boot', __FILE__)
3
2
 
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
3
+ require 'active_record'
4
+
5
+ Bundler.require(:default, ENV['RAILS_ENV'])
6
+
7
+ # Load application files
8
+ Dir["#{File.dirname(__FILE__)}/../app/**/*.rb"].each { |f| require f }
9
+
10
+ # Load the database configuration
11
+ config_file = File.expand_path('../database.yml', __FILE__)
12
+ config = YAML::load_file(config_file)[ENV['RAILS_ENV']]
13
+
14
+ ActiveRecord::Base.establish_connection(config)
Binary file
@@ -3,7 +3,7 @@ class CreateTasks < ActiveRecord::Migration
3
3
  create_table :tasks do |t|
4
4
  t.datetime :completed_at
5
5
 
6
- t.timestamps
6
+ t.timestamps null: false
7
7
  end
8
8
  end
9
9
  end
Binary file
data/spec/spec_helper.rb CHANGED
@@ -2,20 +2,15 @@ ENV['RAILS_ENV'] ||= 'test'
2
2
 
3
3
  require File.expand_path('../dummy/config/environment.rb', __FILE__)
4
4
 
5
- require 'rspec/rails'
6
- require 'rspec/autorun'
7
5
  require 'factory_girl'
8
6
  require 'timecop'
9
7
 
10
- Rails.backtrace_cleaner.remove_silencers!
11
-
12
8
  # Load support files
13
9
  Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
10
 
15
11
  RSpec.configure do |config|
12
+ config.color = true
16
13
  config.order = :random
17
- config.use_transactional_fixtures = true
18
- config.color_enabled = true
19
14
 
20
15
  config.include FactoryGirl::Syntax::Methods
21
16
 
metadata CHANGED
@@ -1,125 +1,125 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record-events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartosz Pieńkowski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-23 00:00:00.000000000 Z
11
+ date: 2016-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: verbs
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rails
42
+ name: appraisal
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: sqlite3
56
+ name: standalone_migrations
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: rspec-rails
70
+ name: sqlite3
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: test-unit
84
+ name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '>='
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '>='
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: factory_girl
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - '>='
101
+ - - ">="
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - '>='
108
+ - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: timecop
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - '>='
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - '>='
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  description: An ActiveRecord extension providing convenience methods for timestamp
@@ -135,41 +135,14 @@ files:
135
135
  - lib/active_record/events.rb
136
136
  - lib/active_record/events/version.rb
137
137
  - spec/active_record/events_spec.rb
138
- - spec/dummy/README.rdoc
139
- - spec/dummy/Rakefile
140
- - spec/dummy/app/assets/javascripts/application.js
141
- - spec/dummy/app/assets/stylesheets/application.css
142
- - spec/dummy/app/controllers/application_controller.rb
143
- - spec/dummy/app/helpers/application_helper.rb
144
138
  - spec/dummy/app/models/task.rb
145
- - spec/dummy/app/views/layouts/application.html.erb
146
- - spec/dummy/config.ru
147
- - spec/dummy/config/application.rb
148
139
  - spec/dummy/config/boot.rb
149
140
  - spec/dummy/config/database.yml
150
141
  - spec/dummy/config/environment.rb
151
- - spec/dummy/config/environments/development.rb
152
- - spec/dummy/config/environments/production.rb
153
- - spec/dummy/config/environments/test.rb
154
- - spec/dummy/config/initializers/backtrace_silencers.rb
155
- - spec/dummy/config/initializers/inflections.rb
156
- - spec/dummy/config/initializers/mime_types.rb
157
- - spec/dummy/config/initializers/secret_token.rb
158
- - spec/dummy/config/initializers/session_store.rb
159
- - spec/dummy/config/initializers/wrap_parameters.rb
160
- - spec/dummy/config/locales/en.yml
161
- - spec/dummy/config/routes.rb
162
142
  - spec/dummy/db/development.sqlite3
163
143
  - spec/dummy/db/migrate/20150813132804_create_tasks.rb
164
144
  - spec/dummy/db/schema.rb
165
145
  - spec/dummy/db/test.sqlite3
166
- - spec/dummy/log/development.log
167
- - spec/dummy/log/test.log
168
- - spec/dummy/public/404.html
169
- - spec/dummy/public/422.html
170
- - spec/dummy/public/500.html
171
- - spec/dummy/public/favicon.ico
172
- - spec/dummy/script/rails
173
146
  - spec/spec_helper.rb
174
147
  - spec/support/factories.rb
175
148
  homepage: https://github.com/pienkowb/active_record-events
@@ -182,56 +155,29 @@ require_paths:
182
155
  - lib
183
156
  required_ruby_version: !ruby/object:Gem::Requirement
184
157
  requirements:
185
- - - '>='
158
+ - - ">="
186
159
  - !ruby/object:Gem::Version
187
160
  version: 1.9.3
188
161
  required_rubygems_version: !ruby/object:Gem::Requirement
189
162
  requirements:
190
- - - '>='
163
+ - - ">="
191
164
  - !ruby/object:Gem::Version
192
165
  version: '0'
193
166
  requirements: []
194
167
  rubyforge_project:
195
- rubygems_version: 2.2.2
168
+ rubygems_version: 2.4.8
196
169
  signing_key:
197
170
  specification_version: 4
198
171
  summary: Manage timestamps in ActiveRecord models
199
172
  test_files:
200
173
  - spec/active_record/events_spec.rb
201
- - spec/dummy/app/assets/javascripts/application.js
202
- - spec/dummy/app/assets/stylesheets/application.css
203
- - spec/dummy/app/controllers/application_controller.rb
204
- - spec/dummy/app/helpers/application_helper.rb
205
174
  - spec/dummy/app/models/task.rb
206
- - spec/dummy/app/views/layouts/application.html.erb
207
- - spec/dummy/config/application.rb
208
175
  - spec/dummy/config/boot.rb
209
176
  - spec/dummy/config/database.yml
210
177
  - spec/dummy/config/environment.rb
211
- - spec/dummy/config/environments/development.rb
212
- - spec/dummy/config/environments/production.rb
213
- - spec/dummy/config/environments/test.rb
214
- - spec/dummy/config/initializers/backtrace_silencers.rb
215
- - spec/dummy/config/initializers/inflections.rb
216
- - spec/dummy/config/initializers/mime_types.rb
217
- - spec/dummy/config/initializers/secret_token.rb
218
- - spec/dummy/config/initializers/session_store.rb
219
- - spec/dummy/config/initializers/wrap_parameters.rb
220
- - spec/dummy/config/locales/en.yml
221
- - spec/dummy/config/routes.rb
222
- - spec/dummy/config.ru
223
178
  - spec/dummy/db/development.sqlite3
224
179
  - spec/dummy/db/migrate/20150813132804_create_tasks.rb
225
180
  - spec/dummy/db/schema.rb
226
181
  - spec/dummy/db/test.sqlite3
227
- - spec/dummy/log/development.log
228
- - spec/dummy/log/test.log
229
- - spec/dummy/public/404.html
230
- - spec/dummy/public/422.html
231
- - spec/dummy/public/500.html
232
- - spec/dummy/public/favicon.ico
233
- - spec/dummy/Rakefile
234
- - spec/dummy/README.rdoc
235
- - spec/dummy/script/rails
236
182
  - spec/spec_helper.rb
237
183
  - spec/support/factories.rb
@@ -1,261 +0,0 @@
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.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.org/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
- | |-- assets
160
- | | |-- images
161
- | | |-- javascripts
162
- | | `-- stylesheets
163
- | |-- controllers
164
- | |-- helpers
165
- | |-- mailers
166
- | |-- models
167
- | `-- views
168
- | `-- layouts
169
- |-- config
170
- | |-- environments
171
- | |-- initializers
172
- | `-- locales
173
- |-- db
174
- |-- doc
175
- |-- lib
176
- | |-- assets
177
- | `-- tasks
178
- |-- log
179
- |-- public
180
- |-- script
181
- |-- test
182
- | |-- fixtures
183
- | |-- functional
184
- | |-- integration
185
- | |-- performance
186
- | `-- unit
187
- |-- tmp
188
- | `-- cache
189
- | `-- assets
190
- `-- vendor
191
- |-- assets
192
- | |-- javascripts
193
- | `-- stylesheets
194
- `-- plugins
195
-
196
- app
197
- Holds all the code that's specific to this particular application.
198
-
199
- app/assets
200
- Contains subdirectories for images, stylesheets, and JavaScript files.
201
-
202
- app/controllers
203
- Holds controllers that should be named like weblogs_controller.rb for
204
- automated URL mapping. All controllers should descend from
205
- ApplicationController which itself descends from ActionController::Base.
206
-
207
- app/models
208
- Holds models that should be named like post.rb. Models descend from
209
- ActiveRecord::Base by default.
210
-
211
- app/views
212
- Holds the template files for the view that should be named like
213
- weblogs/index.html.erb for the WeblogsController#index action. All views use
214
- eRuby syntax by default.
215
-
216
- app/views/layouts
217
- Holds the template files for layouts to be used with views. This models the
218
- common header/footer method of wrapping views. In your views, define a layout
219
- using the <tt>layout :default</tt> and create a file named default.html.erb.
220
- Inside default.html.erb, call <% yield %> to render the view using this
221
- layout.
222
-
223
- app/helpers
224
- Holds view helpers that should be named like weblogs_helper.rb. These are
225
- generated for you automatically when using generators for controllers.
226
- Helpers can be used to wrap functionality for your views into methods.
227
-
228
- config
229
- Configuration files for the Rails environment, the routing map, the database,
230
- and other dependencies.
231
-
232
- db
233
- Contains the database schema in schema.rb. db/migrate contains all the
234
- sequence of Migrations for your schema.
235
-
236
- doc
237
- This directory is where your application documentation will be stored when
238
- generated using <tt>rake doc:app</tt>
239
-
240
- lib
241
- Application specific libraries. Basically, any kind of custom code that
242
- doesn't belong under controllers, models, or helpers. This directory is in
243
- the load path.
244
-
245
- public
246
- The directory available for the web server. Also contains the dispatchers and the
247
- default HTML files. This should be set as the DOCUMENT_ROOT of your web
248
- server.
249
-
250
- script
251
- Helper scripts for automation and generation.
252
-
253
- test
254
- Unit and functional tests along with fixtures. When using the rails generate
255
- command, template test files will be generated for you and placed in this
256
- directory.
257
-
258
- vendor
259
- External libraries that the application depends on. Also includes the plugins
260
- subdirectory. If the app has frozen rails, those gems also go here, under
261
- vendor/rails/. This directory is in the load path.