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
switch to the gems for will_paginate and aasm
Sun Nov 09 11:41:52 -0800 2008
commit  611558d71e4edc3a129f972155eec5d75cdb3d39
tree    d730a756ad466a8a3e886b6e3be88e90e9db8fe7
parent  47858b27f31f5ef81f6251ba440b1d13706854b3
  • app/helpers/application_helper.rb
  • config/gems.yml
  • vendor/plugins/aasm/.gitignore
  • vendor/plugins/aasm/CHANGELOG
  • vendor/plugins/aasm/MIT-LICENSE
  • vendor/plugins/aasm/README.rdoc
  • vendor/plugins/aasm/Rakefile
  • vendor/plugins/aasm/TODO
  • vendor/plugins/aasm/aasm.gemspec
  • vendor/plugins/aasm/aasm.rb
  • vendor/plugins/aasm/doc/jamis.rb
  • vendor/plugins/aasm/lib/aasm.rb
  • vendor/plugins/aasm/lib/event.rb
  • vendor/plugins/aasm/lib/persistence.rb
  • vendor/plugins/aasm/lib/persistence/active_record_persistence.rb
  • vendor/plugins/aasm/lib/state.rb
  • vendor/plugins/aasm/lib/state_machine.rb
  • vendor/plugins/aasm/lib/state_transition.rb
  • vendor/plugins/aasm/lib/version.rb
  • vendor/plugins/aasm/spec/functional/conversation.rb
  • vendor/plugins/aasm/spec/functional/conversation_spec.rb
  • vendor/plugins/aasm/spec/spec_helper.rb
  • vendor/plugins/aasm/spec/unit/aasm_spec.rb
  • vendor/plugins/aasm/spec/unit/active_record_persistence_spec.rb
  • vendor/plugins/aasm/spec/unit/event_spec.rb
  • vendor/plugins/aasm/spec/unit/state_spec.rb
  • vendor/plugins/aasm/spec/unit/state_transition_spec.rb
  • vendor/plugins/will_paginate/.gitignore
  • vendor/plugins/will_paginate/.manifest
  • vendor/plugins/will_paginate/CHANGELOG
  • vendor/plugins/will_paginate/LICENSE
  • vendor/plugins/will_paginate/README.rdoc
  • vendor/plugins/will_paginate/Rakefile
  • vendor/plugins/will_paginate/examples/apple-circle.gif
  • vendor/plugins/will_paginate/examples/index.haml
  • vendor/plugins/will_paginate/examples/index.html
  • vendor/plugins/will_paginate/examples/pagination.css
  • vendor/plugins/will_paginate/examples/pagination.sass
  • vendor/plugins/will_paginate/init.rb
  • vendor/plugins/will_paginate/lib/will_paginate.rb
  • vendor/plugins/will_paginate/lib/will_paginate/array.rb
  • vendor/plugins/will_paginate/lib/will_paginate/collection.rb
  • vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb
  • vendor/plugins/will_paginate/lib/will_paginate/finder.rb
  • vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb
  • vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb
  • vendor/plugins/will_paginate/lib/will_paginate/version.rb
  • vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb
  • vendor/plugins/will_paginate/test/boot.rb
  • vendor/plugins/will_paginate/test/collection_test.rb
  • vendor/plugins/will_paginate/test/console
  • vendor/plugins/will_paginate/test/database.yml
  • vendor/plugins/will_paginate/test/finder_test.rb
  • vendor/plugins/will_paginate/test/fixtures/admin.rb
  • vendor/plugins/will_paginate/test/fixtures/developer.rb
  • vendor/plugins/will_paginate/test/fixtures/developers_projects.yml
  • vendor/plugins/will_paginate/test/fixtures/project.rb
  • vendor/plugins/will_paginate/test/fixtures/projects.yml
  • vendor/plugins/will_paginate/test/fixtures/replies.yml
  • vendor/plugins/will_paginate/test/fixtures/reply.rb
  • vendor/plugins/will_paginate/test/fixtures/schema.rb
  • vendor/plugins/will_paginate/test/fixtures/topic.rb
  • vendor/plugins/will_paginate/test/fixtures/topics.yml
  • vendor/plugins/will_paginate/test/fixtures/user.rb
  • vendor/plugins/will_paginate/test/fixtures/users.yml
  • vendor/plugins/will_paginate/test/helper.rb
  • vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb
  • vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb
  • vendor/plugins/will_paginate/test/lib/load_fixtures.rb
  • vendor/plugins/will_paginate/test/lib/view_test_process.rb
  • vendor/plugins/will_paginate/test/tasks.rake
  • vendor/plugins/will_paginate/test/view_test.rb
  • vendor/plugins/will_paginate/will_paginate.gemspec
...
1
2
 
3
4
5
6
 
7
8
9
...
15
16
17
18
 
19
20
21
22
23
 
24
25
26
27
 
28
29
30
...
33
34
35
36
 
37
38
39
...
1
 
2
3
4
5
 
6
7
8
9
...
15
16
17
 
18
19
20
21
22
 
23
24
25
26
 
27
28
29
30
...
33
34
35
 
36
37
38
39
0
@@ -1,9 +1,9 @@
0
 module ApplicationHelper
0
-  
0
+
0
   def html_attrs(lang = 'en-US')
0
     {:xmlns => "http://www.w3.org/1999/xhtml", 'xml:lang' => lang, :lang => lang}
0
   end
0
-  
0
+
0
   def http_equiv_attrs
0
     {'http-equiv' => 'Content-Type', :content => 'text/html;charset=UTF-8'}
0
   end
0
@@ -15,16 +15,16 @@ module ApplicationHelper
0
     @page_title = str
0
     content_tag(container, str) if container
0
   end
0
-  
0
+
0
   # Outputs the corresponding flash message if any are set
0
   def flash_messages
0
     messages = []
0
     %w(notice warning error).each do |msg|
0
-      messages << content_tag(:div, flash[msg.to_sym], :id => "flash-#{msg}") unless flash[msg.to_sym].blank?
0
+      messages << content_tag(:div, html_escape(flash[msg.to_sym]), :id => "flash-#{msg}") unless flash[msg.to_sym].blank?
0
     end
0
     messages
0
   end
0
-  
0
+
0
   def blackbird_tags
0
     if SiteConfig.blackbird || true == session[:blackbird]
0
       '<script type="text/javascript" charset="utf-8" src="/blackbird/blackbird.js"></script>
0
@@ -33,7 +33,7 @@ module ApplicationHelper
0
       no_blackbird
0
     end rescue no_blackbird
0
   end
0
-  
0
+
0
   def no_blackbird
0
     '<script type="text/javascript" charset="utf-8">var log = {toggle: function() {}, move: function() {}, resize: function() {}, clear: function() {}, debug: function() {}, info: function() {}, warn: function() {}, error: function() {}, profile: function() {} };</script>'
0
   end
...
1
2
 
3
4
5
...
9
10
11
12
 
13
14
 
15
16
17
...
20
21
22
23
 
24
25
26
27
 
28
29
30
31
32
33
34
 
35
36
37
 
 
 
 
 
 
 
 
 
 
...
1
 
2
3
4
5
...
9
10
11
 
12
13
 
14
15
16
17
...
20
21
22
 
23
24
25
26
27
28
29
30
31
32
33
34
 
35
36
37
38
39
40
41
42
43
44
45
46
47
48
0
@@ -1,5 +1,5 @@
0
 # specify an alternate gems repository
0
-# source: http://local_mirror.example.com 
0
+# source: http://local_mirror.example.com
0
 # specify a different gem command
0
 # gem_command: 'jruby -S gem'
0
 gems:
0
@@ -9,9 +9,9 @@ gems:
0
   #   # use a specfic source URL
0
   #   source: 'http://mongrel.rubyforge.org/releases'
0
   #   # load with GemTools.load_gems
0
-  #   load: true 
0
+  #   load: true
0
   #   # any extra config that needs to be passed to gem install
0
-  #   config: '--with-pgsql-include-dir=/usr/local/pgsql/include --with-pgsql-lib-dir=/usr/local/pgsql/lib' 
0
+  #   config: '--with-pgsql-include-dir=/usr/local/pgsql/include --with-pgsql-lib-dir=/usr/local/pgsql/lib'
0
   #   # require name is different than the gem name
0
   #   require_name: foo-bar
0
 
0
@@ -20,18 +20,29 @@ gems:
0
     load: true
0
 
0
   - name: 'rspec-rails'
0
-    version: '1.1.8'
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
+    source: 'http://gems.github.com'
0
 
0
   - name: 'capistrano'
0
     version: '2.5.0'
0
 
0
   - name: 'capistrano-ext'
0
     version: '1.2.1'
0
-    
0
+
0
   - name: 'RedCloth'
0
     version: '4.0.4'
0
     load: true
0
+
0
+  - name: 'mislav-will_paginate'
0
+    version: '2.3.6'
0
+    load: true
0
+    source: 'http://gems.github.com'
0
+
0
+  - name: 'rubyist-aasm'
0
+    version: '2.0.2'
0
+    laod: true
0
+    source: 'http://gems.github.com'

Comments