ric 0.11.15 → 0.11.16

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.
@@ -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
@@ -1,6 +1,4 @@
1
1
  # would like to have this in YML format :)
2
- 2011-03-23 v0.11.15:
3
- - septober v0.9.9 doubled dflt timeout from 7 to 14 secs
4
2
  2011-02-06 v0.11.14:
5
3
  - septober v0.9.8 with timeout and :edit
6
4
  2011-02-06 v0.11.13:
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/riclib"
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
@@ -1,3 +1,4 @@
1
1
 
2
2
  - include ~/lib/ric.rb automagically if exists ;)
3
- - TESTING!!!
3
+ - TESTING!!!
4
+ - include gems like active_resource into the Gemfile so it doesnt show a broken dependency if you gem install ric it also gem installs active resource :)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.11.15
1
+ 0.11.16
@@ -20,7 +20,7 @@
20
20
  ###########################################################
21
21
  =end
22
22
 
23
- $PROG_VER = '0.9.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 => 14 ,
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()
@@ -1,33 +1,34 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{ric}
5
- s.version = "0.11.15"
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 = %q{2011-03-23}
10
- s.description = %q{My first gem with various utilities (colors and tests now).
11
- My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence
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", "N_FAILTING_TEST", "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", "rake_test.20110323-101916", "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"]
17
- s.homepage = %q{http://github.com/palladius/riclib}
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 = %q{ric}
21
- s.rubygems_version = %q{1.5.0}
22
- s.summary = %q{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!)}
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: 45
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 11
9
- - 15
10
- version: 0.11.15
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-03-23 00:00:00 +00:00
19
- default_executable:
20
- dependencies: []
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
- has_rdoc: true
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.5.0
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!)
@@ -1 +0,0 @@
1
- 20110323-101921 slartibartfast.heanet.ie 0 tests, 0 assertions, 0 failures, 0 errors # timeout 7 to 14 secs
@@ -1,8 +0,0 @@
1
- (in /Users/riccardo/git/ric)
2
- TEST_HELPER for RIC gem
3
- Loaded suite /opt/local/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake/rake_test_loader
4
- Started
5
-
6
- Finished in 0.00013 seconds.
7
-
8
- 0 tests, 0 assertions, 0 failures, 0 errors