africansms 0.1.7 → 0.1.9

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: f5b35bc11b8fe1a17e77a9538de7cd819e6dc54b630b4668137963751807a58e
4
- data.tar.gz: 99316ba7ec6bfa458cac519022e66e7a86d8febef68e09aa5ab9d179007a7461
3
+ metadata.gz: bbb2a8a31b6bff5dc907abe1bf608f11e878a1edf4c0594641d4937a96205d49
4
+ data.tar.gz: f2d5e643007aff4a4e1fbe71f6a6dc037afeb9339119d5815600ae7d12889350
5
5
  SHA512:
6
- metadata.gz: '0924a357882b883ef67b853d3b7427139560a4e771ef3a4ae5e62e39f51d3203821cfc03b1324cd779fa72fc591e7eb5cff4542ec187c7ebcbdb00e5c6d2acd6'
7
- data.tar.gz: 88d1cb291535da63e93767d7eba775b52b18c43b2921c2a34207e106726082281ccc8e86e1e050bf9eb7af2503473ea6e9a064ce4393d57ffcf265b8be6c2460
6
+ metadata.gz: 4a2a7d99f33847392ff621727a8a87a19ca1c27405878c1eb3ac19c45865cf6745366b5cec526a75a034fe9264bfdcc6bc06fb3ccbda1046284d7ab9bee61549
7
+ data.tar.gz: f2eebbcf23d8df5ff3e50a25e3edf3968ca41bf959f14d220660ec4d680f1aa40e3a6735c06d66f90101a18ab5a6c93a0202ca7765e435894cce931365292a99
@@ -0,0 +1,64 @@
1
+ version: 2.1
2
+
3
+ environment: &environment
4
+ LOG_LEVEL: WARN
5
+
6
+ jobs:
7
+ run_cops:
8
+ working_directory: ~/repos/africansms
9
+
10
+ docker:
11
+ - image: circleci/ruby:2.6.4-buster-node
12
+ environment:
13
+ <<: *environment
14
+
15
+ steps:
16
+ - checkout
17
+
18
+ - run:
19
+ name: check dependencies
20
+ command: |
21
+ gem install bundler:2.2.23
22
+ bundle -v
23
+ bundle exec ruby -v
24
+
25
+ - run:
26
+ name: install gems
27
+ command: bundle install && bundle clean
28
+
29
+ - run:
30
+ name: run rubocop
31
+ command: bundle exec rubocop
32
+
33
+ publish_to_rubygems:
34
+ working_directory: ~/repos/africansms
35
+
36
+ docker:
37
+ - image: circleci/ruby:2.6.4-buster-node
38
+ environment:
39
+ <<: *environment
40
+
41
+ steps:
42
+ - checkout
43
+
44
+ - run:
45
+ name: setup Rubygems
46
+ command: bash .circleci/setup-rubygems.sh
47
+
48
+ - run:
49
+ name: publish to Rubygems
50
+ command: |
51
+ gem build africansms.gemspec
52
+ gem push "africansms-$(git describe --tags).gem"
53
+
54
+ workflows:
55
+ version: 2
56
+ build_and_test:
57
+ jobs:
58
+ - run_cops
59
+ - publish_to_rubygems:
60
+ filters:
61
+ tags:
62
+ only: /.*/
63
+ branches:
64
+ ignore: /.*/
@@ -0,0 +1,3 @@
1
+ mkdir ~/.gem
2
+ echo -e "---\r\n:rubygems_api_key: $RUBYGEMS_API_KEY" > ~/.gem/credentials
3
+ chmod 0600 /home/circleci/.gem/credentials
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- africansms (0.1.7)
4
+ africansms (0.1.8)
5
5
  rest-client (~> 2.1)
6
6
 
7
7
  GEM
Binary file
@@ -1,3 +1,3 @@
1
1
  module Africansms
2
- VERSION = '0.1.7'.freeze
2
+ VERSION = '0.1.9'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: africansms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ayush Agrawal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2021-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -60,6 +60,8 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
+ - ".circleci/config.yml"
64
+ - ".circleci/setup-rubygems.sh"
63
65
  - ".gitignore"
64
66
  - ".rubocop.yml"
65
67
  - CODE_OF_CONDUCT.md
@@ -68,6 +70,7 @@ files:
68
70
  - LICENSE.txt
69
71
  - README.md
70
72
  - Rakefile
73
+ - africansms-0.1.7.gem
71
74
  - africansms.gemspec
72
75
  - bin/console
73
76
  - bin/setup