Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
janlelis committed Apr 28, 2011
1 parent 24d41db commit 13f2ba3
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 43 deletions.
79 changes: 42 additions & 37 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,75 +1,80 @@
2011-04-29 | Zucker 10
* doc tweaks
* fix zucker 9 permission issue


2011-01-22 | Zucker 9
* removed history versions (sorry, it caused too much gem/rdoc troubles)
* remove history versions (sorry, it caused too much gem/rdoc troubles)
* add file cube: File.delete! and File.gsub
* debug pack improvements
* binding: typos + return nil
* cc: support for ripl + return nil
* mm: also show eigenclass for modules + nicer displaying + return nil
* added Regexp#visualize
* removed optional sandbox param
* renamed xxx2proc to xxx_to_proc
* changed rakefile/rspec/gemspec structure
* remove optional sandbox param
* rename xxx2proc to xxx_to_proc
* change rakefile/rspec/gemspec structure
* more minor fixes and improvements


2010-10-06 | Zucker 8
* fixed a little alias_for bug
* disabled rdoc creation when installing (in favour of the custom docs)
* changed Binding#inspect to Binding.variables (was too verbose and dangerous)
* fix a little alias_for bug
* disable rdoc creation when installing (in favour of the custom docs)
* change Binding#inspect to Binding.variables (was too verbose and dangerous)


2010-10-03 | Zucker 7
* fixed critical OS.windows? bug
* fix critical OS.windows? bug


2010-10-03 | Zucker 6
* no new cubes
* bugfix for OS.posix?
* small changes + bugfixes + doc improvements
* added two user methods to Info
* changed egonil semantics ( using method_missing, see http://rbjl.net/26/catch_nil.rb )
* add two user methods to Info
* change egonil semantics ( using method_missing, see http://rbjl.net/26/catch_nil.rb )
* bugfix for vv


2010-09-04 | Zucker 5
* debug edition - added two debug helpers: oo (output line, method, file) and cc (output method callstack)
* renamed cube D to dd add added more debug aliases (for mm and binding)
* fixed __SPECIAL_VARS__ in info and kernel cube and some minor bugfixes
* debug edition - add two debug helpers: oo (output line, method, file) and cc (output method callstack)
* rename cube D to dd add add more debug aliases (for mm and binding)
* fix __SPECIAL_VARS__ in info and kernel cube and some minor bugfixes
* Zucker.activate_more_aliases! option
* added Hash#&
* added aliases: File.filename (for basename), Dir.join and Dir.split (for File.join, split)
* added a flexible requiring mechansim in zucker.rb (no api changes)
* restructered packages
* added rake tasks for releasing
* improved RubyVersion constant (cleaner and more flexible)
* add Hash#&
* add aliases: File.filename (for basename), Dir.join and Dir.split (for File.join, split)
* add a flexible requiring mechansim in zucker.rb (no api changes)
* restructure packages
* add rake tasks for releasing
* improve RubyVersion constant (cleaner and more flexible)


2010-09-01 | Zucker 4
* fixed Binding#inspect
* added RubyEngine constant
* added RubyVersion constant
* added OS constant
* added q debug method (like p but on one line)
* added String#-
* fix Binding#inspect
* add RubyEngine constant
* add RubyVersion constant
* add OS constant
* add q debug method (like p but on one line)
* add String#-


2010-08-14 | Zucker 3
* added tap cube
* added Object#not
* added alias_for for an alternative alias syntax
* added String#constantize (improved AS version)
* improved Info module
* made Array#sum Rails compatibile
* improved docs
* changed directory layout (no changes for requiring)
* add tap cube
* add Object#not
* add alias_for for an alternative alias syntax
* add String#constantize (improved AS version)
* improve Info module
* make Array#sum Rails compatibile
* improve docs
* change directory layout (no changes for requiring)
* more small changes


2010-08-08 | Zucker 2
* added info cube
* added chaining for array2proc
* fixed Hash.zip
* fixed instance_variables_from binding for 1.9
* add info cube
* add chaining for array2proc
* fix Hash.zip
* fix instance_variables_from binding for 1.9
* more specs


Expand Down
6 changes: 4 additions & 2 deletions desc/blank.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
blank:
summary: Does pretty the same as in ActiveSupport (Every object can be asked if it is blank).
summary: Does pretty the same as in ActiveSupport (Every object can be asked if it is blank or present).
why: It's too familiar ;)
methods:
Object#blank?: "'an object'.blank? # => false"
Object#blank?:
- "'an object'.blank? # => false"
- "nil.present? # => false"
versions:
- 1.9
- 1.8
Expand Down
2 changes: 1 addition & 1 deletion desc/file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ file:
} # will read the file and substitute the hash keys with their values
File#delete!: "File.delete! 'some_filename' # will delete the file, don't care if it exist."
info:
- "Idea for ⇧.File#delete!⇧. from sugar-high."
- "Idea for ⇧File#delete!⇧ from sugar-high."
versions:
- 1.9
- 1.8
Expand Down
2 changes: 1 addition & 1 deletion desc/hash.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
hash:
summary: Some sugar for dealing with hashs.
summary: Some sugar for dealing with hashes.
methods:
Hash.zip: "Hash.zip [1,2,3], [4,5,6] # => {1=>4, 2=>5, 3=>6}"
Hash#<<: |
Expand Down
2 changes: 1 addition & 1 deletion desc/not.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
not:
summary: ⇧not⇧ returns an object on which all methods are redirected to it's receiver object, but returns inverted boolean.
summary: ⇧not⇧ returns an object on which all methods are redirected to it's receiver object, but returns the inverted boolean.
why: Better readability.
methods:
Object#not: |
Expand Down
2 changes: 1 addition & 1 deletion desc/qq.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
qq:
summary: The ⇧q⇧ method does the same like ⇧p⇧, but puts out multiple arguments on the same line.
summary: The ⇧q⇧ method does the same like ⇧p⇧, but outputs multiple arguments on the same line.
methods:
q, qq: |
q "zucker", '', {6=>7}, 5, 2.3, :o # outputs "zucker" "" {6=>7} 5 2.3 :o
Expand Down

0 comments on commit 13f2ba3

Please sign in to comment.