classnamer 3.0.11 → 3.0.12
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.
- data/LICENSE.txt +1 -1
- data/lib/classnamer.rb +1 -1
- metadata +6 -7
- data/classnamer.gemspec +0 -18
data/LICENSE.txt
CHANGED
data/lib/classnamer.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: classnamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 3.0.
|
9
|
+
- 12
|
10
|
+
version: 3.0.12
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Aaron Beckerman
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2025-05-16 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -31,7 +31,6 @@ files:
|
|
31
31
|
- LICENSE.txt
|
32
32
|
- README.txt
|
33
33
|
- bin/classnamer
|
34
|
-
- classnamer.gemspec
|
35
34
|
- lib/classnamer.rb
|
36
35
|
- test/classnamer_test.rb
|
37
36
|
has_rdoc: true
|
@@ -70,5 +69,5 @@ rubygems_version: 1.6.2
|
|
70
69
|
signing_key:
|
71
70
|
specification_version: 3
|
72
71
|
summary: A random class name generator.
|
73
|
-
test_files:
|
74
|
-
|
72
|
+
test_files: []
|
73
|
+
|
data/classnamer.gemspec
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
lib = File.expand_path("../lib", __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require "classnamer"
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = "classnamer"
|
8
|
-
s.version = Classnamer::VERSION
|
9
|
-
s.authors = ["Aaron Beckerman"]
|
10
|
-
s.summary = "A random class name generator."
|
11
|
-
s.description = "Classnamer randomly generates facetious class names suitable for object-oriented programming languages like C++ and Java. It includes a library and command-line program."
|
12
|
-
s.licenses = ["MIT"]
|
13
|
-
s.required_ruby_version = ">= 1.8.7"
|
14
|
-
s.bindir = "bin"
|
15
|
-
s.files = ["LICENSE.txt", "README.txt", "bin/classnamer", "classnamer.gemspec", "lib/classnamer.rb", "test/classnamer_test.rb"]
|
16
|
-
s.test_files = ["test/classnamer_test.rb"]
|
17
|
-
s.executables = ["classnamer"]
|
18
|
-
end
|