raygun 0.9.0.pre → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -2
- data/README.md +9 -8
- data/lib/raygun/version.rb +1 -1
- metadata +4 -5
- data/cleanup.sh +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4af228a652b962b65192cdef9f192c1621aeecc
|
4
|
+
data.tar.gz: ca3d0276ea7960e2f93e934f168e2e2ea6747044
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d50c542725e88e009e71e9eba66bec7cf0fcff6c5f957dd5eb5c6cc078c349f8c3e5ebf41634d1743bcc4ae8de8018370915424784b9364e70c82bdcbe2801
|
7
|
+
data.tar.gz: 3247d96a9422dc9007a2f126eab4bc6cb46e459493ed7e640a9c9ed23da0cf74ce54adda72fb43c091ffe6db68191b010a25f4f8738d90758d660eb5db2bac4d
|
data/CHANGES.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## 0.9.0 [2013-]
|
3
|
+
## 0.9.0 [2013-11-11]
|
4
4
|
|
5
|
-
|
5
|
+
Note: All future changes to the application prototype (sample app) will be made in the [raygun-rails4](https://github.com/carbonfive/raygun-rails4) repo.
|
6
|
+
|
7
|
+
* Raygun no longer bundles the application prototype, it's fetched from github (https://github.com/carbonfive/raygun-rails4) instead (#112).
|
6
8
|
* Drop support for Rails 3 (#116).
|
7
9
|
* Better bootstrap 3 support (#115, thanks @felafelwaffle!).
|
8
10
|
|
data/README.md
CHANGED
@@ -7,7 +7,8 @@
|
|
7
7
|
Rails application generator that builds a new project skeleton configured with Carbon Five preferences and
|
8
8
|
best practices baked right in. Spend less time configuring and more building cool features.
|
9
9
|
|
10
|
-
Raygun generates Rails 4 projects.
|
10
|
+
Raygun generates Rails 4 projects by copying this [sample app](https://github.com/carbonfive/raygun-rails4)
|
11
|
+
and massaging it gently into shape.
|
11
12
|
|
12
13
|
Major tools/libraries:
|
13
14
|
|
@@ -21,7 +22,7 @@ Major tools/libraries:
|
|
21
22
|
* Jasmine
|
22
23
|
* SimpleCov
|
23
24
|
* Guard (rspec, jasmine, livereload)
|
24
|
-
* And many tweaks, patterns and common recipes.
|
25
|
+
* And many tweaks, patterns and common recipes (see [raygun-rails4](https://github.com/carbonfive/raygun-rails4) for all the details).
|
25
26
|
|
26
27
|
Raygun includes generator templates for controllers, views, and specs so that generated code follows best
|
27
28
|
practices. For example, view generation produces bootstrap compatible markup and rspec specs use factory
|
@@ -73,16 +74,16 @@ covered (see above).
|
|
73
74
|
|
74
75
|
# Fire up the app and open it in a browser
|
75
76
|
$ foreman start
|
76
|
-
$ open http://
|
77
|
+
$ open http://localhost:3000
|
77
78
|
|
78
79
|
## Internal Mechanics
|
79
80
|
|
80
|
-
Raygun
|
81
|
-
|
82
|
-
|
81
|
+
Raygun fetches the latest tag from the [carbonfive/raygun-rails4](https://github.com/carbonfive/raygun-rails4)
|
82
|
+
repo, unless it already has it cached in ~/.raygun, extracts the contents of the tarball, and runs a series of
|
83
|
+
search-and-replaces on the code to customize it accordingly.
|
83
84
|
|
84
|
-
This approach is fast, simple, and makes raygun developement very easy. Make changes to
|
85
|
-
|
85
|
+
This approach is fast, simple, and makes raygun developement very easy. Make changes to the application
|
86
|
+
prototype (which is a valid rails app) and tag them when they should be used for new applications.
|
86
87
|
|
87
88
|
## Contributing
|
88
89
|
|
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: 0.9.0
|
4
|
+
version: 0.9.0
|
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: 2013-11-
|
13
|
+
date: 2013-11-12 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: Carbon Five Rails application generator
|
16
16
|
email:
|
@@ -29,7 +29,6 @@ files:
|
|
29
29
|
- README.md
|
30
30
|
- Rakefile
|
31
31
|
- bin/raygun
|
32
|
-
- cleanup.sh
|
33
32
|
- lib/colorize.rb
|
34
33
|
- lib/raygun/raygun.rb
|
35
34
|
- lib/raygun/version.rb
|
@@ -49,9 +48,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
48
|
version: '0'
|
50
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
|
-
- - '
|
51
|
+
- - '>='
|
53
52
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
53
|
+
version: '0'
|
55
54
|
requirements: []
|
56
55
|
rubyforge_project:
|
57
56
|
rubygems_version: 2.0.3
|
data/cleanup.sh
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
# All git ignored files: git ls-files --others -i --exclude-standard
|
4
|
-
|
5
|
-
git clean -df
|
6
|
-
git checkout rails_40/config/routes.rb app_prototype/db/schema.rb
|
7
|
-
|
8
|
-
find . -name ".DS_Store" -exec rm -f {} \;
|
9
|
-
|
10
|
-
rm -rfv rails_40/.DS_Store
|
11
|
-
rm -rfv rails_40/log/*
|
12
|
-
rm -rfv rails_40/tmp/*
|
13
|
-
rm -rfv rails_40/coverage
|