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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MTcyMTMxNWFjNTgwOTZlMTkzYzE4MzI4ZmM0NDliNDdmZDhlMjc3Mg==
4
+ MDk3M2Y0MDUwMjViZTFlZjE0NDhlNGQ2YWEzM2Q4Y2U1YTZlYzA3Ng==
5
5
  data.tar.gz: !binary |-
6
- N2Q4YWUwYWJmN2VlNGFiNmI5YWI0ZjRmODNlYzZjNDliOWQ0YWE3YQ==
6
+ ZTNmZmYxNGI3NTBhYzg2ZmI1YjU3OGM0NjA5N2I0NzQyNmNkM2UwYQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- MzhkYzNhZTYyM2Y2OTNkZDRlNjE1YWRmODhlOTI4MDg2NmI3ZGI1YmE3YzAw
10
- MzVjZjk1MWIxMmQ1ZTZlYjhkOGY0MjQ3ZWQ3ZDU2YmU5YTA2OTkyNDlkM2Nm
11
- MThmMGI2OWUyYzZiYjYwZDI3MDZiMGFjYzAwZTA2YTI4NjEwMWQ=
9
+ YWRhMmYxYmUzZTBiZjRhZTE5MWU5YzM1YmFkZDgzNDBhYTY0YTI5YjVmZWQx
10
+ NjViMTUxYTNmMGZjM2NiNmY2YTc4ZDk0ZmRjMDU4YzI0Mzc1MzY2OWNlOWZl
11
+ ZjgwMWZkNDIyMDNlZjBkYzcwMDJlMDg0MDg0ZDZkNjY3NTFhMDY=
12
12
  data.tar.gz: !binary |-
13
- ZWQ5ZmZmMjM0N2UwYWI0ZGU1MWUwNWExOWYyMGM3OWI1ZTNjYTliZWEwOTA4
14
- Y2Q3NTQ3MzQ4M2ZhMDhkOWFiZDI1ZWFjYjBmMjNkYjZhYjlkZDBlZmNhOWZj
15
- OTAwY2Q5MWM5OWQyMWQwZWZkOWZkYWI2NTJlYzMzMGVhMGVkN2Q=
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.
@@ -269,7 +269,7 @@ module ValleyRailsGenerator
269
269
 
270
270
  def setup_default_rake_task
271
271
  append_file 'Rakefile' do
272
- "task(:default).clear\ntask :default => [:spec]"
272
+ "\ntask(:default).clear\ntask :default => [:spec]"
273
273
  end
274
274
  end
275
275
 
@@ -1,3 +1,3 @@
1
1
  module ValleyRailsGenerator
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
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.1
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-07 00:00:00.000000000 Z
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: []