loquacious 1.4.1 → 1.4.2

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.
Files changed (5) hide show
  1. data/.gitignore +16 -0
  2. data/History.txt +5 -0
  3. data/Rakefile +6 -8
  4. data/lib/loquacious.rb +1 -1
  5. metadata +3 -32
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ # The list of files that should be ignored by Mr Bones.
2
+ # Lines that start with '#' are comments.
3
+ #
4
+ # A .gitignore file can be used instead by setting it as the ignore
5
+ # file in your Rakefile:
6
+ #
7
+ # PROJ.ignore_file = '.gitignore'
8
+ #
9
+ # For a project with a C extension, the following would be a good set of
10
+ # exclude patterns (uncomment them if you want to use them):
11
+ # *.[oa]
12
+ # *~
13
+ announcement.txt
14
+ coverage
15
+ doc
16
+ pkg
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.4.2 / 2010-02-01
2
+
3
+ * 1 bug fix
4
+ * Resolving some circular dependencies
5
+
1
6
  == 1.4.1 / 2009-11-29
2
7
 
3
8
  * 2 bug fixes
data/Rakefile CHANGED
@@ -19,20 +19,18 @@ Bones {
19
19
  version Loquacious::VERSION
20
20
  readme_file 'README.rdoc'
21
21
  ignore_file '.gitignore'
22
- # ruby_opts %w[-W0]
23
22
  spec.opts << '--color'
24
23
  rubyforge.name 'codeforpeople'
25
-
26
- depend_on 'rspec', :development => true
27
- depend_on 'bones-git', :development => true
28
- depend_on 'bones-extras', :development => true
29
-
30
24
  use_gmail
31
- enable_sudo
32
- }
33
25
 
26
+ depend_on 'rspec', :development => true
27
+ }
34
28
 
35
29
  task 'ann:prereqs' do
36
30
  Bones.config.name = 'Loquacious'
37
31
  end
38
32
 
33
+ # depending on bones (even as a development dependency) creates a circular
34
+ # reference that prevents the auto install of little-plugger when instsalling
35
+ # bones
36
+ ::Bones.config.gem._spec.dependencies.delete_if {|d| d.name == 'bones'}
data/lib/loquacious.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  module Loquacious
3
3
 
4
4
  # :stopdoc:
5
- VERSION = '1.4.1'
5
+ VERSION = '1.4.2'
6
6
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
7
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
8
  # :startdoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loquacious
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Pease
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-29 00:00:00 -07:00
12
+ date: 2010-02-01 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,36 +22,6 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 1.2.9
24
24
  version:
25
- - !ruby/object:Gem::Dependency
26
- name: bones-git
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 1.1.1
34
- version:
35
- - !ruby/object:Gem::Dependency
36
- name: bones-extras
37
- type: :development
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: 1.2.0
44
- version:
45
- - !ruby/object:Gem::Dependency
46
- name: bones
47
- type: :development
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: 3.1.0
54
- version:
55
25
  description: |-
56
26
  Descriptive configuration files for Ruby written in Ruby.
57
27
 
@@ -105,6 +75,7 @@ extra_rdoc_files:
105
75
  - History.txt
106
76
  - README.rdoc
107
77
  files:
78
+ - .gitignore
108
79
  - History.txt
109
80
  - README.rdoc
110
81
  - Rakefile