ricc 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6771e40b2e2165fe1efb2633c61db742f9c26e7bed144e2c412ff7192ad79075
4
- data.tar.gz: 85a6df431ebc48539b15848251ea505e59a5e9c7493ab62669ca7175e73cd7e8
3
+ metadata.gz: e580a3dc80bd247691a997dc2cfa75dfef892bfeafd54db01bddcd9fd785d3bb
4
+ data.tar.gz: 78577dc7fae3e333920328ad42ccb6a47e633273bfbe55266eafbab1880614f5
5
5
  SHA512:
6
- metadata.gz: 8c3b979c6c8aa862aafb758dfea63c6e13b54384fe0ed9ae8e3d838486490df8c4158350666b8fa5e5fffd0bc15af9a5b9bb95eb6e806c6e5499d1af68733952
7
- data.tar.gz: 02df9fa11daa90e34633b854068361a90b77bc18870703eb7dfd363dfa664b9ed91200790f751d2bb57015d2a5cbf07e23d1cd2bb52747aa6395451efd70e4e0
6
+ metadata.gz: d76dc135cbce4bc1e2b97376038eaa02b7fffc748fe905a556e4be95c8c56edfe174c074e00054ff4eedaa1e72890ed1ffbbf6bd036918330945844587402c7d
7
+ data.tar.gz: bad77b05b1b69e9d17f4d785c4f542deddc86097ef228bd6e7549a2c550507ace474199a649b43e58532a2529e533b4f4bc2fe6bf1880b0a6a88e7a37baa6e8e
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  Gemfile.lock
10
+ ricc-0.0.1.gem
11
+ mirror-on-github/
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-0.0.1.gem
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/[USERNAME]/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/[USERNAME]/ricc/blob/master/CODE_OF_CONDUCT.md).
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/[USERNAME]/ricc/blob/master/CODE_OF_CONDUCT.md).
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
1
+ 0.0.2
@@ -1,3 +1,19 @@
1
+
1
2
  module Ricc
2
- VERSION = "0.0.1" # TODO take it from file..
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ricc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Riccardo Carlesso