ric 0.10.8 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY.yml +8 -9
- data/Manifest +1 -0
- data/README.md +7 -4
- data/VERSION +1 -1
- data/lib/ric.rb +0 -1
- data/lib/ric/debug.rb +19 -0
- data/ric.gemspec +3 -3
- metadata +6 -4
data/HISTORY.yml
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
# would like to have this in YML format :)
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
2011-01-16 v0.10.1:
|
2
|
+
2011-01-24 v0.11.0:
|
3
|
+
- Moved 'riclib' to 'ric' in github!
|
4
|
+
2011-01-24 v0.10.7:
|
5
|
+
- Added Ric::Debug with deb and debug_on (and merged)
|
6
|
+
2011-01-16 v0.10.1:
|
8
7
|
- moving everything! Its a miracle if it still works.. in fact it doesnt
|
9
|
-
2011-01-16
|
8
|
+
2011-01-16 v0.9.7:
|
10
9
|
- ric_help fixed
|
11
10
|
- VERSION made DRY! (same in module Ric.version and into gem! Its extremely unefficient but thats the price for dryness!)
|
12
|
-
2011-01-16
|
11
|
+
2011-01-16 v0.9.6:
|
13
12
|
- colors are broken, I implemnent a small test script in bin/
|
14
|
-
2011-01-16
|
13
|
+
2011-01-16 v0.9.2:
|
15
14
|
- Added uniquify from rbates just to copy it.
|
data/Manifest
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
# Ric
|
3
2
|
|
4
3
|
<img src="https://github.com/palladius/riclib/raw/master/images/photos/Riccardo/Riccardo%20OnBedWithPenguin.jpg" width="300" alt="Sleeping with my Penguin" align='right' />
|
@@ -9,8 +8,10 @@ This is [my](http://www.palladius.it/) first public repository with icons code a
|
|
9
8
|
|
10
9
|
Modern life is RUBYish, so am I ;-)
|
11
10
|
|
11
|
+
<font color='red'>Notice</font>. On 24jan2011 I renamed the `riclib` repository to `ric`, to harmonize with GEM name. Updating VERSION soon as well.
|
12
|
+
|
12
13
|
* [ric](http://rubygems.org/gems/ric)
|
13
|
-
* [Riclib](http://github.com/palladius/riclib)
|
14
|
+
* <s>[Riclib](http://github.com/palladius/riclib)</s> (BROKEN!)
|
14
15
|
|
15
16
|
## Installation
|
16
17
|
|
@@ -22,8 +23,10 @@ To use Ric in a Rails 3 application:
|
|
22
23
|
|
23
24
|
## Contributors
|
24
25
|
|
25
|
-
* [Riccardo Carlesso](http://github.com/palladius)
|
26
|
-
|
26
|
+
* [Riccardo Carlesso](http://github.com/palladius) ([website](http://www.palladius.it/))
|
27
|
+
* A few other projects:
|
28
|
+
** Addressbook
|
29
|
+
** [Septober](http://septober.heroku.com/)
|
27
30
|
## Copyright & License
|
28
31
|
|
29
32
|
Ric is Copyright (c) 2010-11 [Riccardo Carlesso](http://www.palladius.it/), and is released under GPLv3 license.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.11.0
|
data/lib/ric.rb
CHANGED
data/lib/ric/debug.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
## #!/usr/bin/env ruby
|
3
|
+
|
4
|
+
# $Id: ric_colors.rb 5438 2010-12-16 15:06:29Z rcarlesso $
|
5
|
+
|
6
|
+
module Ric
|
7
|
+
module Debug
|
8
|
+
# $DEBUG
|
9
|
+
|
10
|
+
def debug_on(comment='Debug Activated (some lazy guys didnt provide a description :P)')
|
11
|
+
$DEBUG = true
|
12
|
+
end
|
13
|
+
|
14
|
+
def deb(str)
|
15
|
+
puts "#DEB# #{str}" if $DEBUG
|
16
|
+
end
|
17
|
+
|
18
|
+
end # /module Colors
|
19
|
+
end # /module Ric
|
data/ric.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{ric}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.11.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Riccardo Carlesso"]
|
@@ -12,8 +12,8 @@ Gem::Specification.new do |s|
|
|
12
12
|
with hence!)}
|
13
13
|
s.email = %q{['p','ll','diusbonton].join('a') @ gmail.com}
|
14
14
|
s.executables = ["itunes", "ric", "riclib-test"]
|
15
|
-
s.extra_rdoc_files = ["LICENSE", "README.md", "TODO", "bin/itunes", "bin/ric", "bin/riclib-test", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb"]
|
16
|
-
s.files = ["HISTORY.yml", "LICENSE", "Manifest", "README.md", "Rakefile", "TODO", "VERSION", "bin/itunes", "bin/ric", "bin/riclib-test", "init.rb", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb", "rails/init.rb", "sbin/reboot.rb", "sbin/ric_reboot.rb", "var/www/index.html", "ric.gemspec"]
|
15
|
+
s.extra_rdoc_files = ["LICENSE", "README.md", "TODO", "bin/itunes", "bin/ric", "bin/riclib-test", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/debug.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb"]
|
16
|
+
s.files = ["HISTORY.yml", "LICENSE", "Manifest", "README.md", "Rakefile", "TODO", "VERSION", "bin/itunes", "bin/ric", "bin/riclib-test", "init.rb", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/debug.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb", "rails/init.rb", "sbin/reboot.rb", "sbin/ric_reboot.rb", "var/www/index.html", "ric.gemspec"]
|
17
17
|
s.homepage = %q{http://github.com/palladius/riclib}
|
18
18
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ric", "--main", "README.md"]
|
19
19
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ric
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 51
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 11
|
9
|
+
- 0
|
10
|
+
version: 0.11.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Riccardo Carlesso
|
@@ -41,6 +41,7 @@ extra_rdoc_files:
|
|
41
41
|
- lib/rails/helpers/rails_helper.rb
|
42
42
|
- lib/ric.rb
|
43
43
|
- lib/ric/colors.rb
|
44
|
+
- lib/ric/debug.rb
|
44
45
|
- lib/ric/html.rb
|
45
46
|
- lib/ric/zibaldone.rb
|
46
47
|
- lib/ruby_classes/strings.rb
|
@@ -61,6 +62,7 @@ files:
|
|
61
62
|
- lib/rails/helpers/rails_helper.rb
|
62
63
|
- lib/ric.rb
|
63
64
|
- lib/ric/colors.rb
|
65
|
+
- lib/ric/debug.rb
|
64
66
|
- lib/ric/html.rb
|
65
67
|
- lib/ric/zibaldone.rb
|
66
68
|
- lib/ruby_classes/strings.rb
|