namespace_helper 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY.md CHANGED
@@ -1,4 +1,11 @@
1
- 1.0.1 / 2012-??-??
1
+ 1.0.2 / 2012-10-02
2
+ ==================
3
+
4
+ * 1 minor enhancement
5
+
6
+ * Updated documentation
7
+
8
+ 1.0.1 / 2012-04-04
2
9
  ==================
3
10
 
4
11
  * 3 minor enhancements
data/README.md CHANGED
@@ -3,6 +3,7 @@ NamespaceHelper
3
3
 
4
4
  [![Build Status](https://secure.travis-ci.org/aef/namespace_helper.png)](
5
5
  https://secure.travis-ci.org/aef/namespace_helper)
6
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/aef/namespace_helper)
6
7
 
7
8
  * [Documentation][docs]
8
9
  * [Project][project]
@@ -13,9 +14,9 @@ https://secure.travis-ci.org/aef/namespace_helper)
13
14
  Description
14
15
  -----------
15
16
 
16
- NamespaceHelper provides a module with methods to ease namespace handling.
17
- For example getting the unprefixed name, the namespace parent or a list of
18
- namespace components of a class or module.
17
+ NamespaceHelper is a Ruby library providing a module with methods to ease
18
+ namespace handling. For example getting the unprefixed name, the namespace
19
+ parent or a list of namespace components of a class or module.
19
20
 
20
21
  Features / Problems
21
22
  -------------------
@@ -138,7 +139,7 @@ following command:
138
139
  Please notice that you may need other keys for dependent libraries, so you may
139
140
  have to install dependencies manually.
140
141
 
141
- [gemkey]: http://aef.name/crypto/aef-gem.pem
142
+ [gemkey]: https://aef.name/crypto/aef-gem.pem
142
143
 
143
144
  ### Normal
144
145
 
@@ -160,7 +161,7 @@ If something goes wrong you should be noticed through failing examples.
160
161
  Development
161
162
  -----------
162
163
 
163
- ### Bugs Reports and Feature Requests
164
+ ### Bug reports and feature requests
164
165
 
165
166
  Please use the [issue tracker][issues] on github.com to let me know about errors
166
167
  or ideas for improvement of this software.
@@ -169,18 +170,34 @@ or ideas for improvement of this software.
169
170
 
170
171
  ### Source code
171
172
 
172
- This software is developed in the source code management system git hosted
173
- at github.com. You can download the most recent sourcecode through the
174
- following command:
173
+ This software is developed in the source code management system Git. There are
174
+ several synchronized mirror repositories available:
175
+
176
+ * GitHub
177
+
178
+ URL: https://github.com/aef/namespace_helper.git
179
+
180
+ * Gitorious
181
+
182
+ URL: https://git.gitorious.org/namespace_helper/namespace_helper.git
183
+
184
+ * BitBucket
185
+
186
+ URL: https://bitbucket.org/alefi/namespace_helper.git
187
+
188
+ You can get the latest source code with the following command, while
189
+ exchanging the placeholder for one of the mirror URLs:
190
+
191
+ git clone MIRROR_URL
175
192
 
176
- git clone https://github.com/aef/namespace_helper.git
193
+ #### Tags
177
194
 
178
195
  The final commit before each released gem version will be marked by a tag
179
196
  named like the version with a prefixed lower-case "v", as required by Semantic
180
197
  Versioning. Every tag will be signed by my [OpenPGP public key][openpgp] which
181
198
  enables you to verify your copy of the code cryptographically.
182
199
 
183
- [openpgp]: http://aef.name/crypto/aef-openpgp.asc
200
+ [openpgp]: https://aef.name/crypto/aef-openpgp.asc
184
201
 
185
202
  Add the key to your GnuPG keyring by the following command:
186
203
 
@@ -24,7 +24,7 @@ module Aef
24
24
  #
25
25
  # Using Semantic Versioning (2.0.0-rc.1) rules
26
26
  # @see http://semver.org/
27
- VERSION = '1.0.1'.freeze
27
+ VERSION = '1.0.2'.freeze
28
28
 
29
29
  end
30
30
  end
@@ -28,9 +28,9 @@ Gem::Specification.new do |s|
28
28
  s.license = 'ISC'
29
29
  s.summary = 'Helper methods for class/module namespace handling'
30
30
  s.description = <<-DESCRIPTION
31
- NamespaceHelper provides a module with methods to ease namespace handling.
32
- For example getting the unprefixed name, the namespace parent or a list of
33
- namespace components of a class or module.
31
+ NamespaceHelper is a Ruby library providing a module with methods to ease
32
+ namespace handling. For example getting the unprefixed name, the namespace
33
+ parent or a list of namespace components of a class or module.
34
34
  DESCRIPTION
35
35
 
36
36
  s.rubyforge_project = nil
@@ -44,12 +44,12 @@ namespace components of a class or module.
44
44
 
45
45
  s.required_ruby_version = '>= 1.8.7'
46
46
 
47
- s.add_development_dependency('bundler', '~> 1.1.3')
48
- s.add_development_dependency('rake', '~> 0.9.2')
49
- s.add_development_dependency('rspec', '~> 2.8.0')
50
- s.add_development_dependency('simplecov', '~> 0.6.1')
51
- s.add_development_dependency('pry', '~> 0.9.8')
52
- s.add_development_dependency('yard', '~> 0.7.5')
47
+ s.add_development_dependency('bundler', '~> 1.1.5')
48
+ s.add_development_dependency('rake', '~> 0.9.2.2')
49
+ s.add_development_dependency('rspec', '~> 2.11.0')
50
+ s.add_development_dependency('simplecov', '~> 0.6.4')
51
+ s.add_development_dependency('pry', '~> 0.9.10')
52
+ s.add_development_dependency('yard', '~> 0.8.2.1')
53
53
 
54
54
  s.cert_chain = "#{ENV['GEM_CERT_CHAIN']}".split(':')
55
55
  s.signing_key = ENV['GEM_SIGNING_KEY']
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: namespace_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -48,79 +48,80 @@ cert_chain:
48
48
  -----END CERTIFICATE-----
49
49
 
50
50
  '
51
- date: 2012-04-04 00:00:00.000000000 Z
51
+ date: 2012-10-02 00:00:00.000000000 Z
52
52
  dependencies:
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: bundler
55
- requirement: &17859860 !ruby/object:Gem::Requirement
55
+ requirement: &14507980 !ruby/object:Gem::Requirement
56
56
  none: false
57
57
  requirements:
58
58
  - - ~>
59
59
  - !ruby/object:Gem::Version
60
- version: 1.1.3
60
+ version: 1.1.5
61
61
  type: :development
62
62
  prerelease: false
63
- version_requirements: *17859860
63
+ version_requirements: *14507980
64
64
  - !ruby/object:Gem::Dependency
65
65
  name: rake
66
- requirement: &17859340 !ruby/object:Gem::Requirement
66
+ requirement: &14507520 !ruby/object:Gem::Requirement
67
67
  none: false
68
68
  requirements:
69
69
  - - ~>
70
70
  - !ruby/object:Gem::Version
71
- version: 0.9.2
71
+ version: 0.9.2.2
72
72
  type: :development
73
73
  prerelease: false
74
- version_requirements: *17859340
74
+ version_requirements: *14507520
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: rspec
77
- requirement: &17858860 !ruby/object:Gem::Requirement
77
+ requirement: &14507060 !ruby/object:Gem::Requirement
78
78
  none: false
79
79
  requirements:
80
80
  - - ~>
81
81
  - !ruby/object:Gem::Version
82
- version: 2.8.0
82
+ version: 2.11.0
83
83
  type: :development
84
84
  prerelease: false
85
- version_requirements: *17858860
85
+ version_requirements: *14507060
86
86
  - !ruby/object:Gem::Dependency
87
87
  name: simplecov
88
- requirement: &17858380 !ruby/object:Gem::Requirement
88
+ requirement: &14506600 !ruby/object:Gem::Requirement
89
89
  none: false
90
90
  requirements:
91
91
  - - ~>
92
92
  - !ruby/object:Gem::Version
93
- version: 0.6.1
93
+ version: 0.6.4
94
94
  type: :development
95
95
  prerelease: false
96
- version_requirements: *17858380
96
+ version_requirements: *14506600
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: pry
99
- requirement: &17857920 !ruby/object:Gem::Requirement
99
+ requirement: &14506140 !ruby/object:Gem::Requirement
100
100
  none: false
101
101
  requirements:
102
102
  - - ~>
103
103
  - !ruby/object:Gem::Version
104
- version: 0.9.8
104
+ version: 0.9.10
105
105
  type: :development
106
106
  prerelease: false
107
- version_requirements: *17857920
107
+ version_requirements: *14506140
108
108
  - !ruby/object:Gem::Dependency
109
109
  name: yard
110
- requirement: &17857460 !ruby/object:Gem::Requirement
110
+ requirement: &14505680 !ruby/object:Gem::Requirement
111
111
  none: false
112
112
  requirements:
113
113
  - - ~>
114
114
  - !ruby/object:Gem::Version
115
- version: 0.7.5
115
+ version: 0.8.2.1
116
116
  type: :development
117
117
  prerelease: false
118
- version_requirements: *17857460
119
- description: ! 'NamespaceHelper provides a module with methods to ease namespace handling.
118
+ version_requirements: *14505680
119
+ description: ! 'NamespaceHelper is a Ruby library providing a module with methods
120
+ to ease
120
121
 
121
- For example getting the unprefixed name, the namespace parent or a list of
122
+ namespace handling. For example getting the unprefixed name, the namespace
122
123
 
123
- namespace components of a class or module.
124
+ parent or a list of namespace components of a class or module.
124
125
 
125
126
  '
126
127
  email:
metadata.gz.sig CHANGED
Binary file