boof

Florian Aßmann
Oniversus Media, Fork Unstable Media
Hamburg, Germany
2
4
  • Action Sequencer for Ruby on Rails
    Created Sun Jul 13 04:04:37 -0700 2008
    legend
  • FriendlyId is a plugin for Ruby on Rails which allows you to work with human-friendly strings as ...
    Forked from norman/friendly_id Fri Sep 26 05:03:32 -0700 2008
    legend
  • Validation Framework for Ruby.
    Created Thu Apr 17 00:16:38 -0700 2008
    legend
  • Ruby Sequel - Website
    Created Fri Apr 18 12:16:49 -0700 2008
    legend

Public Activity  feed

boof forked friendly_id 11 days ago
Forked repository is at boof/friendly_id
boof commented on rails/rails 14 days ago
Comment in 6fb7de4:

I needed to remove the double quotes since my environment didn’t startup anymore with
<pre>
<code>
config.gem ‘RedCloth’, :lib => ‘redcloth’, :version => ’= 3.0.4’
</code>
</pre>
in it.
<pre>
<code>
diff -git a/railties/lib/rails/gem_dependency.rb b/railties/lib/rails/gem_dependency.rb
index 471e03f..75f9342 100644
—a/railties/lib/rails/gem_dependency.rb
+ b/railties/lib/rails/gem_dependency.rb
@ -113,14 +113,14 @ module Rails
def install_command
cmd = %w(install) << @name
- cmd << "-version" << %("#{@requirement.to_s}") if @requirement
+ cmd << "
-version" << %(#{@requirement.to_s}) if @requirement
cmd << "—source" << @source if @source
cmd
end
def unpack_command
cmd = %w(unpack) << @name
- cmd << "-version" << %("#{@requirement.to_s}") if @requirement
+ cmd << "
-version" << %(#{@requirement.to_s}) if @requirement
cmd
end
end
</code>
</pre>

boof commented on rails/rails 14 days ago

The comment has since been removed.

boof committed to boof/notnaughty 28 days ago

bbd5e5f5e57ab8b5e329b6ee0fc9c31115e35175

Changed examples and Sequel notice.

boof committed to boof/www-ruby-sequel-org about 1 month ago
boof committed to boof/www-ruby-sequel-org 2 months ago

eae867badc7065cb563d59434db7559eb8807bf2

Removed deprecated configuration.

boof committed to boof/www-ruby-sequel-org 2 months ago

24a2f44056d2864ad040ddb5738d5f9ffe331caa

Moved user generation to Generator.

boof committed to boof/www-ruby-sequel-org 2 months ago
boof committed to boof/www-ruby-sequel-org 2 months ago
boof committed to boof/www-ruby-sequel-org 2 months ago

580a4ad53f64ada0682352a654f0ccf4ad2da329

Switched from memcached to memcache-client gem because of recurring problems with libmemcached.