working-rails 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemspec +1 -0
- data/{README.md → README.rdoc} +8 -5
- data/lib/working-rails/version.rb +1 -1
- data/lib/working-rails.rb +1 -1
- metadata +19 -3
data/.gemspec
CHANGED
data/{README.md → README.rdoc}
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
= Working
|
2
2
|
|
3
3
|
Whoa!! ☈king's opinionated rig for Rails dev.
|
4
4
|
|
@@ -7,13 +7,14 @@ Whoa!! ☈king's opinionated rig for Rails dev.
|
|
7
7
|
- Plus the normally-odd ones (TODO: list these)
|
8
8
|
- Spork in effect for faster runs
|
9
9
|
- `charliesome/better_errors`, because they're better
|
10
|
+
- `evrone/quiet_assets`, because the asset requests are, generally, noise
|
10
11
|
- `pry-rails` for super-fast `show-routes`, etc.
|
11
12
|
|
12
|
-
|
13
|
+
== Example uses:
|
13
14
|
|
14
15
|
- https://github.com/rking/monkeynote
|
15
16
|
|
16
|
-
|
17
|
+
== Installation
|
17
18
|
|
18
19
|
Add this line to your application's Gemfile:
|
19
20
|
|
@@ -23,8 +24,10 @@ And then execute:
|
|
23
24
|
|
24
25
|
bundle
|
25
26
|
working-init # this tinkers with several files (verbosely)
|
26
|
-
# Note: the working-init-rails script is TODO
|
27
27
|
|
28
|
-
|
28
|
+
Note: the working-init-rails script is TODO. Basically you use
|
29
|
+
'working-rails/___' in a few places instead of 'working/___'
|
30
|
+
|
31
|
+
== TODO
|
29
32
|
|
30
33
|
Explain the parts.
|
data/lib/working-rails.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
require 'better_errors'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: working-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-02-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: working
|
@@ -59,6 +59,22 @@ dependencies:
|
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: quiet_assets
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
62
78
|
description: Whoa — ☈king's Rails rig
|
63
79
|
email:
|
64
80
|
- rking-working@sharpsaw.org
|
@@ -71,7 +87,7 @@ files:
|
|
71
87
|
- Gemfile
|
72
88
|
- Gemfile.lock
|
73
89
|
- LICENSE.txt
|
74
|
-
- README.
|
90
|
+
- README.rdoc
|
75
91
|
- Rakefile
|
76
92
|
- lib/working-rails.rb
|
77
93
|
- lib/working-rails/guard.rb
|