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 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.12"
15
15
 
16
16
  ##
17
17
  # The default part candidate matrix, used by generate.
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: 17
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 11
10
- version: 3.0.11
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: 2024-03-15 00:00:00 -07:00
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
- - test/classnamer_test.rb
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