flatiron-rails 0.0.8 → 0.0.9
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 +4 -4
- data/templates/flatiron.rb +41 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5021386814577761efbede4b74043d615d2396db
|
4
|
+
data.tar.gz: 4cc586e7b319a3e0487e619bc03a2b67a00ecc83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86b41a7565b436b5f6a0a0f1df501063432e694400e42071df1977e8e29fa939255b951abc5658155020d4535a8992146340e2aac3ee6cfae1b12d30f109d39c
|
7
|
+
data.tar.gz: fa7bff143d58c65d265575edf5d6e0fee849e1411a22a667050de3ca82a78e451cd2cbc93446c976aa7340b9c1ee5df7556246cab3c93ae275c7749c984f5429
|
data/templates/flatiron.rb
CHANGED
@@ -106,6 +106,45 @@ run 'rm README.rdoc'
|
|
106
106
|
# Add template data to README.md
|
107
107
|
file 'README.md', <<-README.strip_heredoc.chomp
|
108
108
|
# #{app_name.split(/_|-/).map(&:capitalize).join(' ')}
|
109
|
+
|
110
|
+
## Description
|
111
|
+
|
112
|
+
Add a short description of your app.
|
113
|
+
|
114
|
+
## Screenshots
|
115
|
+
|
116
|
+
Add some spiffy screenshots of your app here.
|
117
|
+
|
118
|
+
## Background
|
119
|
+
|
120
|
+
Why did you want to make this app? What was your development process
|
121
|
+
like?
|
122
|
+
|
123
|
+
## Features
|
124
|
+
|
125
|
+
Bullet point some of the key features of your app here.
|
126
|
+
|
127
|
+
## Usage
|
128
|
+
|
129
|
+
How do users use your app?
|
130
|
+
|
131
|
+
## Development/Contribution
|
132
|
+
|
133
|
+
Explain how people can contribute to your app. How should they write tests?
|
134
|
+
Any things in particular you'd like to see in pull requests?
|
135
|
+
|
136
|
+
## Future
|
137
|
+
|
138
|
+
What features are you currently working on? Only mention things that you
|
139
|
+
actually are implementing. No pie-in-the-sky-never-gonna-happen stuff.
|
140
|
+
|
141
|
+
## Author
|
142
|
+
|
143
|
+
Link to your blog, twitter, etc!
|
144
|
+
|
145
|
+
## License
|
146
|
+
|
147
|
+
My Spiffy App is MIT Licensed. See LICENSE for details.
|
109
148
|
README
|
110
149
|
|
111
150
|
# Add LICENSE
|
@@ -327,7 +366,7 @@ File.open("app/assets/javascripts/application.js", "r+") do |f|
|
|
327
366
|
end
|
328
367
|
|
329
368
|
# Add STACK description file
|
330
|
-
file 'STACK', <<-STACK.strip_heredoc.chomp
|
369
|
+
file 'STACK.md', <<-STACK.strip_heredoc.chomp
|
331
370
|
This generator has set up the following stack:
|
332
371
|
|
333
372
|
1. Testing
|
@@ -349,6 +388,7 @@ file 'STACK', <<-STACK.strip_heredoc.chomp
|
|
349
388
|
* Add your name and the year
|
350
389
|
2. A README.md file has been started for you
|
351
390
|
* Add relavent information and screenshots for your app
|
391
|
+
* There is a basic template you can follow, but make it your own
|
352
392
|
3. Google Analytics is set up to track your app
|
353
393
|
* Set up an application on Google Analytics
|
354
394
|
* You will need to add your analytics tracking code to `config/secrets.yml`
|