honeycomb-rails 0.1.0 → 0.2.0
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 +5 -5
- data/README.md +9 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8c95c50f630565d5361f03554f7b905a373e1a2eb6e3f365e0d94bfd4822089d
|
|
4
|
+
data.tar.gz: 573d2276a9733acacc498eb925e6d16e42ec9b6ca54e24d391fe2a234f9f87ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63883618d112d94d725847a25b216e5420319a2d6b14487475696fce3a6f9d3d4885e64ada33a6eb3ec4d3553bdbaa91b898b3d078d5b10427ee8c90367f4f3f
|
|
7
|
+
data.tar.gz: e2919d3b901f50d46b9488559e06d116b337057495c134abeb0d7942e1ffac8fedcd9374388537ba19e3a6df1ca271cd259bbf362302a5c9737a60641e6d4708
|
data/README.md
CHANGED
|
@@ -37,3 +37,12 @@ open issues or a pull request with your change. Remember to add your name to the
|
|
|
37
37
|
CONTRIBUTORS file!
|
|
38
38
|
|
|
39
39
|
All contributions will be released under the Apache License 2.0.
|
|
40
|
+
|
|
41
|
+
### Releasing a new version
|
|
42
|
+
|
|
43
|
+
Travis will automatically upload tagged releases to Rubygems. To release a new
|
|
44
|
+
version, run
|
|
45
|
+
```
|
|
46
|
+
rake bump:patch[tag] # Or rake bump:minor[tag], etc.
|
|
47
|
+
git push --follow-tags
|
|
48
|
+
```
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: honeycomb-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sam Stokes
|
|
@@ -39,6 +39,20 @@ dependencies:
|
|
|
39
39
|
- - ">="
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
41
|
version: 3.0.0
|
|
42
|
+
- !ruby/object:Gem::Dependency
|
|
43
|
+
name: bump
|
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '0'
|
|
49
|
+
type: :development
|
|
50
|
+
prerelease: false
|
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
42
56
|
- !ruby/object:Gem::Dependency
|
|
43
57
|
name: rake
|
|
44
58
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -138,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
152
|
version: '0'
|
|
139
153
|
requirements: []
|
|
140
154
|
rubyforge_project:
|
|
141
|
-
rubygems_version: 2.
|
|
155
|
+
rubygems_version: 2.7.2
|
|
142
156
|
signing_key:
|
|
143
157
|
specification_version: 4
|
|
144
158
|
summary: Easily instrument your Rails apps with Honeycomb
|