ricc 0.0.1 → 0.0.2
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 +9 -1
- data/README.md +2 -2
- data/VERSION +1 -1
- data/lib/ricc/version.rb +17 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e580a3dc80bd247691a997dc2cfa75dfef892bfeafd54db01bddcd9fd785d3bb
|
4
|
+
data.tar.gz: 78577dc7fae3e333920328ad42ccb6a47e633273bfbe55266eafbab1880614f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d76dc135cbce4bc1e2b97376038eaa02b7fffc748fe905a556e4be95c8c56edfe174c074e00054ff4eedaa1e72890ed1ffbbf6bd036918330945844587402c7d
|
7
|
+
data.tar.gz: bad77b05b1b69e9d17f4d785c4f542deddc86097ef228bd6e7549a2c550507ace474199a649b43e58532a2529e533b4f4bc2fe6bf1880b0a6a88e7a37baa6e8e
|
data/.gitignore
CHANGED
data/Makefile
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
VERSION = $(shell cat VERSION)
|
2
2
|
|
3
|
+
help:
|
4
|
+
cat Makefile
|
5
|
+
rake -T
|
6
|
+
|
3
7
|
test-locally:
|
4
8
|
echo Ricc.hi | bundler console
|
5
9
|
|
@@ -8,4 +12,8 @@ build:
|
|
8
12
|
|
9
13
|
deploy: build
|
10
14
|
echo deploy Ricc v $(VERSION)..
|
11
|
-
gem push ricc
|
15
|
+
gem push ricc-$(VERSION).gem
|
16
|
+
|
17
|
+
mirror-on-github:
|
18
|
+
cp -R . mirror-on-github/
|
19
|
+
rm -rf mirror-on-github/mirror-on-github/
|
data/README.md
CHANGED
@@ -38,9 +38,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
38
38
|
|
39
39
|
## Contributing
|
40
40
|
|
41
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/palladius/ricc. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/palladius/ricc/blob/master/CODE_OF_CONDUCT.md).
|
42
42
|
|
43
43
|
|
44
44
|
## Code of Conduct
|
45
45
|
|
46
|
-
Everyone interacting in the Ricc project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
46
|
+
Everyone interacting in the Ricc project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/palladius/ricc/blob/master/CODE_OF_CONDUCT.md).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/ricc/version.rb
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
|
1
2
|
module Ricc
|
2
|
-
|
3
|
+
|
4
|
+
# #https://stackoverflow.com/questions/10132949/finding-the-gem-root
|
5
|
+
# def self.root
|
6
|
+
# File.expand_path '../..', __FILE__
|
7
|
+
# end
|
8
|
+
|
9
|
+
|
10
|
+
# def get_version_from_file
|
11
|
+
# puts self.root
|
12
|
+
# File.read(File.expand_path(self.root, "VERSION")).strip
|
13
|
+
# end
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
# This works fine as gem, but if you include this __FILE__ from it's dir it would probably fail. Whatever
|
18
|
+
VERSION = File.read("VERSION") # get_version_from_file #
|
3
19
|
end
|