unnatural 0.3.2 → 0.4.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.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +40 -0
- data/lib/unnatural/version.rb +1 -1
- data/unnatural.gemspec +0 -1
- metadata +7 -22
- data/.travis.yml +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d30faac6de21215a8cb100e0621352ee6322e9559929b50c497aaa0c3a949765
|
|
4
|
+
data.tar.gz: 2faa48bf01a8117b96d150f62b00c8a9213cfb0210607dcefd8ded4bb5bb9ff9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be87f01ba42c62c779f5d77a2e86d252ef92d0e42a84d579f3b5462d051db55f502b84d01fce2ff3948f529e8e078a0a1a667e2d45b1304c55773bab1513c62d
|
|
7
|
+
data.tar.gz: d10fe9672a0402a334aeb9211c5963657388bd085657ef39f26d3aef5e444e6dcc3ff6f3a054959f874828970bf1f97da3e17f4484f8cc58cada814345dfdd79
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Ruby
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ "master" ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ "master" ]
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
test:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
strategy:
|
|
16
|
+
matrix:
|
|
17
|
+
ruby-version:
|
|
18
|
+
- '2.1'
|
|
19
|
+
- '2.2'
|
|
20
|
+
- '2.3'
|
|
21
|
+
- '2.4'
|
|
22
|
+
- '2.5'
|
|
23
|
+
- '2.6'
|
|
24
|
+
- '2.7'
|
|
25
|
+
- '3.0'
|
|
26
|
+
- '3.1'
|
|
27
|
+
- jruby-9.1.17.0
|
|
28
|
+
- jruby-9.2.21.0
|
|
29
|
+
- jruby-9.3.6.0
|
|
30
|
+
|
|
31
|
+
steps:
|
|
32
|
+
- uses: actions/checkout@v3
|
|
33
|
+
- name: Set up Ruby
|
|
34
|
+
# https://github.com/ruby/setup-ruby#versioning
|
|
35
|
+
uses: ruby/setup-ruby@v1
|
|
36
|
+
with:
|
|
37
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
38
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
39
|
+
- name: Run tests
|
|
40
|
+
run: bundle exec rake
|
data/lib/unnatural/version.rb
CHANGED
data/unnatural.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unnatural
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Miller
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi-compiler
|
|
@@ -38,20 +38,6 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: bundler
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '1.12'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '1.12'
|
|
55
41
|
- !ruby/object:Gem::Dependency
|
|
56
42
|
name: minitest
|
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,9 +60,9 @@ extensions:
|
|
|
74
60
|
- ext/unnatural/Rakefile
|
|
75
61
|
extra_rdoc_files: []
|
|
76
62
|
files:
|
|
63
|
+
- ".github/workflows/ruby.yml"
|
|
77
64
|
- ".gitignore"
|
|
78
65
|
- ".rubocop.yml"
|
|
79
|
-
- ".travis.yml"
|
|
80
66
|
- CODE_OF_CONDUCT.md
|
|
81
67
|
- Gemfile
|
|
82
68
|
- LICENSE.txt
|
|
@@ -97,7 +83,7 @@ homepage: https://github.com/bjmllr/unnatural
|
|
|
97
83
|
licenses:
|
|
98
84
|
- MIT
|
|
99
85
|
metadata: {}
|
|
100
|
-
post_install_message:
|
|
86
|
+
post_install_message:
|
|
101
87
|
rdoc_options: []
|
|
102
88
|
require_paths:
|
|
103
89
|
- lib
|
|
@@ -112,9 +98,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
98
|
- !ruby/object:Gem::Version
|
|
113
99
|
version: '0'
|
|
114
100
|
requirements: []
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
signing_key:
|
|
101
|
+
rubygems_version: 3.3.7
|
|
102
|
+
signing_key:
|
|
118
103
|
specification_version: 4
|
|
119
104
|
summary: A natural sort.
|
|
120
105
|
test_files: []
|