ruby-common 1.0.0 → 1.0.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/README.md +13 -2
- data/lib/ruby-common/version.rb +1 -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: 1867d71bf477504bc416b609b4946cb8649c66c2275af55e0b48405725a63a1d
|
4
|
+
data.tar.gz: 776d4d89745f3f320f5d6782b61f26a3e014f4b7299421108ba006a4e0e0ba48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8930f0f149f2858dad02f711c39a13d1359372a948618b66d18c3c8d6f29161517e514e60301539d0834484665f459ad76792b47342820fe13d323c0d361d41
|
7
|
+
data.tar.gz: f68578899379320384f0bc0b48a11581b668445963d99b969556e20bd6fb20a1511937d380fb3b585901115d9d6195617ba628cc093093dcfda59450ef62dbaf
|
data/README.md
CHANGED
@@ -30,15 +30,26 @@ integration with the service.
|
|
30
30
|
|
31
31
|
## Installation
|
32
32
|
|
33
|
-
You have
|
33
|
+
You have several options, but the best ones are:
|
34
34
|
|
35
|
-
###
|
35
|
+
### Import via rubygems.org
|
36
|
+
Follow version on: https://rubygems.org/gems/ruby-common
|
37
|
+
|
38
|
+
Add this line to your application's Gemfile:
|
39
|
+
```ruby
|
40
|
+
gem 'ruby-common', '~> [VERSION]'
|
41
|
+
```
|
42
|
+
|
43
|
+
|
44
|
+
### Import via github.com
|
45
|
+
Repo: https://github.com/Adscore/ruby-common
|
36
46
|
|
37
47
|
Add this line to your application's Gemfile:
|
38
48
|
```ruby
|
39
49
|
gem "ruby-common", :git => "https://github.com/Adscore/ruby-common"
|
40
50
|
```
|
41
51
|
|
52
|
+
|
42
53
|
And then execute:
|
43
54
|
|
44
55
|
$ bundle install
|
data/lib/ruby-common/version.rb
CHANGED