thefox-ext 0.1.0 → 1.0.0.pre.rc.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 +4 -4
- data/.gitignore +2 -0
- data/Makefile +14 -0
- data/README.md +6 -0
- data/lib/thefox-ext/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c452aece57654bdcc8d3f1b30d3075d1e0138b4
|
|
4
|
+
data.tar.gz: b2d4cb061ba255b47342e456a1700f7e84bb434c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c860b54a8f5d3757718c9bd8f4d7479fc157e198a7aacbc3f0768e467679e31eb69c1a6d1ed0c09483e5d88246c8da5470bb7f987efd1c3003fce6cbb0485ce
|
|
7
|
+
data.tar.gz: 04aef0238f3d9a6d65c1666a7e492ca84835869fe5e5727858fe77fa4edc3728fbb72a7185911928d99060a502929832632b0c4178393d7a6b7dea0e0d4c8d44
|
data/.gitignore
ADDED
data/Makefile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
MV = mv -nv
|
|
3
|
+
|
|
4
|
+
.PHONY: all
|
|
5
|
+
all:
|
|
6
|
+
|
|
7
|
+
release:
|
|
8
|
+
set -e; \
|
|
9
|
+
gem_file=$$(gem build thefox-ext.gemspec | grep 'File:' | tail -1 | awk '{ print $$2 }'); \
|
|
10
|
+
dst="releases/$$gem_file"; \
|
|
11
|
+
[ ! -f $$dst ]; \
|
|
12
|
+
$(MV) $$gem_file releases; \
|
|
13
|
+
gem push $$dst; \
|
|
14
|
+
echo 'done'
|
data/README.md
CHANGED
data/lib/thefox-ext/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thefox-ext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 1.0.0.pre.rc.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Mayer
|
|
@@ -16,6 +16,8 @@ executables: []
|
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
18
18
|
files:
|
|
19
|
+
- ".gitignore"
|
|
20
|
+
- Makefile
|
|
19
21
|
- README.md
|
|
20
22
|
- lib/thefox-ext.rb
|
|
21
23
|
- lib/thefox-ext/ext/string.rb
|
|
@@ -37,9 +39,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
37
39
|
version: 2.2.0
|
|
38
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
41
|
requirements:
|
|
40
|
-
- - "
|
|
42
|
+
- - ">"
|
|
41
43
|
- !ruby/object:Gem::Version
|
|
42
|
-
version:
|
|
44
|
+
version: 1.3.1
|
|
43
45
|
requirements: []
|
|
44
46
|
rubyforge_project:
|
|
45
47
|
rubygems_version: 2.4.7
|