r 0.0.3 → 0.0.4
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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +20 -0
- data/Manifest +4 -1
- data/README.md +45 -0
- data/Rakefile +2 -1
- data/blueprint.yaml +21 -0
- data/r.gemspec +17 -24
- data/r_logo.png +0 -0
- metadata +29 -51
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5b5086cfe8ab364bd5d5f02b1a0c6149a2c4e4309a5d3c89b6314e4193bbe8e7
|
|
4
|
+
data.tar.gz: 1c3620de5e8a3feb43518320250516d8fb3d79c81cac50b6620f254c6b3bf991
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: fe274bc7b739eb69232904834edc198da91127a45750fd29155591eb486739c8ab3476b346191dc07bae627844397a929e6726e7ad64d9e285c690e30794f23d
|
|
7
|
+
data.tar.gz: 822b096e74f0ebc2bb14cc7b46ff5c4542afab7f843a5791cdac2768ad6f7e86c8cdbf1b4ccbc9249a231547646e803d441ef3944457ad45f57d7c4a73e9bb61
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.0.4] - 2026-01-19
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- New elegant logo `r_logo.png`.
|
|
10
|
+
- Updated documentation and modern README structure.
|
|
11
|
+
- Enhanced metadata in `Rakefile`.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Bumped version to 0.0.4.
|
|
16
|
+
- Modernized project structure (added Gemfile, CHANGELOG.md).
|
|
17
|
+
|
|
18
|
+
## [0.0.3] - Previous
|
|
19
|
+
|
|
20
|
+
- Initial versions before modern tracking.
|
data/Manifest
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# R - The Minimalist Ruby Gem
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
A minimalist Ruby gem, designed to be the simplest starting point for your projects.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'r'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle install
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install r
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
require 'r'
|
|
27
|
+
|
|
28
|
+
# Use the R module features
|
|
29
|
+
include R
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Features
|
|
33
|
+
|
|
34
|
+
- **Minimalist**: Extremely lightweight.
|
|
35
|
+
- **Easy to use**: Designed for quick integration.
|
|
36
|
+
- **ActiveRecord Support**: Includes hooks for ActiveRecord.
|
|
37
|
+
|
|
38
|
+
## Links
|
|
39
|
+
|
|
40
|
+
- **RubyGems**: [https://rubygems.org/gems/r](https://rubygems.org/gems/r)
|
|
41
|
+
- **Source**: [http://github.com/palladius/r](http://github.com/palladius/r)
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
CHANGED
|
@@ -4,7 +4,7 @@ require 'echoe'
|
|
|
4
4
|
|
|
5
5
|
# Copied from RyanBates: http://railscasts.com/episodes/135-making-a-gem
|
|
6
6
|
|
|
7
|
-
Echoe.new('r', '0.0.
|
|
7
|
+
Echoe.new('r', '0.0.4' ) do |p|
|
|
8
8
|
p.description = "My second gem, and most minimalistic."
|
|
9
9
|
p.url = "http://github.com/palladius/r"
|
|
10
10
|
p.author = "Riccardo C."
|
|
@@ -18,6 +18,7 @@ Echoe.new('r', '0.0.3' ) do |p|
|
|
|
18
18
|
"HISTORY"
|
|
19
19
|
]
|
|
20
20
|
p.development_dependencies = [ ]
|
|
21
|
+
# p.signing = false # If echoe supports it
|
|
21
22
|
end
|
|
22
23
|
|
|
23
24
|
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
|
data/blueprint.yaml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This blueprint was auto-generated by The Grid (v0.7.2). Please review.
|
|
2
|
+
# blueprint_schema: 0.0.3
|
|
3
|
+
ricc-app:
|
|
4
|
+
blueprint_schema: 0.0.3
|
|
5
|
+
maturity: idea
|
|
6
|
+
app_name: r
|
|
7
|
+
lang: unknown
|
|
8
|
+
version: unknown
|
|
9
|
+
emoji: "\u2753"
|
|
10
|
+
owner: github.com/palladius
|
|
11
|
+
app_description: A project with an unknown description.
|
|
12
|
+
code_url: git@github.com:palladius/r.git
|
|
13
|
+
links: {}
|
|
14
|
+
stack: []
|
|
15
|
+
privacy:
|
|
16
|
+
code: public
|
|
17
|
+
app: public
|
|
18
|
+
grid_id: g-4b43-1a73
|
|
19
|
+
repo_image: .grid-image.png
|
|
20
|
+
tags:
|
|
21
|
+
- grid-nb-image
|
data/r.gemspec
CHANGED
|
@@ -1,29 +1,22 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
+
# stub: r 0.0.4 ruby lib
|
|
2
3
|
|
|
3
4
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name =
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.name = "r".freeze
|
|
6
|
+
s.version = "0.0.4".freeze
|
|
6
7
|
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.
|
|
9
|
-
s.
|
|
10
|
-
s.
|
|
11
|
-
s.
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
s.
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.
|
|
18
|
-
s.rubygems_version =
|
|
19
|
-
s.summary =
|
|
20
|
-
|
|
21
|
-
if s.respond_to? :specification_version then
|
|
22
|
-
s.specification_version = 3
|
|
23
|
-
|
|
24
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
25
|
-
else
|
|
26
|
-
end
|
|
27
|
-
else
|
|
28
|
-
end
|
|
8
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
|
+
s.require_paths = ["lib".freeze]
|
|
10
|
+
s.authors = ["Riccardo C.".freeze]
|
|
11
|
+
# s.cert_chain = ["/Users/ricc/git/gic/private/rusko@palladius.it/gem-public_cert.pem".freeze]
|
|
12
|
+
s.date = "1980-01-02"
|
|
13
|
+
s.description = "My second gem, and most minimalistic.".freeze
|
|
14
|
+
s.email = "['p','ll','diusbonton@gm','il.com'].join('a')".freeze
|
|
15
|
+
s.extra_rdoc_files = ["CHANGELOG.md".freeze, "README".freeze, "README.md".freeze, "lib/r.rb".freeze]
|
|
16
|
+
s.files = ["CHANGELOG.md".freeze, "Manifest".freeze, "README".freeze, "README.md".freeze, "Rakefile".freeze, "blueprint.yaml".freeze, "init.rb".freeze, "lib/r.rb".freeze, "r.gemspec".freeze, "r_logo.png".freeze]
|
|
17
|
+
s.homepage = "http://github.com/palladius/r".freeze
|
|
18
|
+
s.rdoc_options = ["--line-numbers".freeze, "--title".freeze, "R".freeze, "--main".freeze, "README".freeze]
|
|
19
|
+
s.rubygems_version = "3.6.9".freeze
|
|
20
|
+
s.summary = "My second gem, and most minimalistic.".freeze
|
|
21
|
+
# s.signing_key = "/Users/ricc/git/gic/private/rusko@palladius.it/gem-private_key.pem".freeze
|
|
29
22
|
end
|
data/r_logo.png
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,79 +1,57 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: r
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 0
|
|
8
|
-
- 0
|
|
9
|
-
- 3
|
|
10
|
-
version: 0.0.3
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.4
|
|
11
5
|
platform: ruby
|
|
12
|
-
authors:
|
|
6
|
+
authors:
|
|
13
7
|
- Riccardo C.
|
|
14
|
-
autorequire:
|
|
15
8
|
bindir: bin
|
|
16
9
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
date: 2011-01-17 00:00:00 +00:00
|
|
19
|
-
default_executable:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
20
11
|
dependencies: []
|
|
21
|
-
|
|
22
12
|
description: My second gem, and most minimalistic.
|
|
23
13
|
email: "['p','ll','diusbonton@gm','il.com'].join('a')"
|
|
24
14
|
executables: []
|
|
25
|
-
|
|
26
15
|
extensions: []
|
|
27
|
-
|
|
28
|
-
|
|
16
|
+
extra_rdoc_files:
|
|
17
|
+
- CHANGELOG.md
|
|
29
18
|
- README
|
|
19
|
+
- README.md
|
|
30
20
|
- lib/r.rb
|
|
31
|
-
files:
|
|
21
|
+
files:
|
|
22
|
+
- CHANGELOG.md
|
|
32
23
|
- Manifest
|
|
33
24
|
- README
|
|
25
|
+
- README.md
|
|
34
26
|
- Rakefile
|
|
27
|
+
- blueprint.yaml
|
|
35
28
|
- init.rb
|
|
36
29
|
- lib/r.rb
|
|
37
30
|
- r.gemspec
|
|
38
|
-
|
|
31
|
+
- r_logo.png
|
|
39
32
|
homepage: http://github.com/palladius/r
|
|
40
33
|
licenses: []
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
- --
|
|
45
|
-
- --inline-source
|
|
46
|
-
- --title
|
|
34
|
+
metadata: {}
|
|
35
|
+
rdoc_options:
|
|
36
|
+
- "--line-numbers"
|
|
37
|
+
- "--title"
|
|
47
38
|
- R
|
|
48
|
-
- --main
|
|
39
|
+
- "--main"
|
|
49
40
|
- README
|
|
50
|
-
require_paths:
|
|
41
|
+
require_paths:
|
|
51
42
|
- lib
|
|
52
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
|
-
|
|
54
|
-
requirements:
|
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
55
45
|
- - ">="
|
|
56
|
-
- !ruby/object:Gem::Version
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
version: "0"
|
|
61
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
|
-
none: false
|
|
63
|
-
requirements:
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
64
50
|
- - ">="
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
|
|
67
|
-
segments:
|
|
68
|
-
- 1
|
|
69
|
-
- 2
|
|
70
|
-
version: "1.2"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '1.2'
|
|
71
53
|
requirements: []
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
rubygems_version: 1.4.2
|
|
75
|
-
signing_key:
|
|
76
|
-
specification_version: 3
|
|
54
|
+
rubygems_version: 3.6.9
|
|
55
|
+
specification_version: 4
|
|
77
56
|
summary: My second gem, and most minimalistic.
|
|
78
57
|
test_files: []
|
|
79
|
-
|