hubspot-api-client 7.0.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/lib/hubspot/version.rb +1 -1
  4. data/sample-apps/trello-integration-app/.env.template +7 -0
  5. data/sample-apps/trello-integration-app/.gitignore +35 -0
  6. data/sample-apps/trello-integration-app/.rspec +1 -0
  7. data/sample-apps/trello-integration-app/.ruby-version +1 -0
  8. data/sample-apps/trello-integration-app/Dockerfile +22 -0
  9. data/sample-apps/trello-integration-app/Gemfile +38 -0
  10. data/sample-apps/trello-integration-app/Gemfile.lock +314 -0
  11. data/sample-apps/trello-integration-app/README.md +31 -0
  12. data/sample-apps/trello-integration-app/Rakefile +6 -0
  13. data/sample-apps/trello-integration-app/app/assets/config/manifest.js +3 -0
  14. data/sample-apps/trello-integration-app/app/assets/images/.keep +0 -0
  15. data/sample-apps/trello-integration-app/app/assets/images/right-arrow.png +0 -0
  16. data/sample-apps/trello-integration-app/app/assets/javascripts/application.js +22 -0
  17. data/sample-apps/trello-integration-app/app/assets/javascripts/cable.js +13 -0
  18. data/sample-apps/trello-integration-app/app/assets/javascripts/channels/.keep +0 -0
  19. data/sample-apps/trello-integration-app/app/assets/javascripts/jquery-spinner.min.js +11071 -0
  20. data/sample-apps/trello-integration-app/app/assets/javascripts/lodash.js +15972 -0
  21. data/sample-apps/trello-integration-app/app/assets/javascripts/mappings.js +78 -0
  22. data/sample-apps/trello-integration-app/app/assets/javascripts/typeahead.bundle.min.js +8 -0
  23. data/sample-apps/trello-integration-app/app/assets/stylesheets/application.css +46 -0
  24. data/sample-apps/trello-integration-app/app/assets/stylesheets/authorization.scss +34 -0
  25. data/sample-apps/trello-integration-app/app/assets/stylesheets/jquery-spinner.css +33 -0
  26. data/sample-apps/trello-integration-app/app/assets/stylesheets/mappings.scss +55 -0
  27. data/sample-apps/trello-integration-app/app/assets/stylesheets/navigation.scss +43 -0
  28. data/sample-apps/trello-integration-app/app/assets/stylesheets/search_frame.scss +81 -0
  29. data/sample-apps/trello-integration-app/app/controllers/application_controller.rb +38 -0
  30. data/sample-apps/trello-integration-app/app/controllers/concerns/.keep +0 -0
  31. data/sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb +12 -0
  32. data/sample-apps/trello-integration-app/app/controllers/home_controller.rb +20 -0
  33. data/sample-apps/trello-integration-app/app/controllers/mappings_controller.rb +64 -0
  34. data/sample-apps/trello-integration-app/app/controllers/oauth/authorization_controller.rb +28 -0
  35. data/sample-apps/trello-integration-app/app/controllers/trello/cards_controller.rb +94 -0
  36. data/sample-apps/trello-integration-app/app/controllers/trello/webhooks_controller.rb +30 -0
  37. data/sample-apps/trello-integration-app/app/helpers/application_helper.rb +2 -0
  38. data/sample-apps/trello-integration-app/app/helpers/oauth/authorization_helper.rb +11 -0
  39. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/authorize.rb +17 -0
  40. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/get_authorization_uri.rb +35 -0
  41. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/base.rb +21 -0
  42. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/generate.rb +28 -0
  43. data/sample-apps/trello-integration-app/app/lib/services/hubspot/authorization/tokens/refresh.rb +35 -0
  44. data/sample-apps/trello-integration-app/app/lib/services/hubspot/deals/get_by_id.rb +15 -0
  45. data/sample-apps/trello-integration-app/app/lib/services/hubspot/deals/update.rb +17 -0
  46. data/sample-apps/trello-integration-app/app/lib/services/hubspot/extensions_cards/create.rb +82 -0
  47. data/sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_all.rb +11 -0
  48. data/sample-apps/trello-integration-app/app/lib/services/hubspot/pipelines/get_by_id.rb +15 -0
  49. data/sample-apps/trello-integration-app/app/lib/services/trello/authorization/authorize.rb +20 -0
  50. data/sample-apps/trello-integration-app/app/lib/services/trello/boards/get_all.rb +11 -0
  51. data/sample-apps/trello-integration-app/app/lib/services/trello/boards/get_by_id.rb +19 -0
  52. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/format.rb +78 -0
  53. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/get_by_id.rb +15 -0
  54. data/sample-apps/trello-integration-app/app/lib/services/trello/cards/search.rb +15 -0
  55. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/create.rb +31 -0
  56. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/delete.rb +17 -0
  57. data/sample-apps/trello-integration-app/app/lib/services/trello/webhooks/update.rb +19 -0
  58. data/sample-apps/trello-integration-app/app/models/application_record.rb +3 -0
  59. data/sample-apps/trello-integration-app/app/models/concerns/.keep +0 -0
  60. data/sample-apps/trello-integration-app/app/models/deal_association.rb +2 -0
  61. data/sample-apps/trello-integration-app/app/models/extension_card.rb +4 -0
  62. data/sample-apps/trello-integration-app/app/models/hubspot_token.rb +19 -0
  63. data/sample-apps/trello-integration-app/app/models/mapping.rb +2 -0
  64. data/sample-apps/trello-integration-app/app/models/trello_token.rb +19 -0
  65. data/sample-apps/trello-integration-app/app/models/webhook.rb +2 -0
  66. data/sample-apps/trello-integration-app/app/views/home/index.html.erb +23 -0
  67. data/sample-apps/trello-integration-app/app/views/home/success.html.erb +11 -0
  68. data/sample-apps/trello-integration-app/app/views/layouts/application.html.erb +23 -0
  69. data/sample-apps/trello-integration-app/app/views/mappings/_mapping.html.erb +13 -0
  70. data/sample-apps/trello-integration-app/app/views/mappings/index.html.erb +44 -0
  71. data/sample-apps/trello-integration-app/app/views/oauth/authorization/login.html.erb +42 -0
  72. data/sample-apps/trello-integration-app/app/views/shared/_header.html.erb +15 -0
  73. data/sample-apps/trello-integration-app/app/views/trello/cards/search_frame.html.erb +69 -0
  74. data/sample-apps/trello-integration-app/app/views/trello/cards/search_frame_success.html.erb +7 -0
  75. data/sample-apps/trello-integration-app/bin/bundle +3 -0
  76. data/sample-apps/trello-integration-app/bin/rails +9 -0
  77. data/sample-apps/trello-integration-app/bin/rake +9 -0
  78. data/sample-apps/trello-integration-app/bin/setup +36 -0
  79. data/sample-apps/trello-integration-app/bin/spring +17 -0
  80. data/sample-apps/trello-integration-app/bin/update +31 -0
  81. data/sample-apps/trello-integration-app/bin/yarn +11 -0
  82. data/sample-apps/trello-integration-app/config.ru +5 -0
  83. data/sample-apps/trello-integration-app/config/application.rb +20 -0
  84. data/sample-apps/trello-integration-app/config/boot.rb +3 -0
  85. data/sample-apps/trello-integration-app/config/cable.yml +10 -0
  86. data/sample-apps/trello-integration-app/config/database.yml +16 -0
  87. data/sample-apps/trello-integration-app/config/environment.rb +5 -0
  88. data/sample-apps/trello-integration-app/config/environments/development.rb +61 -0
  89. data/sample-apps/trello-integration-app/config/environments/production.rb +94 -0
  90. data/sample-apps/trello-integration-app/config/environments/test.rb +46 -0
  91. data/sample-apps/trello-integration-app/config/initializers/assets.rb +14 -0
  92. data/sample-apps/trello-integration-app/config/initializers/filter_parameter_logging.rb +4 -0
  93. data/sample-apps/trello-integration-app/config/initializers/hubspot-api-client.rb +3 -0
  94. data/sample-apps/trello-integration-app/config/initializers/mime_types.rb +1 -0
  95. data/sample-apps/trello-integration-app/config/initializers/omniauth.rb +11 -0
  96. data/sample-apps/trello-integration-app/config/initializers/trello.rb +1 -0
  97. data/sample-apps/trello-integration-app/config/initializers/wrap_parameters.rb +14 -0
  98. data/sample-apps/trello-integration-app/config/locales/en.yml +33 -0
  99. data/sample-apps/trello-integration-app/config/puma.rb +34 -0
  100. data/sample-apps/trello-integration-app/config/routes.rb +29 -0
  101. data/sample-apps/trello-integration-app/config/spring.rb +6 -0
  102. data/sample-apps/trello-integration-app/config/storage.yml +34 -0
  103. data/sample-apps/trello-integration-app/db/migrate/20200624132327_create_hubspot_tokens.rb +10 -0
  104. data/sample-apps/trello-integration-app/db/migrate/20200624132336_create_trello_tokens.rb +8 -0
  105. data/sample-apps/trello-integration-app/db/migrate/20200624132337_create_deal_associations.rb +8 -0
  106. data/sample-apps/trello-integration-app/db/migrate/20200702130530_create_extension_cards.rb +8 -0
  107. data/sample-apps/trello-integration-app/db/migrate/20200715143913_create_mappings.rb +12 -0
  108. data/sample-apps/trello-integration-app/db/migrate/20200727083656_create_webhooks.rb +9 -0
  109. data/sample-apps/trello-integration-app/db/schema.rb +52 -0
  110. data/sample-apps/trello-integration-app/db/seeds.rb +7 -0
  111. data/sample-apps/trello-integration-app/docker-compose.yml +41 -0
  112. data/sample-apps/trello-integration-app/docker-entrypoint.sh +8 -0
  113. data/sample-apps/trello-integration-app/lib/assets/.keep +0 -0
  114. data/sample-apps/trello-integration-app/lib/middlewares/trello_payload_params_handler.rb +18 -0
  115. data/sample-apps/trello-integration-app/lib/tasks/.keep +0 -0
  116. data/sample-apps/trello-integration-app/log/.keep +0 -0
  117. data/sample-apps/trello-integration-app/package.json +5 -0
  118. data/sample-apps/trello-integration-app/public/404.html +67 -0
  119. data/sample-apps/trello-integration-app/public/422.html +67 -0
  120. data/sample-apps/trello-integration-app/public/500.html +66 -0
  121. data/sample-apps/trello-integration-app/public/favicon.ico +0 -0
  122. data/sample-apps/trello-integration-app/public/robots.txt +1 -0
  123. data/sample-apps/trello-integration-app/tmp/.keep +0 -0
  124. metadata +218 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2d3361839078c621bd46918f5dc69ab39a9dc1a58fd722caad0c54d156acf47
4
- data.tar.gz: c33dc9df40a22d7cac9d57123ee958cea7c94b8ff3d86919d91f0a1ab292c72f
3
+ metadata.gz: 5266ce36f644f0e644ada772268c5a70cdee354d8ff8eb98c2142f2e7e694f71
4
+ data.tar.gz: 5ca6a09bc90e877b68388d75f26febfd808fdafb5954f14bc33ba2d078ea2297
5
5
  SHA512:
6
- metadata.gz: 18e51369063f112c0f90cfd8891acd3e77d230be86d7a31de48fc6e88bdbecc27f5d5466d4bfc2e31fc9bcc8fe4f5064a6314903cb5f66fb96ef06743992ed5f
7
- data.tar.gz: 8bb35baedcf6916e0f730385286d4593c79a40e4c561b2fab71311f39cbb263c8842f1db8702471fe1be0aa1f71d429fc66b86494ea0424df3b07a90e220afb4
6
+ metadata.gz: b055a5900c6b062f2184a0996491e5c2396c723140f020dc78961ec73ef62d14008faff77e354fa119d72c8ececa7edfb7549a515b42fcda70ef68b834afe3b0
7
+ data.tar.gz: deb9789cf69b017d0f52d2a103e8789fc928b24f08e584a3fcd2e22c4210b7c7e9da65a1ed24705653fe6f6f5230b5e731c63bd7e1ed605e7a03137c73b6a8eb
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [7.1.0] - 2020-08-17
9
+
10
+ - Add Trello integration sample app
11
+
8
12
  ## [7.0.0] - 2020-08-04
9
13
 
10
14
  - Regenerate clients
@@ -1,3 +1,3 @@
1
1
  module Hubspot
2
- VERSION = '7.0.0'
2
+ VERSION = '7.1.0'
3
3
  end
@@ -0,0 +1,7 @@
1
+ HUBSPOT_CLIENT_ID=
2
+ HUBSPOT_CLIENT_SECRET=
3
+ HUBSPOT_DEVELOPER_API_KEY=
4
+ HUBSPOT_APPLICATION_ID=
5
+
6
+ TRELLO_KEY=
7
+ TRELLO_SECRET=
@@ -0,0 +1,35 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore uploaded files in development
21
+ /storage/*
22
+ !/storage/.keep
23
+
24
+ /node_modules
25
+ /yarn-error.log
26
+
27
+ /public/assets
28
+ .byebug_history
29
+
30
+ # Ignore master key for decrypting credentials and more.
31
+ /config/master.key
32
+
33
+ .rubocop.yml
34
+ .env
35
+ .env.test
@@ -0,0 +1 @@
1
+ --require spec_helper
@@ -0,0 +1,22 @@
1
+ FROM ruby:2.6.3
2
+ RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
3
+ RUN mkdir /hubspot-api-client
4
+
5
+ COPY ./lib /hubspot-api-client/lib
6
+ COPY ./sample-apps /hubspot-api-client/sample-apps
7
+ COPY ./spec /hubspot-api-client/spec
8
+ COPY ./Gemfile /hubspot-api-client/Gemfile
9
+ COPY ./Gemfile.lock /hubspot-api-client/Gemfile.lock
10
+ COPY ./hubspot-api-client.gemspec /hubspot-api-client/hubspot-api-client.gemspec
11
+
12
+ WORKDIR /hubspot-api-client/sample-apps/trello-integration-app
13
+ RUN bundle install
14
+
15
+ # Add a script to be executed every time the container starts.
16
+ COPY ./sample-apps/trello-integration-app/docker-entrypoint.sh /usr/bin/
17
+ RUN chmod +x /usr/bin/docker-entrypoint.sh
18
+ ENTRYPOINT ["docker-entrypoint.sh"]
19
+ EXPOSE 3000
20
+
21
+ # Start the main process.
22
+ CMD ["rails", "server", "-b", "0.0.0.0"]
@@ -0,0 +1,38 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ ruby '2.6.3'
5
+
6
+ gem 'rails', '~> 5.2.3'
7
+ gem 'sqlite3'
8
+ gem 'puma', '~> 4.3'
9
+ gem 'sass-rails', '~> 5.0'
10
+ gem 'uglifier', '>= 1.3.0'
11
+ gem 'turbolinks', '~> 5'
12
+ gem 'jbuilder', '~> 2.5'
13
+ gem 'ruby-trello'
14
+ gem 'omniauth-trello'
15
+ gem 'mysql2', '~> 0.5.2'
16
+ gem 'jquery-rails'
17
+ gem 'httparty', '0.17.3'
18
+
19
+ gem 'hubspot-api-client', path: '../../'
20
+
21
+ group :development, :test do
22
+ gem 'dotenv-rails', require: 'dotenv/rails-now'
23
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
24
+ gem 'rspec-rails', '~> 3.5'
25
+ gem 'capybara'
26
+ gem 'capybara-mechanize', '~> 1.11'
27
+ gem 'selenium-webdriver', '3.4.3'
28
+ gem 'geckodriver-helper'
29
+ gem 'pry'
30
+ gem 'pry-byebug'
31
+ end
32
+
33
+ group :development do
34
+ gem 'web-console', '>= 3.3.0'
35
+ gem 'listen', '>= 3.0.5', '< 3.2'
36
+ end
37
+
38
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
@@ -0,0 +1,314 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ hubspot-api-client (7.0.0)
5
+ faraday (>= 0.14.0)
6
+ json (~> 2.1, >= 2.1.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.3)
12
+ actionpack (= 5.2.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.3)
16
+ actionpack (= 5.2.3)
17
+ actionview (= 5.2.3)
18
+ activejob (= 5.2.3)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.3)
22
+ actionview (= 5.2.3)
23
+ activesupport (= 5.2.3)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.3)
29
+ activesupport (= 5.2.3)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.2.3)
35
+ activesupport (= 5.2.3)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.3)
38
+ activesupport (= 5.2.3)
39
+ activerecord (5.2.3)
40
+ activemodel (= 5.2.3)
41
+ activesupport (= 5.2.3)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.3)
44
+ actionpack (= 5.2.3)
45
+ activerecord (= 5.2.3)
46
+ marcel (~> 0.3.1)
47
+ activesupport (5.2.3)
48
+ concurrent-ruby (~> 1.0, >= 1.0.2)
49
+ i18n (>= 0.7, < 2)
50
+ minitest (~> 5.1)
51
+ tzinfo (~> 1.1)
52
+ addressable (2.7.0)
53
+ public_suffix (>= 2.0.2, < 5.0)
54
+ archive-zip (0.12.0)
55
+ io-like (~> 0.3.0)
56
+ arel (9.0.0)
57
+ bindex (0.8.1)
58
+ builder (3.2.3)
59
+ byebug (11.0.1)
60
+ capybara (3.29.0)
61
+ addressable
62
+ mini_mime (>= 0.1.3)
63
+ nokogiri (~> 1.8)
64
+ rack (>= 1.6.0)
65
+ rack-test (>= 0.6.3)
66
+ regexp_parser (~> 1.5)
67
+ xpath (~> 3.2)
68
+ capybara-mechanize (1.11.0)
69
+ capybara (>= 2.4.4, < 4)
70
+ mechanize (~> 2.7.0)
71
+ childprocess (0.9.0)
72
+ ffi (~> 1.0, >= 1.0.11)
73
+ coderay (1.1.2)
74
+ concurrent-ruby (1.1.5)
75
+ connection_pool (2.2.2)
76
+ crass (1.0.5)
77
+ diff-lcs (1.3)
78
+ domain_name (0.5.20190701)
79
+ unf (>= 0.0.5, < 1.0.0)
80
+ dotenv (2.7.5)
81
+ dotenv-rails (2.7.5)
82
+ dotenv (= 2.7.5)
83
+ railties (>= 3.2, < 6.1)
84
+ erubi (1.9.0)
85
+ execjs (2.7.0)
86
+ faraday (1.0.1)
87
+ multipart-post (>= 1.2, < 3)
88
+ ffi (1.11.1)
89
+ geckodriver-helper (0.24.0)
90
+ archive-zip (~> 0.7)
91
+ globalid (0.4.2)
92
+ activesupport (>= 4.2.0)
93
+ hashie (4.1.0)
94
+ http-accept (1.7.0)
95
+ http-cookie (1.0.3)
96
+ domain_name (~> 0.5)
97
+ httparty (0.17.3)
98
+ mime-types (~> 3.0)
99
+ multi_xml (>= 0.5.2)
100
+ i18n (1.7.0)
101
+ concurrent-ruby (~> 1.0)
102
+ io-like (0.3.0)
103
+ jbuilder (2.9.1)
104
+ activesupport (>= 4.2.0)
105
+ jquery-rails (4.4.0)
106
+ rails-dom-testing (>= 1, < 3)
107
+ railties (>= 4.2.0)
108
+ thor (>= 0.14, < 2.0)
109
+ json (2.3.0)
110
+ listen (3.1.5)
111
+ rb-fsevent (~> 0.9, >= 0.9.4)
112
+ rb-inotify (~> 0.9, >= 0.9.7)
113
+ ruby_dep (~> 1.2)
114
+ loofah (2.3.1)
115
+ crass (~> 1.0.2)
116
+ nokogiri (>= 1.5.9)
117
+ mail (2.7.1)
118
+ mini_mime (>= 0.1.1)
119
+ marcel (0.3.3)
120
+ mimemagic (~> 0.3.2)
121
+ mechanize (2.7.6)
122
+ domain_name (~> 0.5, >= 0.5.1)
123
+ http-cookie (~> 1.0)
124
+ mime-types (>= 1.17.2)
125
+ net-http-digest_auth (~> 1.1, >= 1.1.1)
126
+ net-http-persistent (>= 2.5.2)
127
+ nokogiri (~> 1.6)
128
+ ntlm-http (~> 0.1, >= 0.1.1)
129
+ webrobots (>= 0.0.9, < 0.2)
130
+ method_source (0.9.2)
131
+ mime-types (3.3)
132
+ mime-types-data (~> 3.2015)
133
+ mime-types-data (3.2019.1009)
134
+ mimemagic (0.3.3)
135
+ mini_mime (1.0.2)
136
+ mini_portile2 (2.4.0)
137
+ minitest (5.13.0)
138
+ multi_json (1.14.1)
139
+ multi_xml (0.6.0)
140
+ multipart-post (2.1.1)
141
+ mysql2 (0.5.3)
142
+ net-http-digest_auth (1.4.1)
143
+ net-http-persistent (3.1.0)
144
+ connection_pool (~> 2.2)
145
+ netrc (0.11.0)
146
+ nio4r (2.5.2)
147
+ nokogiri (1.10.5)
148
+ mini_portile2 (~> 2.4.0)
149
+ ntlm-http (0.1.1)
150
+ oauth (0.5.4)
151
+ omniauth (1.9.1)
152
+ hashie (>= 3.4.6)
153
+ rack (>= 1.6.2, < 3)
154
+ omniauth-oauth (1.1.0)
155
+ oauth
156
+ omniauth (~> 1.0)
157
+ omniauth-trello (0.0.4)
158
+ multi_json (~> 1.5)
159
+ oauth (~> 0.4)
160
+ omniauth (~> 1.0)
161
+ omniauth-oauth (~> 1.0)
162
+ pry (0.12.2)
163
+ coderay (~> 1.1.0)
164
+ method_source (~> 0.9.0)
165
+ pry-byebug (3.7.0)
166
+ byebug (~> 11.0)
167
+ pry (~> 0.10)
168
+ public_suffix (4.0.1)
169
+ puma (4.3.1)
170
+ nio4r (~> 2.0)
171
+ rack (2.2.2)
172
+ rack-test (1.1.0)
173
+ rack (>= 1.0, < 3)
174
+ rails (5.2.3)
175
+ actioncable (= 5.2.3)
176
+ actionmailer (= 5.2.3)
177
+ actionpack (= 5.2.3)
178
+ actionview (= 5.2.3)
179
+ activejob (= 5.2.3)
180
+ activemodel (= 5.2.3)
181
+ activerecord (= 5.2.3)
182
+ activestorage (= 5.2.3)
183
+ activesupport (= 5.2.3)
184
+ bundler (>= 1.3.0)
185
+ railties (= 5.2.3)
186
+ sprockets-rails (>= 2.0.0)
187
+ rails-dom-testing (2.0.3)
188
+ activesupport (>= 4.2.0)
189
+ nokogiri (>= 1.6)
190
+ rails-html-sanitizer (1.3.0)
191
+ loofah (~> 2.3)
192
+ railties (5.2.3)
193
+ actionpack (= 5.2.3)
194
+ activesupport (= 5.2.3)
195
+ method_source
196
+ rake (>= 0.8.7)
197
+ thor (>= 0.19.0, < 2.0)
198
+ rake (13.0.0)
199
+ rb-fsevent (0.10.3)
200
+ rb-inotify (0.10.0)
201
+ ffi (~> 1.0)
202
+ regexp_parser (1.6.0)
203
+ rest-client (2.1.0)
204
+ http-accept (>= 1.7.0, < 2.0)
205
+ http-cookie (>= 1.0.2, < 2.0)
206
+ mime-types (>= 1.16, < 4.0)
207
+ netrc (~> 0.8)
208
+ rspec-core (3.9.0)
209
+ rspec-support (~> 3.9.0)
210
+ rspec-expectations (3.9.0)
211
+ diff-lcs (>= 1.2.0, < 2.0)
212
+ rspec-support (~> 3.9.0)
213
+ rspec-mocks (3.9.0)
214
+ diff-lcs (>= 1.2.0, < 2.0)
215
+ rspec-support (~> 3.9.0)
216
+ rspec-rails (3.9.0)
217
+ actionpack (>= 3.0)
218
+ activesupport (>= 3.0)
219
+ railties (>= 3.0)
220
+ rspec-core (~> 3.9.0)
221
+ rspec-expectations (~> 3.9.0)
222
+ rspec-mocks (~> 3.9.0)
223
+ rspec-support (~> 3.9.0)
224
+ rspec-support (3.9.0)
225
+ ruby-trello (2.3.0)
226
+ activemodel (>= 3.2.0)
227
+ addressable (~> 2.3)
228
+ json (>= 2.3.0)
229
+ oauth (>= 0.4.5)
230
+ rest-client (>= 1.8.0)
231
+ ruby_dep (1.5.0)
232
+ rubyzip (1.3.0)
233
+ sass (3.7.4)
234
+ sass-listen (~> 4.0.0)
235
+ sass-listen (4.0.0)
236
+ rb-fsevent (~> 0.9, >= 0.9.4)
237
+ rb-inotify (~> 0.9, >= 0.9.7)
238
+ sass-rails (5.1.0)
239
+ railties (>= 5.2.0)
240
+ sass (~> 3.1)
241
+ sprockets (>= 2.8, < 4.0)
242
+ sprockets-rails (>= 2.0, < 4.0)
243
+ tilt (>= 1.1, < 3)
244
+ selenium-webdriver (3.4.3)
245
+ childprocess (~> 0.5)
246
+ rubyzip (~> 1.0)
247
+ sprockets (3.7.2)
248
+ concurrent-ruby (~> 1.0)
249
+ rack (> 1, < 3)
250
+ sprockets-rails (3.2.1)
251
+ actionpack (>= 4.0)
252
+ activesupport (>= 4.0)
253
+ sprockets (>= 3.0.0)
254
+ sqlite3 (1.4.1)
255
+ thor (0.20.3)
256
+ thread_safe (0.3.6)
257
+ tilt (2.0.10)
258
+ turbolinks (5.2.1)
259
+ turbolinks-source (~> 5.2)
260
+ turbolinks-source (5.2.0)
261
+ tzinfo (1.2.5)
262
+ thread_safe (~> 0.1)
263
+ uglifier (4.2.0)
264
+ execjs (>= 0.3.0, < 3)
265
+ unf (0.1.4)
266
+ unf_ext
267
+ unf_ext (0.0.7.6)
268
+ web-console (3.7.0)
269
+ actionview (>= 5.0)
270
+ activemodel (>= 5.0)
271
+ bindex (>= 0.4.0)
272
+ railties (>= 5.0)
273
+ webrobots (0.1.2)
274
+ websocket-driver (0.7.1)
275
+ websocket-extensions (>= 0.1.0)
276
+ websocket-extensions (0.1.4)
277
+ xpath (3.2.0)
278
+ nokogiri (~> 1.8)
279
+
280
+ PLATFORMS
281
+ ruby
282
+
283
+ DEPENDENCIES
284
+ byebug
285
+ capybara
286
+ capybara-mechanize (~> 1.11)
287
+ dotenv-rails
288
+ geckodriver-helper
289
+ httparty (= 0.17.3)
290
+ hubspot-api-client!
291
+ jbuilder (~> 2.5)
292
+ jquery-rails
293
+ listen (>= 3.0.5, < 3.2)
294
+ mysql2 (~> 0.5.2)
295
+ omniauth-trello
296
+ pry
297
+ pry-byebug
298
+ puma (~> 4.3)
299
+ rails (~> 5.2.3)
300
+ rspec-rails (~> 3.5)
301
+ ruby-trello
302
+ sass-rails (~> 5.0)
303
+ selenium-webdriver (= 3.4.3)
304
+ sqlite3
305
+ turbolinks (~> 5)
306
+ tzinfo-data
307
+ uglifier (>= 1.3.0)
308
+ web-console (>= 3.3.0)
309
+
310
+ RUBY VERSION
311
+ ruby 2.6.3p62
312
+
313
+ BUNDLED WITH
314
+ 1.17.3