learn-generate 1.0.15 → 1.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/learn-generate.gemspec +1 -1
  3. data/lib/learn_generate/helpers/dot-learn-helper.rb +1 -1
  4. data/lib/learn_generate/ios_lab.rb +0 -6
  5. data/lib/learn_generate/template_maker.rb +11 -10
  6. data/lib/learn_generate/version.rb +1 -1
  7. data/lib/templates/activerecord/CONTRIBUTING.md +37 -0
  8. data/lib/templates/activerecord/LICENSE.md +7 -0
  9. data/lib/templates/activerecord/README.md +17 -5
  10. data/lib/templates/command-line/CONTRIBUTING.md +37 -0
  11. data/lib/templates/command-line/LICENSE.md +7 -0
  12. data/lib/templates/command-line/README.md +17 -5
  13. data/lib/templates/front-end/CONTRIBUTING.md +37 -0
  14. data/lib/templates/front-end/LICENSE.md +7 -0
  15. data/lib/templates/front-end/README.md +17 -5
  16. data/lib/templates/fundamental-ruby/CONTRIBUTING.md +37 -0
  17. data/lib/templates/fundamental-ruby/LICENSE.md +7 -0
  18. data/lib/templates/fundamental-ruby/README.md +17 -5
  19. data/lib/templates/ios/CONTRIBUTING.md +37 -0
  20. data/lib/templates/ios/LICENSE.md +7 -0
  21. data/lib/templates/js/CONTRIBUTING.md +37 -0
  22. data/lib/templates/js/LICENSE.md +7 -0
  23. data/lib/templates/js/README.md +17 -5
  24. data/lib/templates/kids/CONTRIBUTING.md +37 -0
  25. data/lib/templates/kids/LICENSE.md +7 -0
  26. data/lib/templates/kids/README.md +4 -6
  27. data/lib/templates/python/.python-version +1 -0
  28. data/lib/templates/python/CONTRIBUTING.md +37 -0
  29. data/lib/templates/python/LICENSE.md +7 -0
  30. data/lib/templates/python/README.md +16 -0
  31. data/lib/templates/python/sample.py +4 -0
  32. data/lib/templates/python/sample_test.py +13 -0
  33. data/lib/templates/rack/CONTRIBUTING.md +37 -0
  34. data/lib/templates/rack/LICENSE.md +7 -0
  35. data/lib/templates/rack/README.md +16 -5
  36. data/lib/templates/rake/CONTRIBUTING.md +37 -0
  37. data/lib/templates/rake/LICENSE.md +7 -0
  38. data/lib/templates/rake/README.md +16 -5
  39. data/lib/templates/readme/CONTRIBUTING.md +37 -0
  40. data/lib/templates/readme/LICENSE.md +7 -0
  41. data/lib/templates/readme/README.md +1 -8
  42. data/lib/templates/sinatra-classic-db/CONTRIBUTING.md +37 -0
  43. data/lib/templates/sinatra-classic-db/README.md +16 -5
  44. data/lib/templates/sinatra-classic/CONTRIBUTING.md +37 -0
  45. data/lib/templates/sinatra-classic/LICENSE.md +7 -0
  46. data/lib/templates/sinatra-classic/README.md +16 -5
  47. data/lib/templates/sinatra-mvc/CONTRIBUTING.md +37 -0
  48. data/lib/templates/sinatra-mvc/LICENSE.md +7 -0
  49. data/lib/templates/sinatra-mvc/README.md +16 -5
  50. data/lib/templates/sql/CONTRIBUTING.md +37 -0
  51. data/lib/templates/sql/LICENSE.md +7 -0
  52. data/lib/templates/sql/README.md +16 -5
  53. metadata +36 -4
  54. data/lib/templates/kids/.DS_Store +0 -0
@@ -0,0 +1,37 @@
1
+ # Contributing to Learn.co Curriculum
2
+
3
+ We're really exited that you're about to contribute to the [open curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co). If this is your first time contributing, please continue reading to learn how to make the most meaningful and useful impact possible.
4
+
5
+ ## Raising an Issue to Encourage a Contribution
6
+
7
+ If you notice a problem with the curriculum that you believe needs improvement
8
+ but you're unable to make the change yourself, you should raise a Github issue
9
+ containing a clear description of the problem. Include relevant snippets of
10
+ the content and/or screenshots if applicable. Curriculum owners regularly review
11
+ issue lists and your issue will be prioritized and addressed as appropriate.
12
+
13
+ ## Submitting a Pull Request to Suggest an Improvement
14
+
15
+ If you see an opportunity for improvement and can make the change yourself go
16
+ ahead and use a typical git workflow to make it happen:
17
+
18
+ * Fork this curriculum repository
19
+ * Make the change on your fork, with descriptive commits in the standard format
20
+ * Open a Pull Request against this repo
21
+
22
+ A curriculum owner will review your change and approve or comment on it in due
23
+ course.
24
+
25
+ # Why Contribute?
26
+
27
+ Curriculum on Learn is publicly and freely available under Learn's
28
+ [Educational Content License](https://learn.co/content-license). By
29
+ embracing an open-source contribution model, our goal is for the curriculum
30
+ on Learn to become, in time, the best educational content the world has
31
+ ever seen.
32
+
33
+ We need help from the community of Learners to maintain and improve the
34
+ educational content. Everything from fixing typos, to correcting
35
+ out-dated information, to improving exposition, to adding better examples,
36
+ to fixing tests—all contributions to making the curriculum more effective are
37
+ welcome.
@@ -0,0 +1,7 @@
1
+ #Learn.co Educational Content License
2
+
3
+ Copyright (c) 2015 Flatiron School, Inc
4
+
5
+ The Flatiron School, Inc. owns this Educational Content. However, the Flatiron School supports the development and availability of educational materials in the public domain. Therefore, the Flatiron School grants Users of the Flatiron Educational Content set forth in this repository certain rights to reuse, build upon and share such Educational Content subject to the terms of the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). You must read carefully the terms and conditions contained in the Educational Content License as such terms govern access to and use of the Educational Content.
6
+
7
+ Flatiron School is willing to allow you access to and use of the Educational Content only on the condition that you accept all of the terms and conditions contained in the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). By accessing and/or using the Educational Content, you are agreeing to all of the terms and conditions contained in the Educational Content License. If you do not agree to any or all of the terms of the Educational Content License, you are prohibited from accessing, reviewing or using in any way the Educational Content.
@@ -1,5 +1,16 @@
1
- ---
2
- tags:
3
- languages:
4
- resources:
5
- ---
1
+ ## Objectives
2
+
3
+ 1. Objective 1
4
+ 2. Objective 2
5
+
6
+ ## Instructions
7
+
8
+ Create make the tests pass Heroku lab. API Nokogiri guest speaker belongs_to RESTful binder.ply. Url Rails slack it to me. Asset pipeline Feelings Friday puts "woof" API open source.
9
+
10
+ Destroy now we can teach dogs to do anything link drop tables lab The Gucci bundle install. Associations def iterate infobesity Twitter. Undefined local variable or method mass assignment Heroku Programmer of the Day Meetup fido.bark. Internet create. Ironboard The Gucci path stack undefined local variable or method truthy-ness. Sqlite3 scooter blog posts DRY The Gucci cat. Truthy-ness bundle.
11
+
12
+ ### Part 1: Do Some Stuff
13
+
14
+ ## Resources
15
+
16
+ * [Stack Exchange](http://www.stackexchange.com) - [Some Question on Stack Exchange](http://www.stackexchange.com/questions/123)
@@ -0,0 +1,37 @@
1
+ # Contributing to Learn.co Curriculum
2
+
3
+ We're really exited that you're about to contribute to the [open curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co). If this is your first time contributing, please continue reading to learn how to make the most meaningful and useful impact possible.
4
+
5
+ ## Raising an Issue to Encourage a Contribution
6
+
7
+ If you notice a problem with the curriculum that you believe needs improvement
8
+ but you're unable to make the change yourself, you should raise a Github issue
9
+ containing a clear description of the problem. Include relevant snippets of
10
+ the content and/or screenshots if applicable. Curriculum owners regularly review
11
+ issue lists and your issue will be prioritized and addressed as appropriate.
12
+
13
+ ## Submitting a Pull Request to Suggest an Improvement
14
+
15
+ If you see an opportunity for improvement and can make the change yourself go
16
+ ahead and use a typical git workflow to make it happen:
17
+
18
+ * Fork this curriculum repository
19
+ * Make the change on your fork, with descriptive commits in the standard format
20
+ * Open a Pull Request against this repo
21
+
22
+ A curriculum owner will review your change and approve or comment on it in due
23
+ course.
24
+
25
+ # Why Contribute?
26
+
27
+ Curriculum on Learn is publicly and freely available under Learn's
28
+ [Educational Content License](https://learn.co/content-license). By
29
+ embracing an open-source contribution model, our goal is for the curriculum
30
+ on Learn to become, in time, the best educational content the world has
31
+ ever seen.
32
+
33
+ We need help from the community of Learners to maintain and improve the
34
+ educational content. Everything from fixing typos, to correcting
35
+ out-dated information, to improving exposition, to adding better examples,
36
+ to fixing tests—all contributions to making the curriculum more effective are
37
+ welcome.
@@ -0,0 +1,7 @@
1
+ #Learn.co Educational Content License
2
+
3
+ Copyright (c) 2015 Flatiron School, Inc
4
+
5
+ The Flatiron School, Inc. owns this Educational Content. However, the Flatiron School supports the development and availability of educational materials in the public domain. Therefore, the Flatiron School grants Users of the Flatiron Educational Content set forth in this repository certain rights to reuse, build upon and share such Educational Content subject to the terms of the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). You must read carefully the terms and conditions contained in the Educational Content License as such terms govern access to and use of the Educational Content.
6
+
7
+ Flatiron School is willing to allow you access to and use of the Educational Content only on the condition that you accept all of the terms and conditions contained in the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). By accessing and/or using the Educational Content, you are agreeing to all of the terms and conditions contained in the Educational Content License. If you do not agree to any or all of the terms of the Educational Content License, you are prohibited from accessing, reviewing or using in any way the Educational Content.
@@ -1,5 +1,16 @@
1
- ---
2
- tags:
3
- languages:
4
- resources:
5
- ---
1
+ ## Objectives
2
+
3
+ 1. Objective 1
4
+ 2. Objective 2
5
+
6
+ ## Instructions
7
+
8
+ Create make the tests pass Heroku lab. API Nokogiri guest speaker belongs_to RESTful binder.ply. Url Rails slack it to me. Asset pipeline Feelings Friday puts "woof" API open source.
9
+
10
+ Destroy now we can teach dogs to do anything link drop tables lab The Gucci bundle install. Associations def iterate infobesity Twitter. Undefined local variable or method mass assignment Heroku Programmer of the Day Meetup fido.bark. Internet create. Ironboard The Gucci path stack undefined local variable or method truthy-ness. Sqlite3 scooter blog posts DRY The Gucci cat. Truthy-ness bundle.
11
+
12
+ ### Part 1: Do Some Stuff
13
+
14
+ ## Resources
15
+
16
+ * [Stack Exchange](http://www.stackexchange.com) - [Some Question on Stack Exchange](http://www.stackexchange.com/questions/123)
@@ -0,0 +1,37 @@
1
+ # Contributing to Learn.co Curriculum
2
+
3
+ We're really exited that you're about to contribute to the [open curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co). If this is your first time contributing, please continue reading to learn how to make the most meaningful and useful impact possible.
4
+
5
+ ## Raising an Issue to Encourage a Contribution
6
+
7
+ If you notice a problem with the curriculum that you believe needs improvement
8
+ but you're unable to make the change yourself, you should raise a Github issue
9
+ containing a clear description of the problem. Include relevant snippets of
10
+ the content and/or screenshots if applicable. Curriculum owners regularly review
11
+ issue lists and your issue will be prioritized and addressed as appropriate.
12
+
13
+ ## Submitting a Pull Request to Suggest an Improvement
14
+
15
+ If you see an opportunity for improvement and can make the change yourself go
16
+ ahead and use a typical git workflow to make it happen:
17
+
18
+ * Fork this curriculum repository
19
+ * Make the change on your fork, with descriptive commits in the standard format
20
+ * Open a Pull Request against this repo
21
+
22
+ A curriculum owner will review your change and approve or comment on it in due
23
+ course.
24
+
25
+ # Why Contribute?
26
+
27
+ Curriculum on Learn is publicly and freely available under Learn's
28
+ [Educational Content License](https://learn.co/content-license). By
29
+ embracing an open-source contribution model, our goal is for the curriculum
30
+ on Learn to become, in time, the best educational content the world has
31
+ ever seen.
32
+
33
+ We need help from the community of Learners to maintain and improve the
34
+ educational content. Everything from fixing typos, to correcting
35
+ out-dated information, to improving exposition, to adding better examples,
36
+ to fixing tests—all contributions to making the curriculum more effective are
37
+ welcome.
@@ -0,0 +1,7 @@
1
+ #Learn.co Educational Content License
2
+
3
+ Copyright (c) 2015 Flatiron School, Inc
4
+
5
+ The Flatiron School, Inc. owns this Educational Content. However, the Flatiron School supports the development and availability of educational materials in the public domain. Therefore, the Flatiron School grants Users of the Flatiron Educational Content set forth in this repository certain rights to reuse, build upon and share such Educational Content subject to the terms of the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). You must read carefully the terms and conditions contained in the Educational Content License as such terms govern access to and use of the Educational Content.
6
+
7
+ Flatiron School is willing to allow you access to and use of the Educational Content only on the condition that you accept all of the terms and conditions contained in the Educational Content License set forth [here](http://learn.co/content-license) (http://learn.co/content-license). By accessing and/or using the Educational Content, you are agreeing to all of the terms and conditions contained in the Educational Content License. If you do not agree to any or all of the terms of the Educational Content License, you are prohibited from accessing, reviewing or using in any way the Educational Content.
@@ -1,5 +1,16 @@
1
- ---
2
- tags:
3
- languages:
4
- resources:
5
- ---
1
+ ## Objectives
2
+
3
+ 1. Objective 1
4
+ 2. Objective 2
5
+
6
+ ## Instructions
7
+
8
+ Create make the tests pass Heroku lab. API Nokogiri guest speaker belongs_to RESTful binder.ply. Url Rails slack it to me. Asset pipeline Feelings Friday puts "woof" API open source.
9
+
10
+ Destroy now we can teach dogs to do anything link drop tables lab The Gucci bundle install. Associations def iterate infobesity Twitter. Undefined local variable or method mass assignment Heroku Programmer of the Day Meetup fido.bark. Internet create. Ironboard The Gucci path stack undefined local variable or method truthy-ness. Sqlite3 scooter blog posts DRY The Gucci cat. Truthy-ness bundle.
11
+
12
+ ### Part 1: Do Some Stuff
13
+
14
+ ## Resources
15
+
16
+ * [Stack Exchange](http://www.stackexchange.com) - [Some Question on Stack Exchange](http://www.stackexchange.com/questions/123)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: learn-generate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Flatiron School
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-10 00:00:00.000000000 Z
11
+ date: 2015-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,8 @@ files:
66
66
  - lib/learn_generate/version.rb
67
67
  - lib/templates/activerecord/.gitignore
68
68
  - lib/templates/activerecord/.rspec
69
+ - lib/templates/activerecord/CONTRIBUTING.md
70
+ - lib/templates/activerecord/LICENSE.md
69
71
  - lib/templates/activerecord/README.md
70
72
  - lib/templates/activerecord/Rakefile
71
73
  - lib/templates/activerecord/app/models/sample-class.rb
@@ -76,18 +78,24 @@ files:
76
78
  - lib/templates/activerecord/spec/spec_helper.rb
77
79
  - lib/templates/command-line/.gitignore
78
80
  - lib/templates/command-line/.rspec
81
+ - lib/templates/command-line/CONTRIBUTING.md
82
+ - lib/templates/command-line/LICENSE.md
79
83
  - lib/templates/command-line/README.md
80
84
  - lib/templates/command-line/bin/runner.rb
81
85
  - lib/templates/command-line/lib/environment.rb
82
86
  - lib/templates/command-line/lib/lab-name/cli.rb
83
87
  - lib/templates/command-line/spec/spec_helper.rb
84
88
  - lib/templates/front-end/.gitignore
89
+ - lib/templates/front-end/CONTRIBUTING.md
90
+ - lib/templates/front-end/LICENSE.md
85
91
  - lib/templates/front-end/README.md
86
92
  - lib/templates/front-end/css/style.css
87
93
  - lib/templates/front-end/images/.keep
88
94
  - lib/templates/front-end/index.html
89
95
  - lib/templates/fundamental-ruby/.gitignore
90
96
  - lib/templates/fundamental-ruby/.rspec
97
+ - lib/templates/fundamental-ruby/CONTRIBUTING.md
98
+ - lib/templates/fundamental-ruby/LICENSE.md
91
99
  - lib/templates/fundamental-ruby/README.md
92
100
  - lib/templates/fundamental-ruby/lib/file.rb
93
101
  - lib/templates/fundamental-ruby/spec/spec_helper.rb
@@ -106,6 +114,10 @@ files:
106
114
  - lib/templates/ios/.liftoff/templates/main.m
107
115
  - lib/templates/ios/.liftoff/templates/test_runner.sh
108
116
  - lib/templates/ios/.liftoffrc
117
+ - lib/templates/ios/CONTRIBUTING.md
118
+ - lib/templates/ios/LICENSE.md
119
+ - lib/templates/js/CONTRIBUTING.md
120
+ - lib/templates/js/LICENSE.md
109
121
  - lib/templates/js/README.md
110
122
  - lib/templates/js/css/.keep
111
123
  - lib/templates/js/images/.keep
@@ -114,13 +126,22 @@ files:
114
126
  - lib/templates/js/js/jquery-1.8.3.min.js
115
127
  - lib/templates/js/requires.yml
116
128
  - lib/templates/js/spec/.keep
117
- - lib/templates/kids/.DS_Store
118
129
  - lib/templates/kids/.rspec
130
+ - lib/templates/kids/CONTRIBUTING.md
131
+ - lib/templates/kids/LICENSE.md
119
132
  - lib/templates/kids/README.md
120
133
  - lib/templates/kids/lib/file.rb
121
134
  - lib/templates/kids/spec/spec_helper.rb
135
+ - lib/templates/python/.python-version
136
+ - lib/templates/python/CONTRIBUTING.md
137
+ - lib/templates/python/LICENSE.md
138
+ - lib/templates/python/README.md
139
+ - lib/templates/python/sample.py
140
+ - lib/templates/python/sample_test.py
122
141
  - lib/templates/rack/.gitignore
123
142
  - lib/templates/rack/.rspec
143
+ - lib/templates/rack/CONTRIBUTING.md
144
+ - lib/templates/rack/LICENSE.md
124
145
  - lib/templates/rack/README.md
125
146
  - lib/templates/rack/app/application.rb
126
147
  - lib/templates/rack/app/controllers/erb_maker.rb
@@ -132,6 +153,8 @@ files:
132
153
  - lib/templates/rack/spec/support/an_ok_request.rb
133
154
  - lib/templates/rake/.gitignore
134
155
  - lib/templates/rake/.rspec
156
+ - lib/templates/rake/CONTRIBUTING.md
157
+ - lib/templates/rake/LICENSE.md
135
158
  - lib/templates/rake/README.md
136
159
  - lib/templates/rake/Rakefile
137
160
  - lib/templates/rake/bin/console
@@ -139,9 +162,12 @@ files:
139
162
  - lib/templates/rake/lib/file.rb
140
163
  - lib/templates/rake/spec/rakefile_spec.rb
141
164
  - lib/templates/rake/spec/spec_helper.rb
165
+ - lib/templates/readme/CONTRIBUTING.md
166
+ - lib/templates/readme/LICENSE.md
142
167
  - lib/templates/readme/README.md
143
168
  - lib/templates/sinatra-classic-db/.gitignore
144
169
  - lib/templates/sinatra-classic-db/.rspec
170
+ - lib/templates/sinatra-classic-db/CONTRIBUTING.md
145
171
  - lib/templates/sinatra-classic-db/Gemfile
146
172
  - lib/templates/sinatra-classic-db/LICENSE.md
147
173
  - lib/templates/sinatra-classic-db/README.md
@@ -157,6 +183,8 @@ files:
157
183
  - lib/templates/sinatra-classic-db/views/.keep
158
184
  - lib/templates/sinatra-classic/.gitignore
159
185
  - lib/templates/sinatra-classic/.rspec
186
+ - lib/templates/sinatra-classic/CONTRIBUTING.md
187
+ - lib/templates/sinatra-classic/LICENSE.md
160
188
  - lib/templates/sinatra-classic/README.md
161
189
  - lib/templates/sinatra-classic/Rakefile
162
190
  - lib/templates/sinatra-classic/app.rb
@@ -170,7 +198,9 @@ files:
170
198
  - lib/templates/sinatra-classic/views/.keep
171
199
  - lib/templates/sinatra-mvc/.gitignore
172
200
  - lib/templates/sinatra-mvc/.rspec
201
+ - lib/templates/sinatra-mvc/CONTRIBUTING.md
173
202
  - lib/templates/sinatra-mvc/Gemfile
203
+ - lib/templates/sinatra-mvc/LICENSE.md
174
204
  - lib/templates/sinatra-mvc/README.md
175
205
  - lib/templates/sinatra-mvc/Rakefile
176
206
  - lib/templates/sinatra-mvc/app/controllers/application_controller.rb
@@ -187,6 +217,8 @@ files:
187
217
  - lib/templates/sinatra-mvc/spec/spec_helper.rb
188
218
  - lib/templates/sql/.gitignore
189
219
  - lib/templates/sql/.rspec
220
+ - lib/templates/sql/CONTRIBUTING.md
221
+ - lib/templates/sql/LICENSE.md
190
222
  - lib/templates/sql/README.md
191
223
  - lib/templates/sql/bin/environment.rb
192
224
  - lib/templates/sql/bin/run.rb
@@ -195,7 +227,7 @@ files:
195
227
  - lib/templates/sql/spec/spec_helper.rb
196
228
  - spec/flatiron-lab-generator_spec.rb
197
229
  - spec/spec_helper.rb
198
- homepage: https://learn.co
230
+ homepage: https://github.com/learn-co/learn-generate
199
231
  licenses:
200
232
  - MIT
201
233
  metadata: {}
Binary file