ruby_scientist_and_graphics 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8614de7395cbeab432fe7481fd46dc03099915f97e88e8396d089111a51f9fd8
4
- data.tar.gz: ea200fdc2b3099ff2bc6b4652c4d0869e0819eb1689dc87a77795c44a3a811e8
3
+ metadata.gz: d422b867c69c4fa608a4e7384632b2a88c5ef2f32459021c97555e78a0c9ffc3
4
+ data.tar.gz: d4bf7970f62959e6b79210a8a691ccbfc7a4b47a970ca5b7e68641504167fe63
5
5
  SHA512:
6
- metadata.gz: eda95e7acb3db61c1f4ad914b0ce319ba2e2370c48ee74f9d297283f540699cad28c97cdb9b24c893528585bbb54d5ae46fb0b060487e8b67396ef7cd9969932
7
- data.tar.gz: 40db38c0e09c3d441c0e8373362a6f9dd27e30b77a6736db7fd480c443c8d194e015d690e70c9110da07ec19c25ca5130ce8182d74166e0bf2ccabb0cb093eb1
6
+ metadata.gz: a7af4508547bb739b3f2505ce08c0c97354da5ee64a29158aecb4c39df28ab8666da71c77dfc378d374abac64dd32c5ab0165e31675368bd9d5c8b8fca84e58f
7
+ data.tar.gz: d47f6bd880a029d76fca4b51ed45a04d413f363dcaefddf0886b7c1ee817fbf95d74d4af04af1bf7b807939e8ac76316225a25b4884200febbf56aebe4992696
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
+ # Changelog
2
+
1
3
  ## [Unreleased]
2
4
 
5
+ ## [0.1.1] - 2025-08-10
6
+
7
+ - Update gem summary and description to English.
8
+ - Expand description to cover features (project save/load, ML, adapters) and add note about ImageMagick.
9
+ - Pin runtime dependencies (csv ~> 3.3, gruff ~> 0.29) and add dev/test deps.
10
+ - Add metadata links (documentation and issues).
11
+
3
12
  ## [0.1.0] - 2025-08-09
4
13
 
5
14
  - Initial release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyScientistAndGraphics
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_scientist_and_graphics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jtvaldivia
@@ -14,44 +14,75 @@ dependencies:
14
14
  name: csv
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '3.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '3.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gruff
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '0.29'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
41
- description: |2
42
- RubyScience es una gema que integra utilidades prácticas para ciencia de datos en Ruby.
43
- Incluye un DataFrame minimal propio para manipulación y limpieza de datos y Gruff para visualización,
44
- todo bajo una API unificada y personalizable.
40
+ version: '0.29'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '13.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.0'
69
+ description: |
70
+ Ruby Scientist and Graphics is a practical data science toolkit for Ruby.
71
+ It includes a lightweight built-in DataFrame for loading, cleaning, and transforming data; quick
72
+ descriptive statistics and correlations; charting via Gruff (bar and line); and simple ML utilities
73
+ (linear regression and k-means)—all behind a small, unified, pandas-inspired API.
45
74
 
46
- Características principales:
47
- - Carga de datos desde CSV y otros formatos.
48
- - Limpieza y transformación de datos (eliminar columnas, manejar valores nulos, limitar filas).
49
- - Estadísticas descriptivas y correlaciones rápidas.
50
- - Creación de gráficos de barras y líneas con opciones personalizables.
51
- - API sencilla inspirada en pandas de Python, pero adaptada al estilo Ruby.
75
+ Key features:
76
+ - Load data from CSV and JSON.
77
+ - Clean and transform (remove/add columns, handle missing values, limit rows).
78
+ - Describe datasets and compute correlations quickly.
79
+ - Create bar and line charts with customization options.
80
+ - Train/predict with linear regression; cluster with k-means.
81
+ - Save/load project state (data + trained model) and run simple pipelines.
82
+ - Optional backend adapters (e.g., Rover) while keeping the same API.
52
83
 
53
- Ideal para analistas, científicos de datos y desarrolladores Ruby que necesiten explorar datos
54
- sin depender de entornos como Python o R.
84
+ Ideal for analysts and developers who want to explore data in Ruby without relying on Python or R.
85
+ Note: plotting via Gruff uses rmagick, which requires ImageMagick installed on the system.
55
86
  email:
56
87
  - josevaldivia9@gmail.com
57
88
  executables: []
@@ -83,6 +114,8 @@ metadata:
83
114
  homepage_uri: https://github.com/jtvaldivia/Ruby_scientist_and_graphics
84
115
  source_code_uri: https://github.com/jtvaldivia/Ruby_scientist_and_graphics
85
116
  changelog_uri: https://github.com/jtvaldivia/Ruby_scientist_and_graphics/blob/master/CHANGELOG.md
117
+ documentation_uri: https://github.com/jtvaldivia/Ruby_scientist_and_graphics#readme
118
+ bug_tracker_uri: https://github.com/jtvaldivia/Ruby_scientist_and_graphics/issues
86
119
  post_install_message:
87
120
  rdoc_options: []
88
121
  require_paths:
@@ -101,6 +134,6 @@ requirements: []
101
134
  rubygems_version: 3.5.22
102
135
  signing_key:
103
136
  specification_version: 4
104
- summary: 'Suite de Data Science para Ruby: limpieza, análisis y visualización de datos
105
- en una sola gema.'
137
+ summary: 'Ruby data science toolkit: lightweight DataFrame, cleaning, stats, plotting,
138
+ simple ML, and project save/load.'
106
139
  test_files: []