raygun 1.0.3 → 1.0.4
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/CHANGES.md +4 -0
- data/README.md +7 -6
- data/lib/raygun/raygun.rb +3 -3
- data/lib/raygun/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6e084b27460032eefecb4daac7fda0290bdd7a81146031e6e449e64e6f21ff2c
|
|
4
|
+
data.tar.gz: 3642729949a140b21817ee8a9f406458d83d00c4a3130da38c1503f0dd9e1c04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
-
$
|
|
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
|
-
$
|
|
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
|
|
data/lib/raygun/raygun.rb
CHANGED
|
@@ -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) + "
|
|
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) + "
|
|
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)
|
data/lib/raygun/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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
|