boppers 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: 9a7813720dba24c3e0b54524fde1d85e512fded3
4
- data.tar.gz: 3a7437f2046dc350bc2e7b5d230adbc792387247
3
+ metadata.gz: aa7603aeba00e7f11cba75e12f37cca989829f76
4
+ data.tar.gz: 414a3d4ead4c1e10ff9529e698db061b28eb7cbb
5
5
  SHA512:
6
- metadata.gz: 5627c872fd83adf4815e8a3e58f80c279cb505ec59b40eaf8cfe2b5864f26d3da2d7653aa5f70286f6c6395b2860635550a0cd88fa435f90313e24dfbe3d0bb0
7
- data.tar.gz: 8909d9fe48d32f0b2daf90b5f5ee18b7d691dc4f733248513e098858e2f252e9a828b2aaa35f54b419ea9c526ab23db0d4e4607bcec6e9238fdb597f05f392e1
6
+ metadata.gz: 47bead4a40ac0e6fa9a400e29a3063cc8f4d07b5bd41bb2289b284689f887aebbc12f210ad72aa912e6339c3ffcda12d6497c1f2632802ce53d98cf6b00b7917
7
+ data.tar.gz: 6c049868564e9c6b303ae86de396035ab01b72cc62b40503207e91bc376df08d8551a91d82aeb71e09a287957218c48efc2a10729f467bf0c8bf51ea2294797f
data/README.md CHANGED
@@ -276,6 +276,12 @@ If you're going to send e-mail notification, you'll need Sendgrid.
276
276
  heroku addons:create sendgrid:starter
277
277
  ```
278
278
 
279
+ You also need to set the buildpack:
280
+
281
+ ```
282
+ heroku buildpacks:set heroku/ruby
283
+ ```
284
+
279
285
  Make a commit and deploy to your Heroku account.
280
286
 
281
287
  ```
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- boppers (0.0.1)
4
+ boppers (0.0.2)
5
5
  aitch
6
6
  thor
7
7
 
@@ -15,6 +15,8 @@ module Boppers
15
15
  copy_file "gems.rb"
16
16
  copy_file "Procfile"
17
17
  copy_file "config/boppers.rb"
18
+ copy_file ".gitgnore"
19
+ copy_file ".env"
18
20
  end
19
21
 
20
22
  def run_commands
@@ -1 +1 @@
1
- worker: bundle exec boppers start --require config/boppers.rb
1
+ worker: bundle exec boppers start --require ./config/boppers.rb
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Boppers
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boppers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -179,10 +179,12 @@ files:
179
179
  - lib/boppers/cli.rb
180
180
  - lib/boppers/configuration.rb
181
181
  - lib/boppers/generator/app.rb
182
+ - lib/boppers/generator/app/.env
183
+ - lib/boppers/generator/app/.gitignore
184
+ - lib/boppers/generator/app/Gemfile
182
185
  - lib/boppers/generator/app/Procfile
183
186
  - lib/boppers/generator/app/app.json
184
187
  - lib/boppers/generator/app/config/boppers.rb
185
- - lib/boppers/generator/app/gems.rb
186
188
  - lib/boppers/generator/plugin.rb
187
189
  - lib/boppers/generator/plugin/.gitignore
188
190
  - lib/boppers/generator/plugin/.rubocop.yml