classnamer 3.0.11 → 3.0.13

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 CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2024 Aaron Beckerman
1
+ Copyright (c) 2011-2025 Aaron Beckerman
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of
4
4
  this software and associated documentation files (the "Software"), to deal in
data/lib/classnamer.rb CHANGED
@@ -11,7 +11,7 @@ module Classnamer
11
11
  ##
12
12
  # The library's version string.
13
13
 
14
- VERSION = "3.0.11"
14
+ VERSION = "3.0.13"
15
15
 
16
16
  ##
17
17
  # The default part candidate matrix, used by generate.
metadata CHANGED
@@ -1,13 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: classnamer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease:
6
- segments:
7
- - 3
8
- - 0
9
- - 11
10
- version: 3.0.11
4
+ version: 3.0.13
11
5
  platform: ruby
12
6
  authors:
13
7
  - Aaron Beckerman
@@ -15,7 +9,7 @@ autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
11
 
18
- date: 2024-03-15 00:00:00 -07:00
12
+ date: 2026-06-04 00:00:00 -07:00
19
13
  default_executable:
20
14
  dependencies: []
21
15
 
@@ -31,7 +25,6 @@ files:
31
25
  - LICENSE.txt
32
26
  - README.txt
33
27
  - bin/classnamer
34
- - classnamer.gemspec
35
28
  - lib/classnamer.rb
36
29
  - test/classnamer_test.rb
37
30
  has_rdoc: true
@@ -44,24 +37,14 @@ rdoc_options: []
44
37
  require_paths:
45
38
  - lib
46
39
  required_ruby_version: !ruby/object:Gem::Requirement
47
- none: false
48
40
  requirements:
49
41
  - - ">="
50
42
  - !ruby/object:Gem::Version
51
- hash: 57
52
- segments:
53
- - 1
54
- - 8
55
- - 7
56
43
  version: 1.8.7
57
44
  required_rubygems_version: !ruby/object:Gem::Requirement
58
- none: false
59
45
  requirements:
60
46
  - - ">="
61
47
  - !ruby/object:Gem::Version
62
- hash: 3
63
- segments:
64
- - 0
65
48
  version: "0"
66
49
  requirements: []
67
50
 
@@ -70,5 +53,5 @@ rubygems_version: 1.6.2
70
53
  signing_key:
71
54
  specification_version: 3
72
55
  summary: A random class name generator.
73
- test_files:
74
- - test/classnamer_test.rb
56
+ test_files: []
57
+
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