ric 0.11.15 → 0.11.16
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +7 -0
- data/HISTORY.yml +0 -2
- data/Manifest +1 -2
- data/README.md +2 -0
- data/Rakefile +3 -2
- data/TODO +2 -1
- data/VERSION +1 -1
- data/bin/septober +4 -3
- data/ric.gemspec +14 -13
- metadata +23 -12
- data/N_FAILTING_TEST +0 -1
- data/rake_test.20110323-101916 +0 -8
data/CHANGELOG
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# See Echoe CHANGELOG format (this is an example, should RAKE/BAKE it from the HISTORY.YML)
|
2
|
+
2011-02-06 v0.11.14:
|
3
|
+
v0.11.15. Changed timeout and something else
|
4
|
+
v0.11.14. v0.9.8 with timeout and :edit
|
5
|
+
v0.11.13: septober v0.9.7 with better CLI - reengineering septober yaml and help...
|
6
|
+
# TODO complete me
|
7
|
+
# See docs here: http://fauna.github.com/fauna/echoe/files/README.html
|
data/HISTORY.yml
CHANGED
data/Manifest
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
+
CHANGELOG
|
1
2
|
HISTORY.yml
|
2
3
|
LICENSE
|
3
4
|
Manifest
|
4
|
-
N_FAILTING_TEST
|
5
5
|
README.md
|
6
6
|
Rakefile
|
7
7
|
TODO
|
@@ -25,7 +25,6 @@ lib/ruby_classes/arrays.rb
|
|
25
25
|
lib/ruby_classes/strings.rb
|
26
26
|
lib/tmp/uniquify.rb
|
27
27
|
rails/init.rb
|
28
|
-
rake_test.20110323-101916
|
29
28
|
sbin/reboot.rb
|
30
29
|
sbin/ric_reboot.rb
|
31
30
|
test/sample_conf.yml
|
data/README.md
CHANGED
@@ -22,6 +22,8 @@ To use Ric in a Rails 3 application:
|
|
22
22
|
|
23
23
|
2. Install it by running `bundle install`.
|
24
24
|
|
25
|
+
Note. If you want to use the septober CLI you should also install active_reswurce. I dont know how to do it automatically yet, any help is much appreciated :P
|
26
|
+
|
25
27
|
## Contributors
|
26
28
|
|
27
29
|
* [Riccardo Carlesso](http://github.com/palladius) ([website](http://www.palladius.it/))
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ Echoe.new('ric', version ) do |p|
|
|
8
8
|
p.description = "My first gem with various utilities (colors and tests now).
|
9
9
|
My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence
|
10
10
|
with hence!)"
|
11
|
-
p.url = "http://github.com/palladius/
|
11
|
+
p.url = "http://github.com/palladius/ric"
|
12
12
|
p.author = "Riccardo Carlesso"
|
13
13
|
p.email = "['p','ll','diusbonton].join('a') @ gmail.com"
|
14
14
|
p.ignore_pattern = [
|
@@ -18,9 +18,10 @@ Echoe.new('ric', version ) do |p|
|
|
18
18
|
"tmp/*", "tmp/*/*", "tmp/*/*/*",
|
19
19
|
"images/*/*/*", "images/*/*", 'images',
|
20
20
|
"private/*",
|
21
|
+
".noheroku",
|
21
22
|
"HISTORY"
|
22
23
|
]
|
23
|
-
p.development_dependencies = [ ]
|
24
|
+
p.development_dependencies = [ 'activeresource' ]
|
24
25
|
end
|
25
26
|
|
26
27
|
#### RAKE TEST
|
data/TODO
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.11.
|
1
|
+
0.11.16
|
data/bin/septober
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
###########################################################
|
21
21
|
=end
|
22
22
|
|
23
|
-
$PROG_VER = '0.9.
|
23
|
+
$PROG_VER = '0.9.8'
|
24
24
|
|
25
25
|
=begin
|
26
26
|
@history:
|
@@ -33,6 +33,7 @@
|
|
33
33
|
0.9.2 2011-02-04 'add' operation succefully added!
|
34
34
|
0.9.1 2011-01-18 First version
|
35
35
|
=end
|
36
|
+
|
36
37
|
|
37
38
|
require 'optparse'
|
38
39
|
require 'rubygems'
|
@@ -50,7 +51,7 @@
|
|
50
51
|
:septober_url => 'http://septober.heroku.com/' ,
|
51
52
|
:dflt_config_file => '~/.septober.yml' ,
|
52
53
|
:local => false ,
|
53
|
-
:timeout =>
|
54
|
+
:timeout => 15 ,
|
54
55
|
}
|
55
56
|
|
56
57
|
def init
|
@@ -360,4 +361,4 @@ SAMPLE_YML_CONFIG
|
|
360
361
|
|
361
362
|
#########################################################
|
362
363
|
# real program...
|
363
|
-
main()
|
364
|
+
main()
|
data/ric.gemspec
CHANGED
@@ -1,33 +1,34 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.name =
|
5
|
-
s.version = "0.11.
|
4
|
+
s.name = "ric"
|
5
|
+
s.version = "0.11.16"
|
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"]
|
9
|
-
s.date =
|
10
|
-
s.description =
|
11
|
-
|
12
|
-
with hence!)}
|
13
|
-
s.email = %q{['p','ll','diusbonton].join('a') @ gmail.com}
|
9
|
+
s.date = "2011-10-05"
|
10
|
+
s.description = "My first gem with various utilities (colors and tests now). \n My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence\n with hence!)"
|
11
|
+
s.email = "['p','ll','diusbonton].join('a') @ gmail.com"
|
14
12
|
s.executables = ["itunes", "ric", "riclib-test", "septober", "xcopy"]
|
15
|
-
s.extra_rdoc_files = ["LICENSE", "README.md", "TODO", "bin/itunes", "bin/ric", "bin/riclib-test", "bin/septober", "bin/xcopy", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/conf.rb", "lib/ric/debug.rb", "lib/ric/files.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/arrays.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb"]
|
16
|
-
s.files = ["HISTORY.yml", "LICENSE", "Manifest", "
|
17
|
-
s.homepage =
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.md", "TODO", "bin/itunes", "bin/ric", "bin/riclib-test", "bin/septober", "bin/xcopy", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/conf.rb", "lib/ric/debug.rb", "lib/ric/files.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/arrays.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb"]
|
14
|
+
s.files = ["CHANGELOG", "HISTORY.yml", "LICENSE", "Manifest", "README.md", "Rakefile", "TODO", "VERSION", "bin/itunes", "bin/ric", "bin/riclib-test", "bin/septober", "bin/xcopy", "init.rb", "lib/rails/acts_as_carlesso.rb", "lib/rails/helpers/rails_helper.rb", "lib/ric.rb", "lib/ric/colors.rb", "lib/ric/conf.rb", "lib/ric/debug.rb", "lib/ric/files.rb", "lib/ric/html.rb", "lib/ric/zibaldone.rb", "lib/ruby_classes/arrays.rb", "lib/ruby_classes/strings.rb", "lib/tmp/uniquify.rb", "rails/init.rb", "sbin/reboot.rb", "sbin/ric_reboot.rb", "test/sample_conf.yml", "test/strings_helper.rb", "test/test_helper.rb", "var/www/index.html", "ric.gemspec"]
|
15
|
+
s.homepage = "http://github.com/palladius/ric"
|
18
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ric", "--main", "README.md"]
|
19
17
|
s.require_paths = ["lib"]
|
20
|
-
s.rubyforge_project =
|
21
|
-
s.rubygems_version =
|
22
|
-
s.summary =
|
18
|
+
s.rubyforge_project = "ric"
|
19
|
+
s.rubygems_version = "1.8.10"
|
20
|
+
s.summary = "My first gem with various utilities (colors and tests now). My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence with hence!)"
|
23
21
|
s.test_files = ["test/test_helper.rb"]
|
24
22
|
|
25
23
|
if s.respond_to? :specification_version then
|
26
24
|
s.specification_version = 3
|
27
25
|
|
28
26
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
|
+
s.add_development_dependency(%q<activeresource>, [">= 0"])
|
29
28
|
else
|
29
|
+
s.add_dependency(%q<activeresource>, [">= 0"])
|
30
30
|
end
|
31
31
|
else
|
32
|
+
s.add_dependency(%q<activeresource>, [">= 0"])
|
32
33
|
end
|
33
34
|
end
|
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: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 11
|
9
|
-
-
|
10
|
-
version: 0.11.
|
9
|
+
- 16
|
10
|
+
version: 0.11.16
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Riccardo Carlesso
|
@@ -15,10 +15,22 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
|
20
|
-
|
21
|
-
|
18
|
+
date: 2011-10-05 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: activeresource
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
22
34
|
description: |-
|
23
35
|
My first gem with various utilities (colors and tests now).
|
24
36
|
My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence
|
@@ -33,6 +45,7 @@ executables:
|
|
33
45
|
extensions: []
|
34
46
|
|
35
47
|
extra_rdoc_files:
|
48
|
+
- CHANGELOG
|
36
49
|
- LICENSE
|
37
50
|
- README.md
|
38
51
|
- TODO
|
@@ -54,10 +67,10 @@ extra_rdoc_files:
|
|
54
67
|
- lib/ruby_classes/strings.rb
|
55
68
|
- lib/tmp/uniquify.rb
|
56
69
|
files:
|
70
|
+
- CHANGELOG
|
57
71
|
- HISTORY.yml
|
58
72
|
- LICENSE
|
59
73
|
- Manifest
|
60
|
-
- N_FAILTING_TEST
|
61
74
|
- README.md
|
62
75
|
- Rakefile
|
63
76
|
- TODO
|
@@ -81,7 +94,6 @@ files:
|
|
81
94
|
- lib/ruby_classes/strings.rb
|
82
95
|
- lib/tmp/uniquify.rb
|
83
96
|
- rails/init.rb
|
84
|
-
- rake_test.20110323-101916
|
85
97
|
- sbin/reboot.rb
|
86
98
|
- sbin/ric_reboot.rb
|
87
99
|
- test/sample_conf.yml
|
@@ -89,8 +101,7 @@ files:
|
|
89
101
|
- test/test_helper.rb
|
90
102
|
- var/www/index.html
|
91
103
|
- ric.gemspec
|
92
|
-
|
93
|
-
homepage: http://github.com/palladius/riclib
|
104
|
+
homepage: http://github.com/palladius/ric
|
94
105
|
licenses: []
|
95
106
|
|
96
107
|
post_install_message:
|
@@ -125,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
136
|
requirements: []
|
126
137
|
|
127
138
|
rubyforge_project: ric
|
128
|
-
rubygems_version: 1.
|
139
|
+
rubygems_version: 1.8.10
|
129
140
|
signing_key:
|
130
141
|
specification_version: 3
|
131
142
|
summary: My first gem with various utilities (colors and tests now). My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence with hence!)
|
data/N_FAILTING_TEST
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
20110323-101921 slartibartfast.heanet.ie 0 tests, 0 assertions, 0 failures, 0 errors # timeout 7 to 14 secs
|
data/rake_test.20110323-101916
DELETED