brice 0.2.6 → 0.2.7

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 81717cf047b6afd08d1cb17b42f565add7b6dd6b
4
+ data.tar.gz: ebacf76e138a3814df59373f36cd7ec67b498afd
5
+ SHA512:
6
+ metadata.gz: f22d00dabb90fca711a6e6eb3f3f2490f9ce723fb47cb5ebf50faabd4cc9ae24846dec66cdbac38f6b1929ead06ab15cdd9d03d68fa277300dbf44477520e2ef
7
+ data.tar.gz: cfdf639c8d90a7a6fdced81bb8acb4d98e5aefac8c758aa301c0e5d9dee7c8c47b6fe631f17676fecaf95e546a0d4a0f0975fac8bc04d579c1799e7be642eddb
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to brice version 0.2.6
5
+ This documentation refers to brice version 0.2.7
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -72,12 +72,12 @@ RubyForge project:: http://rubyforge.org/projects/prometheus
72
72
 
73
73
  == AUTHORS
74
74
 
75
- * Jens Wille <mailto:jens.wille@uni-koeln.de>
75
+ * Jens Wille <mailto:jens.wille@gmail.com>
76
76
 
77
77
 
78
78
  == LICENSE AND COPYRIGHT
79
79
 
80
- Copyright (C) 2008-2012 Jens Wille
80
+ Copyright (C) 2008-2013 Jens Wille
81
81
 
82
82
  brice is free software: you can redistribute it and/or modify it under the
83
83
  terms of the GNU Affero General Public License as published by the Free
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  :version => Brice::VERSION,
14
14
  :summary => %q{Extra cool IRb goodness for the masses},
15
15
  :author => %q{Jens Wille},
16
- :email => %q{jens.wille@uni-koeln.de},
16
+ :email => %q{jens.wille@gmail.com},
17
17
  :dependencies => [['ruby-nuggets', '>= 0.5.2']]
18
18
  }
19
19
  }}
data/lib/brice/colours.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # Copyright (C) 2008-2012 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
data/lib/brice/config.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # Copyright (C) 2008-2011 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
data/lib/brice/dsl.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # Copyright (C) 2008-2012 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
data/lib/brice/history.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  # Copyright (C) 2008-2012 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
data/lib/brice/init.rb CHANGED
@@ -1,3 +1,2 @@
1
- # just a short-cut
2
1
  require 'brice'
3
2
  Brice.init
data/lib/brice/loud.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'brice'
2
+ Brice.init(:quiet => false)
@@ -0,0 +1,2 @@
1
+ require 'brice'
2
+ Brice.init(:quiet => false, :verbose => true)
@@ -6,7 +6,7 @@
6
6
  # Copyright (C) 2008-2012 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
data/lib/brice/version.rb CHANGED
@@ -4,7 +4,7 @@ module Brice
4
4
 
5
5
  MAJOR = 0
6
6
  MINOR = 2
7
- TINY = 6
7
+ TINY = 7
8
8
 
9
9
  class << self
10
10
 
data/lib/brice.rb CHANGED
@@ -3,10 +3,10 @@
3
3
  # #
4
4
  # brice -- Extra cool IRb goodness for the masses #
5
5
  # #
6
- # Copyright (C) 2008-2011 Jens Wille #
6
+ # Copyright (C) 2008-2013 Jens Wille #
7
7
  # #
8
8
  # Authors: #
9
- # Jens Wille <jens.wille@uni-koeln.de> #
9
+ # Jens Wille <jens.wille@gmail.com> #
10
10
  # #
11
11
  # brice is free software: you can redistribute it and/or modify it under the #
12
12
  # terms of the GNU Affero General Public License as published by the Free #
@@ -42,7 +42,7 @@ module Brice
42
42
  BRICE_HOME = File.join(ENV.user_home, '.brice')
43
43
 
44
44
  @verbose = false
45
- @quiet = false
45
+ @quiet = true
46
46
 
47
47
  extend self
48
48
  include DSL
metadata CHANGED
@@ -1,34 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brice
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
5
- prerelease:
4
+ version: 0.2.7
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jens Wille
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-17 00:00:00.000000000 Z
11
+ date: 2013-03-18 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: ruby-nuggets
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: 0.5.2
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: 0.5.2
30
27
  description: Extra cool IRb goodness for the masses
31
- email: jens.wille@uni-koeln.de
28
+ email: jens.wille@gmail.com
32
29
  executables: []
33
30
  extensions: []
34
31
  extra_rdoc_files:
@@ -42,6 +39,7 @@ files:
42
39
  - lib/brice/dsl.rb
43
40
  - lib/brice/history.rb
44
41
  - lib/brice/init.rb
42
+ - lib/brice/loud.rb
45
43
  - lib/brice/rc/010_added_methods.rb
46
44
  - lib/brice/rc/020_libs.rb
47
45
  - lib/brice/rc/030_history.rb
@@ -51,6 +49,7 @@ files:
51
49
  - lib/brice/rc/070_prompt.rb
52
50
  - lib/brice/rc/080_rails.rb
53
51
  - lib/brice/rc/090_devel.rb
52
+ - lib/brice/really_loud.rb
54
53
  - lib/brice/shortcuts.rb
55
54
  - lib/brice/version.rb
56
55
  - COPYING
@@ -63,6 +62,7 @@ files:
63
62
  - .rspec
64
63
  homepage: http://prometheus.rubyforge.org/brice
65
64
  licenses: []
65
+ metadata: {}
66
66
  post_install_message:
67
67
  rdoc_options:
68
68
  - --charset
@@ -70,27 +70,25 @@ rdoc_options:
70
70
  - --line-numbers
71
71
  - --all
72
72
  - --title
73
- - brice Application documentation (v0.2.6)
73
+ - brice Application documentation (v0.2.7)
74
74
  - --main
75
75
  - README
76
76
  require_paths:
77
77
  - lib
78
78
  required_ruby_version: !ruby/object:Gem::Requirement
79
- none: false
80
79
  requirements:
81
- - - ! '>='
80
+ - - '>='
82
81
  - !ruby/object:Gem::Version
83
82
  version: '0'
84
83
  required_rubygems_version: !ruby/object:Gem::Requirement
85
- none: false
86
84
  requirements:
87
- - - ! '>='
85
+ - - '>='
88
86
  - !ruby/object:Gem::Version
89
87
  version: '0'
90
88
  requirements: []
91
89
  rubyforge_project: prometheus
92
- rubygems_version: 1.8.24
90
+ rubygems_version: 2.0.3
93
91
  signing_key:
94
- specification_version: 3
92
+ specification_version: 4
95
93
  summary: Extra cool IRb goodness for the masses
96
94
  test_files: []