gamco 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +21 -0
- data/README.md +129 -0
- data/Rakefile +12 -0
- data/gamco.gemspec +43 -0
- data/lib/gamco/builder.rb +49 -0
- data/lib/gamco/configuration.rb +15 -0
- data/lib/gamco/errors/no_tag_id.rb +7 -0
- data/lib/gamco/helper.rb +24 -0
- data/lib/gamco/version.rb +5 -0
- data/lib/gamco.rb +14 -0
- data/lib/generators/gamco/install_generator.rb +14 -0
- data/lib/generators/gamco/templates/gamco.rb +11 -0
- data/sig/gamco.rbs +4 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 90384de6681b9f81cd09552378fcaecfcab73bff8648691845cce57b75e870f8
|
4
|
+
data.tar.gz: f2fee0bfb32f91c3cbf911ce30e089af52bd0b4ae2d6b61d66c0e883f0cd2915
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 74896f548b6938ecb6fc93ea51f34bd282c92bf6e412bc61b87ebb00de0ca43d27931466b529cd1cb3fd88f091e2946eaf3a454e77d6529eff671f21f7b087a0
|
7
|
+
data.tar.gz: 977e37ecbe9dbc37b40429f0859d363e63b5c553c5597bee9340dab4c5092771c434fc655f6adfa17acabc711fac8e4cf947ebaffc23d8bb8d28cf09e0e27dff
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
8
|
+
|
9
|
+
## Our Standards
|
10
|
+
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
12
|
+
|
13
|
+
* Demonstrating empathy and kindness toward other people
|
14
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
15
|
+
* Giving and gracefully accepting constructive feedback
|
16
|
+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
|
17
|
+
* Focusing on what is best not just for us as individuals, but for the overall community
|
18
|
+
|
19
|
+
Examples of unacceptable behavior include:
|
20
|
+
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or
|
22
|
+
advances of any kind
|
23
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
24
|
+
* Public or private harassment
|
25
|
+
* Publishing others' private information, such as a physical or email
|
26
|
+
address, without their explicit permission
|
27
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
28
|
+
professional setting
|
29
|
+
|
30
|
+
## Enforcement Responsibilities
|
31
|
+
|
32
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
33
|
+
|
34
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
35
|
+
|
36
|
+
## Scope
|
37
|
+
|
38
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
39
|
+
|
40
|
+
## Enforcement
|
41
|
+
|
42
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at alejandrodevs@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
|
43
|
+
|
44
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
45
|
+
|
46
|
+
## Enforcement Guidelines
|
47
|
+
|
48
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
49
|
+
|
50
|
+
### 1. Correction
|
51
|
+
|
52
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
53
|
+
|
54
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
55
|
+
|
56
|
+
### 2. Warning
|
57
|
+
|
58
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
59
|
+
|
60
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
61
|
+
|
62
|
+
### 3. Temporary Ban
|
63
|
+
|
64
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
65
|
+
|
66
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
67
|
+
|
68
|
+
### 4. Permanent Ban
|
69
|
+
|
70
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
71
|
+
|
72
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
73
|
+
|
74
|
+
## Attribution
|
75
|
+
|
76
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
|
77
|
+
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
78
|
+
|
79
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
|
80
|
+
|
81
|
+
[homepage]: https://www.contributor-covenant.org
|
82
|
+
|
83
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
84
|
+
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2022 Alejandro Gutiérrez
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
# Gamco - Google Analytics Helper
|
2
|
+
|
3
|
+
This gem aims to provide a simple and easy way to send data to Google
|
4
|
+
Analytics. It provides some view helpers that can be used in any rails
|
5
|
+
application.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add `Gamco` to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem "gamco"
|
13
|
+
```
|
14
|
+
|
15
|
+
And then install gamco:
|
16
|
+
|
17
|
+
```bash
|
18
|
+
rails g gamco:install
|
19
|
+
```
|
20
|
+
|
21
|
+
## Configuration
|
22
|
+
|
23
|
+
Provide your `TAG_ID` in `config/initializers/gamco.rb`:
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
Gamco.setup do |config|
|
27
|
+
# ===> Required GA4 configuration options
|
28
|
+
config.tag_id = "G-XXXXXXXXX"
|
29
|
+
|
30
|
+
...
|
31
|
+
end
|
32
|
+
```
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
Usually you'll want to add your Google Analytics script immediately after
|
37
|
+
your `<head>` tag in your html. In rails, this is usually done in your
|
38
|
+
layout file `(app/views/layouts/application.html.erb)`.
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
<html>
|
42
|
+
<head>
|
43
|
+
<%= ga_javascript_tags %>
|
44
|
+
...
|
45
|
+
</head>
|
46
|
+
```
|
47
|
+
|
48
|
+
This will send the default `page_view` event every time the user navigates
|
49
|
+
to a different path in your application. You can pass other dimensions if
|
50
|
+
you want to collect extra data. Example:
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
<html>
|
54
|
+
<head>
|
55
|
+
<%= ga_javascript_tags(environment: Rails.env) %>
|
56
|
+
...
|
57
|
+
</head>
|
58
|
+
```
|
59
|
+
|
60
|
+
### Custom events
|
61
|
+
|
62
|
+
Also, you can send custom messages to Google Analytics per page or when
|
63
|
+
needed by using the `ga_tag` helper as the following example:
|
64
|
+
|
65
|
+
```ruby
|
66
|
+
# app/views/products/show.html.erb
|
67
|
+
<%= ga_tag "event", "product_view", product_id: @product.id %>
|
68
|
+
|
69
|
+
...
|
70
|
+
```
|
71
|
+
|
72
|
+
### Secure data
|
73
|
+
|
74
|
+
There are sensitive information that you might not want to send it directly
|
75
|
+
to Google Analytics to prevent some vulnerabilities. You can achieve this
|
76
|
+
by using the `ga_secure` helper which generates a digest for the passed value:
|
77
|
+
|
78
|
+
```ruby
|
79
|
+
# app/views/products/show.html.erb
|
80
|
+
<%= ga_tag "event", "product_view",
|
81
|
+
user: ga_secure(current_user.id),
|
82
|
+
product_id: @product.id %>
|
83
|
+
|
84
|
+
...
|
85
|
+
```
|
86
|
+
|
87
|
+
By default the generated value is a MD5 digest. You can configure which
|
88
|
+
algorithm will be used in the initializer `config/initializers/gamco.rb`:
|
89
|
+
|
90
|
+
```ruby
|
91
|
+
Gamco.setup do |config|
|
92
|
+
...
|
93
|
+
|
94
|
+
# ===> Method to secure sensitive data.
|
95
|
+
# config.secure = -> (value) {
|
96
|
+
# Digest::MD5.hexdigest(value)
|
97
|
+
# }
|
98
|
+
end
|
99
|
+
```
|
100
|
+
|
101
|
+
## Development
|
102
|
+
|
103
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then,
|
104
|
+
run `rake spec` to run the tests. You can also run `bin/console` for an
|
105
|
+
interactive prompt that will allow you to experiment.
|
106
|
+
|
107
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
108
|
+
To release a new version, update the version number in `version.rb`, and
|
109
|
+
then run `bundle exec rake release`, which will create a git tag for the
|
110
|
+
version, push git commits and the created tag, and push the `.gem` file
|
111
|
+
to [rubygems.org](https://rubygems.org).
|
112
|
+
|
113
|
+
## Contributing
|
114
|
+
|
115
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/amco/gamco.
|
116
|
+
This project is intended to be a safe, welcoming space for collaboration, and
|
117
|
+
contributors are expected to adhere to the
|
118
|
+
[code of conduct](https://github.com/amco/gamco/blob/master/CODE_OF_CONDUCT.md).
|
119
|
+
|
120
|
+
## License
|
121
|
+
|
122
|
+
The gem is available as open source under the terms of the
|
123
|
+
[MIT License](https://opensource.org/licenses/MIT).
|
124
|
+
|
125
|
+
## Code of Conduct
|
126
|
+
|
127
|
+
Everyone interacting in the Gamco project's codebases, issue trackers, chat rooms
|
128
|
+
and mailing lists is expected to follow the
|
129
|
+
[code of conduct](https://github.com/amco/gamco/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/gamco.gemspec
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/gamco/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "gamco"
|
7
|
+
spec.version = Gamco::VERSION
|
8
|
+
spec.authors = ["Alejandro Gutiérrez"]
|
9
|
+
spec.email = ["alejandrodevs@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "Google Analytics helpers for ruby applications."
|
12
|
+
spec.description = "This gem aims to provide a simple and easy way to send data to Google Analytics."
|
13
|
+
spec.homepage = "https://github.com/amco/gamco"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 2.7.0"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
#spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
20
|
+
|
21
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
22
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
23
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
24
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
25
|
+
|
26
|
+
# Specify which files should be added to the gem when it is released.
|
27
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
|
+
spec.files = Dir.chdir(__dir__) do
|
29
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
30
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
spec.bindir = "exe"
|
35
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
36
|
+
spec.require_paths = ["lib"]
|
37
|
+
|
38
|
+
# Uncomment to register a new dependency of your gem
|
39
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
40
|
+
|
41
|
+
# For more information and examples about making a new gem, check out our
|
42
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
43
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Gamco
|
4
|
+
class Builder
|
5
|
+
attr_reader :view
|
6
|
+
|
7
|
+
def initialize(view)
|
8
|
+
@view = view
|
9
|
+
end
|
10
|
+
|
11
|
+
def javascript_tags(tag_id, options = {})
|
12
|
+
gtag_manager_script(tag_id) +
|
13
|
+
gtag_script(tag_id, options)
|
14
|
+
end
|
15
|
+
|
16
|
+
def tag(type, event, options = {})
|
17
|
+
view.content_tag(:script) do
|
18
|
+
dimensions = options.to_json
|
19
|
+
"gtag('#{type}', '#{event}', #{dimensions})".html_safe
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def gtag_manager_script(tag_id)
|
26
|
+
view.content_tag :script, "", async: true,
|
27
|
+
src: "#{tag_manager_script_url}?id=#{tag_id}"
|
28
|
+
end
|
29
|
+
|
30
|
+
def gtag_script(tag_id, options)
|
31
|
+
view.content_tag(:script) do
|
32
|
+
gtag_script_content(tag_id, options).html_safe
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def gtag_script_content(tag_id, options)
|
37
|
+
<<-FOO
|
38
|
+
window.dataLayer = window.dataLayer || [];
|
39
|
+
function gtag(){dataLayer.push(arguments);}
|
40
|
+
gtag('js', new Date());
|
41
|
+
gtag('config', '#{tag_id}', #{options.to_json});
|
42
|
+
FOO
|
43
|
+
end
|
44
|
+
|
45
|
+
def tag_manager_script_url
|
46
|
+
"https://www.googletagmanager.com/gtag/js"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Gamco
|
4
|
+
module Configuration
|
5
|
+
mattr_accessor :tag_id, default: nil
|
6
|
+
|
7
|
+
mattr_accessor :secure, default: -> (value) do
|
8
|
+
Digest::MD5.hexdigest(value)
|
9
|
+
end
|
10
|
+
|
11
|
+
def setup
|
12
|
+
yield(self) if block_given?
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/lib/gamco/helper.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Gamco
|
4
|
+
module Helper
|
5
|
+
def ga_javascript_tags(tag_id: Configuration.tag_id, **options)
|
6
|
+
raise Errors::NoTagId unless tag_id.present?
|
7
|
+
ga_builder.javascript_tags(tag_id, options)
|
8
|
+
end
|
9
|
+
|
10
|
+
def ga_tag(type, event, options = {})
|
11
|
+
ga_builder.tag(type, event, options)
|
12
|
+
end
|
13
|
+
|
14
|
+
def ga_secure(value)
|
15
|
+
Configuration.secure.call(value)
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def ga_builder
|
21
|
+
@ga_builder ||= Gamco::Builder.new(self)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/gamco.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "gamco/version"
|
4
|
+
require_relative "gamco/builder"
|
5
|
+
require_relative "gamco/helper"
|
6
|
+
require_relative "gamco/configuration"
|
7
|
+
|
8
|
+
module Gamco
|
9
|
+
extend Configuration
|
10
|
+
end
|
11
|
+
|
12
|
+
ActiveSupport.on_load(:action_view) do
|
13
|
+
include Gamco::Helper
|
14
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Gamco
|
4
|
+
module Generators
|
5
|
+
class InstallGenerator < Rails::Generators::Base
|
6
|
+
source_root File.expand_path("templates", __dir__)
|
7
|
+
desc "Creates Gamco initializer."
|
8
|
+
|
9
|
+
def create_initializer
|
10
|
+
template "gamco.rb", "config/initializers/gamco.rb"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Gamco.setup do |config|
|
4
|
+
# ===> Required GA4 configuration options
|
5
|
+
# config.tag_id = "G-XXXXXXXXXXX"
|
6
|
+
|
7
|
+
# ===> Method to secure sensitive data.
|
8
|
+
# config.secure = -> (value) {
|
9
|
+
# Digest::MD5.hexdigest(value)
|
10
|
+
# }
|
11
|
+
end
|
data/sig/gamco.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gamco
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alejandro Gutiérrez
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-10-04 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: This gem aims to provide a simple and easy way to send data to Google
|
14
|
+
Analytics.
|
15
|
+
email:
|
16
|
+
- alejandrodevs@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".rspec"
|
22
|
+
- ".rubocop.yml"
|
23
|
+
- CHANGELOG.md
|
24
|
+
- CODE_OF_CONDUCT.md
|
25
|
+
- Gemfile
|
26
|
+
- LICENSE.txt
|
27
|
+
- README.md
|
28
|
+
- Rakefile
|
29
|
+
- gamco.gemspec
|
30
|
+
- lib/gamco.rb
|
31
|
+
- lib/gamco/builder.rb
|
32
|
+
- lib/gamco/configuration.rb
|
33
|
+
- lib/gamco/errors/no_tag_id.rb
|
34
|
+
- lib/gamco/helper.rb
|
35
|
+
- lib/gamco/version.rb
|
36
|
+
- lib/generators/gamco/install_generator.rb
|
37
|
+
- lib/generators/gamco/templates/gamco.rb
|
38
|
+
- sig/gamco.rbs
|
39
|
+
homepage: https://github.com/amco/gamco
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata:
|
43
|
+
homepage_uri: https://github.com/amco/gamco
|
44
|
+
source_code_uri: https://github.com/amco/gamco
|
45
|
+
changelog_uri: https://github.com/amco/gamco/blob/master/CHANGELOG.md
|
46
|
+
rubygems_mfa_required: 'true'
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 2.7.0
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
requirements: []
|
62
|
+
rubygems_version: 3.3.7
|
63
|
+
signing_key:
|
64
|
+
specification_version: 4
|
65
|
+
summary: Google Analytics helpers for ruby applications.
|
66
|
+
test_files: []
|