tsrails 2.0.0

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.
Files changed (40) hide show
  1. data/LICENSE +674 -0
  2. data/README.md +137 -0
  3. data/Rakefile +83 -0
  4. data/bin/tsrails +34 -0
  5. data/lib/constants.rb +29 -0
  6. data/lib/create.rb +68 -0
  7. data/lib/errors.rb +12 -0
  8. data/lib/helpers.rb +93 -0
  9. data/template/files/Gem.gemfile +56 -0
  10. data/template/files/Guardfile +36 -0
  11. data/template/files/Termfile +37 -0
  12. data/template/files/_flashes.html.haml +3 -0
  13. data/template/files/_footer.html.haml +8 -0
  14. data/template/files/_javascript.html.haml +1 -0
  15. data/template/files/_sidebar.html.haml +3 -0
  16. data/template/files/_sign_in_out.html.haml +4 -0
  17. data/template/files/apache_config.conf +18 -0
  18. data/template/files/app_config.yml +11 -0
  19. data/template/files/application.html.haml +21 -0
  20. data/template/files/application_helper.rb +6 -0
  21. data/template/files/backtrace_silencers.rb +10 -0
  22. data/template/files/clearance.rb +7 -0
  23. data/template/files/cucumber.yml +8 -0
  24. data/template/files/debug_steps.rb +18 -0
  25. data/template/files/env.rb +58 -0
  26. data/template/files/factory_girl_steps.rb +1 -0
  27. data/template/files/haml_options.rb +3 -0
  28. data/template/files/jquery.rb +12 -0
  29. data/template/files/mailer_macros.rb +11 -0
  30. data/template/files/mongrel_cluster.yml +7 -0
  31. data/template/files/noisy_attr_accessible.rb +5 -0
  32. data/template/files/prefilled_input.js +59 -0
  33. data/template/files/rcov.opts +2 -0
  34. data/template/files/requires.rb +7 -0
  35. data/template/files/spec.opts +4 -0
  36. data/template/files/spec_helper.rb +37 -0
  37. data/template/files/tiny_mce.yml +16 -0
  38. data/template/tsrails_3_2.rb +233 -0
  39. data/tsrails.gemspec +72 -0
  40. metadata +110 -0
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tsrails
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Taylored Software
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-01-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70098501931500 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70098501931500
25
+ - !ruby/object:Gem::Dependency
26
+ name: colored
27
+ requirement: &70098501930520 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '1.2'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70098501930520
36
+ description: ! "TSWRails is a base Rails project that you can upgrade. It is used
37
+ by\nTaylored Software to get a jump start on a working app. \n"
38
+ email: rubygems@taylored-software.com
39
+ executables:
40
+ - tsrails
41
+ extensions: []
42
+ extra_rdoc_files:
43
+ - README.md
44
+ - LICENSE
45
+ files:
46
+ - LICENSE
47
+ - README.md
48
+ - Rakefile
49
+ - bin/tsrails
50
+ - lib/constants.rb
51
+ - lib/create.rb
52
+ - lib/errors.rb
53
+ - lib/helpers.rb
54
+ - template/files/Gem.gemfile
55
+ - template/files/Guardfile
56
+ - template/files/Termfile
57
+ - template/files/_flashes.html.haml
58
+ - template/files/_footer.html.haml
59
+ - template/files/_javascript.html.haml
60
+ - template/files/_sidebar.html.haml
61
+ - template/files/_sign_in_out.html.haml
62
+ - template/files/apache_config.conf
63
+ - template/files/app_config.yml
64
+ - template/files/application.html.haml
65
+ - template/files/application_helper.rb
66
+ - template/files/backtrace_silencers.rb
67
+ - template/files/clearance.rb
68
+ - template/files/cucumber.yml
69
+ - template/files/debug_steps.rb
70
+ - template/files/env.rb
71
+ - template/files/factory_girl_steps.rb
72
+ - template/files/haml_options.rb
73
+ - template/files/jquery.rb
74
+ - template/files/mailer_macros.rb
75
+ - template/files/mongrel_cluster.yml
76
+ - template/files/noisy_attr_accessible.rb
77
+ - template/files/prefilled_input.js
78
+ - template/files/rcov.opts
79
+ - template/files/requires.rb
80
+ - template/files/spec.opts
81
+ - template/files/spec_helper.rb
82
+ - template/files/tiny_mce.yml
83
+ - template/tsrails_3_2.rb
84
+ - tsrails.gemspec
85
+ homepage: http://github.com/tayloredsoftware/tswrails
86
+ licenses: []
87
+ post_install_message:
88
+ rdoc_options:
89
+ - --charset=UTF-8
90
+ require_paths:
91
+ - lib
92
+ required_ruby_version: !ruby/object:Gem::Requirement
93
+ none: false
94
+ requirements:
95
+ - - ! '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubyforge_project:
106
+ rubygems_version: 1.8.15
107
+ signing_key:
108
+ specification_version: 2
109
+ summary: Generate a Rails app using Taylored Software's best practices.
110
+ test_files: []