n_plus_insight 0.1.0 → 0.1.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.
data/RELEASING.md DELETED
@@ -1,47 +0,0 @@
1
- # Releasing NPlusInsight
2
-
3
- ## First release
4
-
5
- 1. Create or sign in to your account at https://rubygems.org.
6
- 2. Enable MFA for the account.
7
- 3. Confirm that `n_plus_insight` is still available:
8
-
9
- ```sh
10
- gem search --remote --exact n_plus_insight
11
- ```
12
-
13
- No output means there is no published gem with that exact name.
14
-
15
- 4. Authenticate without putting an API key in the repository:
16
-
17
- ```sh
18
- gem signin
19
- ```
20
-
21
- 5. Run the tests and build the package:
22
-
23
- ```sh
24
- bundle install
25
- bundle exec rake test
26
- bundle exec rake build
27
- ```
28
-
29
- 6. Publish the built package:
30
-
31
- ```sh
32
- gem push pkg/n_plus_insight-0.1.0.gem
33
- ```
34
-
35
- 7. Verify the release:
36
-
37
- ```sh
38
- gem info n_plus_insight --remote
39
- ```
40
-
41
- ## Later releases
42
-
43
- Update `NPlusInsight::VERSION` in `lib/n_plus_insight/version.rb`, add the
44
- release notes to `CHANGELOG.md`, rerun the tests, build, and push the new
45
- version. RubyGems does not allow replacing an existing version.
46
-
47
- Never commit `.gem/credentials`, an API key, or an OTP recovery code.