raygun 1.0.3 → 1.0.4

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
- SHA1:
3
- metadata.gz: 065ecc2e84bd97c90297b39a7619a0a6ca2aeb3e
4
- data.tar.gz: cb6eb42d11c58ffff33c9a46b4e786a77b16875b
2
+ SHA256:
3
+ metadata.gz: 6e084b27460032eefecb4daac7fda0290bdd7a81146031e6e449e64e6f21ff2c
4
+ data.tar.gz: 3642729949a140b21817ee8a9f406458d83d00c4a3130da38c1503f0dd9e1c04
5
5
  SHA512:
6
- metadata.gz: 37cf514bd395889660bb53a7c60e6f9c706e13609a762be7b1382228f09680021ef52423986e3d30e518116c7334c2a34327fa14743cc6147dc2995babf544ce
7
- data.tar.gz: 6edf23596a25b0b12aa6cab27557dae283b03ca67a2038e61370b2a2b25c2c4cd71b73698b14dda5b1cda7e26a82d44571787e7d7c1c079868eb7cabfe345b70
6
+ metadata.gz: cc05b65d10b93a5ee1e8d2883764e0cad8e26e0d4ee3ee5e55e1429d74cf4dcfacbde2c918c5827edfdf08203947aa8e62e4b1f3d1b33dc3fe8eb95e27bc6e0c
7
+ data.tar.gz: 81fadf36b23b75a787ab94d8296189e539a186e9afd939d4610e98f292889a5ace35821b00581cd8b3e53ea866ecb35f7aa00e0c258709b491679ba2177cec2a
data/CHANGES.md CHANGED
@@ -3,6 +3,10 @@
3
3
  **Note:** Don't let the apparent lack of activity here scare you away. Almost all changes are captured in the
4
4
  prototype repo (see [raygun-rails](https://github.com/carbonfive/raygun-rails)), and it's kept pretty well up to date.
5
5
 
6
+ ## 1.0.4 [2017-11-28]
7
+
8
+ * Tweak instructions: use `heroku local` instead of `foreman s` (#138, thanks @mattbrictson)
9
+
6
10
  ## 1.0.3 [2017-10-25]
7
11
 
8
12
  * Add ability to pull template repository by branch name (#137, thanks @bunnymatic!).
data/README.md CHANGED
@@ -19,11 +19,12 @@ Major tools/libraries:
19
19
  * Slim
20
20
  * Sass
21
21
  * Bootstrap
22
- * RSpec
22
+ * RSpec and Capybara
23
23
  * Factory Bot
24
24
  * SimpleCov
25
25
  * Guard (rspec, livereload)
26
- * And many tweaks, patterns and common recipes (see [raygun-rails](https://github.com/carbonfive/raygun-rails) for all the details).
26
+ * And many tweaks, patterns and common recipes (see [raygun-rails](https://github.com/carbonfive/raygun-rails) for all
27
+ the details).
27
28
 
28
29
  Raygun includes generator templates for controllers, views, and specs so that generated code follows best
29
30
  practices. For example, view generation produces bootstrap compatible markup and rspec specs use factory
@@ -64,13 +65,13 @@ Once your project is baked out, you can easily kick the wheels. Be sure that you
64
65
  covered (see above).
65
66
 
66
67
  $ cd your-project
67
- $ ./bin/setup
68
+ $ bin/setup
68
69
 
69
70
  # Run the specs, they should all pass
70
- $ rake
71
+ $ bin/rake
71
72
 
72
73
  # Fire up the app and open it in a browser
73
- $ foreman start
74
+ $ heroku local
74
75
  $ open http://localhost:3000
75
76
 
76
77
  ## Using a Custom Project Template
@@ -82,7 +83,7 @@ If you invoke raygun with the `-p` option, you can specify your own github repos
82
83
 
83
84
  $ raygun -p githubid/repo your-project
84
85
 
85
- Or
86
+ Or
86
87
 
87
88
  $ raygun -p githubid/repo your-project#new-branch-name
88
89
 
@@ -184,13 +184,13 @@ module Raygun
184
184
  puts ""
185
185
  puts "# Install updated dependencies and prepare the database".colorize(:light_green)
186
186
  puts "$".colorize(:blue) + " cd #{target_dir}".colorize(:light_blue)
187
- puts "$".colorize(:blue) + " ./bin/setup".colorize(:light_blue)
187
+ puts "$".colorize(:blue) + " bin/setup".colorize(:light_blue)
188
188
  puts ""
189
189
  puts "# Run the specs (they should all pass)".colorize(:light_green)
190
- puts "$".colorize(:blue) + " rake".colorize(:light_blue)
190
+ puts "$".colorize(:blue) + " bin/rake".colorize(:light_blue)
191
191
  puts ""
192
192
  puts "# Run the app and check things out".colorize(:light_green)
193
- puts "$".colorize(:blue) + " foreman start".colorize(:light_blue)
193
+ puts "$".colorize(:blue) + " heroku local".colorize(:light_blue)
194
194
  puts "$".colorize(:blue) + " open http://localhost:3000".colorize(:light_blue)
195
195
  puts ""
196
196
  puts "Enjoy your Carbon Five flavored Rails application!".colorize(:yellow)
@@ -1,3 +1,3 @@
1
1
  module Raygun
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Nelson
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-10-25 00:00:00.000000000 Z
13
+ date: 2017-11-28 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: Carbon Five Rails application generator
16
16
  email:
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
55
  version: '0'
56
56
  requirements: []
57
57
  rubyforge_project:
58
- rubygems_version: 2.6.13
58
+ rubygems_version: 2.7.1
59
59
  signing_key:
60
60
  specification_version: 4
61
61
  summary: Generates and customizes Rails applications with Carbon Five best practices