valley-rails-generator 0.0.1 → 0.0.2
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 +8 -8
- data/README.md +51 -16
- data/lib/valley-rails-generator/app_builder.rb +1 -1
- data/lib/valley-rails-generator/version.rb +1 -1
- data/valley-rails-generator-0.0.1.gem +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MDk3M2Y0MDUwMjViZTFlZjE0NDhlNGQ2YWEzM2Q4Y2U1YTZlYzA3Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTNmZmYxNGI3NTBhYzg2ZmI1YjU3OGM0NjA5N2I0NzQyNmNkM2UwYQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YWRhMmYxYmUzZTBiZjRhZTE5MWU5YzM1YmFkZDgzNDBhYTY0YTI5YjVmZWQx
|
|
10
|
+
NjViMTUxYTNmMGZjM2NiNmY2YTc4ZDk0ZmRjMDU4YzI0Mzc1MzY2OWNlOWZl
|
|
11
|
+
ZjgwMWZkNDIyMDNlZjBkYzcwMDJlMDg0MDg0ZDZkNjY3NTFhMDY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTk2YzA1MjM5YWE3MTgyMjE5YjZmNzVhZTIzMzhmZWQ4YWNmNjMyYjJmZTkx
|
|
14
|
+
YzQ1N2I4ZTU2MDNiMDZhYTdhZmQ2Zjk5NWJlMjg2OWE3OTYxMjMzYzRjNDhi
|
|
15
|
+
MzhjZDUxZTYxYjNkNjg3YTQ0MGQ4Y2Q0NWNhYjI2NDBjOWM2ZTA=
|
data/README.md
CHANGED
|
@@ -1,16 +1,51 @@
|
|
|
1
|
-
Valley Rails Generator
|
|
2
|
-
======================
|
|
3
|
-
|
|
4
|
-
The Valley Rails Generator is a project heavily based on [suspenders](https://github.com/thoughtbot/suspenders) by thoughtbot
|
|
5
|
-
and used to generate our base rails applications at OSU Libraries & Press.
|
|
6
|
-
|
|
7
|
-
It includes our common testing solutions and what we consider "best practice" defaults.
|
|
8
|
-
|
|
9
|
-
Installation
|
|
10
|
-
------------
|
|
11
|
-
|
|
12
|
-
Install the gem
|
|
13
|
-
|
|
14
|
-
```
|
|
15
|
-
gem install valley-rails-generator
|
|
16
|
-
```
|
|
1
|
+
Valley Rails Generator
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
The Valley Rails Generator is a project heavily based on [suspenders](https://github.com/thoughtbot/suspenders) by thoughtbot
|
|
5
|
+
and used to generate our base rails applications at OSU Libraries & Press.
|
|
6
|
+
|
|
7
|
+
It includes our common testing solutions and what we consider "best practice" defaults.
|
|
8
|
+
|
|
9
|
+
Installation
|
|
10
|
+
------------
|
|
11
|
+
|
|
12
|
+
Install the gem
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
gem install valley-rails-generator
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
To run the generator use:
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
valleyrailsgen projectname
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This will create a Rails 3.2 app in `projectname`. This script creates a new git repository. It is not meant to be used against an existing repo.
|
|
25
|
+
|
|
26
|
+
Dependencies
|
|
27
|
+
------------
|
|
28
|
+
|
|
29
|
+
The following are system dependencies required for this generator to work:
|
|
30
|
+
|
|
31
|
+
1. Ruby 1.9.2 or greater
|
|
32
|
+
2. PhantomJS (for capybara's poltergeist driver)
|
|
33
|
+
|
|
34
|
+
Gems
|
|
35
|
+
------------
|
|
36
|
+
|
|
37
|
+
This generator installs a variety of gems, primarily for testing purposes.
|
|
38
|
+
|
|
39
|
+
1. [RSpec](https://github.com/rspec/rspec) for unit testing
|
|
40
|
+
2. [Shoulda-Matchers](https://github.com/thoughtbot/shoulda-matchers) for commonly used single-line rspec tests.
|
|
41
|
+
3. [Factory Girl](https://github.com/thoughtbot/factory_girl) for factory generation.
|
|
42
|
+
4. [Capybara](https://github.com/jnicklas/capybara) for integration testing.
|
|
43
|
+
5. [Poltergeist](https://github.com/jonleighton/poltergeist) for headless javascript testing.
|
|
44
|
+
6. [simplecov](https://github.com/colszowka/simplecov) for test coverage reports.
|
|
45
|
+
7. [Guard](https://github.com/guard/guard.git) and [guard-rspec](https://github.com/guard/guard-rspec) for automated running of tests.
|
|
46
|
+
8. [Spring](https://github.com/jonleighton/spring) for Rails preloading (integrated with guard-rspec).
|
|
47
|
+
9. [Better_Errors](https://github.com/charliesome/better_errors.git) for improved error pages in development.
|
|
48
|
+
10. [Jazz Hands](https://github.com/nixme/jazz_hands) for a combination of pry tools to improve the Rails console in development.
|
|
49
|
+
11. [Active Model Serializers](https://github.com/rails-api/active_model_serializers.git) for defining the JSON output of a model.
|
|
50
|
+
12. [Yard](https://github.com/lsegal/yard) for tag-based in-code documentation.
|
|
51
|
+
13. [Simple Form](https://github.com/plataformatec/simple_form.git) for easier form generation.
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: valley-rails-generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- osulp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-05-
|
|
11
|
+
date: 2013-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -85,6 +85,7 @@ files:
|
|
|
85
85
|
- templates/sqlite3_database.yml.erb
|
|
86
86
|
- templates/valley_gitignore
|
|
87
87
|
- templates/valley_layout.html.erb.erb
|
|
88
|
+
- valley-rails-generator-0.0.1.gem
|
|
88
89
|
- valley-rails-generator.gemspec
|
|
89
90
|
homepage: http://github.com/osulp/valley-rails-generator
|
|
90
91
|
licenses: []
|