lazy_string 0.7.0 → 0.8.0

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 (3) hide show
  1. data/LICENSE.txt +1 -1
  2. metadata +6 -7
  3. data/lazy_string.gemspec +0 -14
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2024 Aaron Beckerman
1
+ Copyright (c) 2012-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
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazy_string
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3
4
+ hash: 63
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 7
8
+ - 8
9
9
  - 0
10
- version: 0.7.0
10
+ version: 0.8.0
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-11 00:00:00 -07:00
18
+ date: 2025-05-16 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -30,7 +30,6 @@ extra_rdoc_files: []
30
30
  files:
31
31
  - LICENSE.txt
32
32
  - README.txt
33
- - lazy_string.gemspec
34
33
  - lib/lazy_string.rb
35
34
  - test/lazy_string_test.rb
36
35
  has_rdoc: true
@@ -69,5 +68,5 @@ rubygems_version: 1.6.2
69
68
  signing_key:
70
69
  specification_version: 3
71
70
  summary: A class for computing strings only when necessary.
72
- test_files:
73
- - test/lazy_string_test.rb
71
+ test_files: []
72
+
data/lazy_string.gemspec DELETED
@@ -1,14 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "lazy_string"
3
- s.version = "0.7.0"
4
- s.authors = ["Aaron Beckerman"]
5
- s.summary = "A class for computing strings only when necessary."
6
- s.description = "This library provides LazyString, a class for computing" \
7
- " strings only when necessary. This is useful when computing the string" \
8
- " is expensive but the string might never be used."
9
- s.licenses = ["MIT"]
10
- s.files = ["LICENSE.txt", "README.txt", "lazy_string.gemspec",
11
- "lib/lazy_string.rb", "test/lazy_string_test.rb"]
12
- s.test_files = ["test/lazy_string_test.rb"]
13
- s.required_ruby_version = ">= 1.8.7"
14
- end