public
Fork of fudgestudios/bort
Description: A base rails app featuring: RESTful Authentication, Will Paginate, Rspec & Rspec-rails, Exception Notifier, Asset Packager, Cap Recipe. Put together by Fudge to remove the need for boring project setup.
Homepage: http://www.fudgestudios.com
Clone URL: git://github.com/UnderpantsGnome/bort.git
fix the gem silliness
Sun Nov 09 11:53:59 -0800 2008
commit  405719b0a8e6f6b7c98f43c41b48d4435f78c68c
tree    d8c7d26e5d4b0739b15386b4f92145d0011cc98a
parent  611558d71e4edc3a129f972155eec5d75cdb3d39
...
 
 
 
1
2
3
...
5
6
7
8
 
9
10
11
...
20
21
22
23
24
25
26
27
28
29
 
30
31
32
...
45
46
47
48
 
49
50
51
...
1
2
3
4
5
6
...
8
9
10
 
11
12
13
14
...
23
24
25
 
 
 
 
 
 
 
26
27
28
29
...
42
43
44
 
45
46
47
48
0
@@ -1,3 +1,6 @@
0
+require 'rubygems'
0
+require 'aasm'
0
+
0
 # Be sure to restart your server when you modify this file
0
 
0
 # Uncomment below to force Rails into production mode when
0
@@ -5,7 +8,7 @@
0
 # ENV['RAILS_ENV'] ||= 'production'
0
 
0
 # Specifies gem version of Rails to use when vendor/rails is not present
0
-RAILS_GEM_VERSION = '2.1.1' unless defined? RAILS_GEM_VERSION
0
+RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
0
 
0
 # Bootstrap the Rails environment, frameworks, and default configuration
0
 require File.join(File.dirname(__FILE__), 'boot')
0
@@ -20,13 +23,7 @@ Rails::Initializer.run do |config|
0
   # you must remove the Active Record framework.
0
   # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
0
 
0
-  # Specify gems that this application depends on. 
0
-  # They can then be installed with "rake gems:install" on new installations.
0
-  # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
0
-  # config.gem "aws-s3", :lib => "aws/s3"
0
-config.gem "capistrano-ext", :lib => "capistrano"
0
-
0
-  # Only load the plugins named here, in the order given. By default, all plugins 
0
+  # Only load the plugins named here, in the order given. By default, all plugins
0
   # in vendor/plugins are loaded in alphabetical order.
0
   # :all can be used as a placeholder for all plugins not explicitly named
0
   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
0
@@ -45,7 +42,7 @@ config.gem "capistrano-ext", :lib => "capistrano"
0
 
0
   # Your secret key for verifying cookie session data integrity.
0
   # If you change this key, all old sessions will become invalid!
0
-  # Make sure the secret is at least 30 characters and all random, 
0
+  # Make sure the secret is at least 30 characters and all random,
0
   # no regular words or you'll be exposed to dictionary attacks.
0
   config.action_controller.session = {
0
     :session_key => '_bort_session',
...
15
16
17
 
 
 
18
19
20
...
22
23
24
25
26
27
 
28
29
30
...
38
39
40
 
41
42
43
44
45
 
46
47
48
...
15
16
17
18
19
20
21
22
23
...
25
26
27
 
28
 
29
30
31
32
...
40
41
42
43
44
45
46
47
48
49
50
51
52
0
@@ -15,6 +15,9 @@ gems:
0
   #   # require name is different than the gem name
0
   #   require_name: foo-bar
0
 
0
+  - name: 'rails'
0
+    version: '2.1.2'
0
+
0
   - name: 'config_reader'
0
     version: '0.0.2'
0
     load: true
0
@@ -22,9 +25,8 @@ gems:
0
   - name: 'rspec-rails'
0
     version: '1.1.11'
0
 
0
-  # the version of rcov that doesn't segfualt all the time
0
   - name: 'mergulhao-rcov'
0
-    versoin: '0.8.1.3.0'
0
+    version: '0.8.1.3.0'
0
     source: 'http://gems.github.com'
0
 
0
   - name: 'capistrano'
0
@@ -38,11 +40,13 @@ gems:
0
     load: true
0
 
0
   - name: 'mislav-will_paginate'
0
+    require_name: 'will_paginate'
0
     version: '2.3.6'
0
     load: true
0
     source: 'http://gems.github.com'
0
 
0
   - name: 'rubyist-aasm'
0
+    require_name: 'aasm'
0
     version: '2.0.2'
0
     laod: true
0
     source: 'http://gems.github.com'
...
73
74
75
76
 
77
78
79
...
73
74
75
 
76
77
78
79
0
@@ -73,7 +73,7 @@ ActiveRecord::Schema.define(:version => 20081022002158) do
0
     t.string   "salt",                      :limit => 40
0
     t.string   "remember_token",            :limit => 40
0
     t.string   "activation_code",           :limit => 40
0
-    t.string   "state",                                    :default => "passive"
0
+    t.string   "state",                                    :default => "passive", :null => false
0
     t.datetime "remember_token_expires_at"
0
     t.datetime "activated_at"
0
     t.datetime "deleted_at"

Comments