Commit 836b32e374400c8e4364e3208a4e9bbbedf3e39e
1 parent
e0a7b70d
Exists in
master
and in
1 other branch
updating READMEs
Showing
4 changed files
with
28 additions
and
23 deletions
Show diff stats
1 | 1 | ambethia-smtp-tls --version '1.1.2' --source gems.github.com |
2 | 2 | tobi-delayed_job --version '1.7.0' --source gems.github.com |
3 | 3 | tristandunn-paperclip --version '2.3.1' --source gems.github.com |
4 | +aws-s3 --version '0.6.2' | |
4 | 5 | mime-types --version '1.16' |
5 | 6 | xml-simple --version '1.0.12' |
6 | -aws-s3 --version '0.6.2' | |
7 | 7 | rubaidh-google_analytics --version '1.1.4' --source gems.github.com |
8 | 8 | yfactorial-utility_scopes --version '0.2.2' --source gems.github.com |
9 | 9 | justinfrench-formtastic --version '0.2.1' --source gems.github.com | ... | ... |
README.markdown
... | ... | @@ -17,7 +17,7 @@ This will create a Rails 2.3.2 app with Heroku-recommended code: |
17 | 17 | |
18 | 18 | ... and some other opinions: |
19 | 19 | |
20 | -* jQuery for Javascript | |
20 | +* jQuery for Javascript and Ajax | |
21 | 21 | * Clearance for authentication |
22 | 22 | * Cucumber, Shoulda, Factory Girl, & Mocha for testing |
23 | 23 | * Flutie for CSS framework | ... | ... |
config/environment.rb
... | ... | @@ -25,15 +25,15 @@ Rails::Initializer.run do |config| |
25 | 25 | :lib => "paperclip", |
26 | 26 | :version => "2.3.1", |
27 | 27 | :source => "http://gems.github.com" |
28 | + config.gem "aws-s3", | |
29 | + :lib => "aws/s3", | |
30 | + :version => "0.6.2" | |
28 | 31 | config.gem "mime-types", |
29 | 32 | :lib => "mime/types", |
30 | 33 | :version => "1.16" |
31 | 34 | config.gem "xml-simple", |
32 | 35 | :lib => "xmlsimple", |
33 | 36 | :version => "1.0.12" |
34 | - config.gem "aws-s3", | |
35 | - :lib => "aws/s3", | |
36 | - :version => "0.6.2" | |
37 | 37 | config.gem "yfactorial-utility_scopes", |
38 | 38 | :lib => "utility_scopes", |
39 | 39 | :version => "0.2.2", | ... | ... |
doc/README_FOR_TEMPLATE
... | ... | @@ -25,16 +25,24 @@ Suspenders currently runs on Rails 2.3.2. |
25 | 25 | Gems (in .gems): |
26 | 26 | ---------------- |
27 | 27 | |
28 | +For file uploads: | |
29 | + | |
30 | + thoughtbot-paperclip | |
31 | + aws-s3 | |
32 | + | |
33 | +For authentication: | |
34 | + | |
35 | + thoughtbot-clearance | |
36 | + | |
28 | 37 | For testing: |
29 | 38 | |
30 | 39 | mocha |
31 | 40 | thoughtbot-factory_girl |
32 | 41 | thoughtbot-shoulda |
33 | 42 | |
34 | -For file uploads: | |
43 | +For form builders: | |
35 | 44 | |
36 | - thoughtbot-paperclip | |
37 | - right_aws | |
45 | + justinfrench-formtastic | |
38 | 46 | |
39 | 47 | For email through SMTP (particularly Gmail): |
40 | 48 | |
... | ... | @@ -47,14 +55,18 @@ For background processing: |
47 | 55 | Plugins (in vendor/plugins): |
48 | 56 | ---------------------------- |
49 | 57 | |
50 | -For authentication: | |
58 | +For Javascript and Ajax: | |
51 | 59 | |
52 | - thoughtbot-clearance | |
60 | + jQuery | |
53 | 61 | |
54 | 62 | For exception notification: |
55 | 63 | |
56 | 64 | hoptoad_notifier |
57 | 65 | |
66 | +For CSS framework: | |
67 | + | |
68 | + flutie | |
69 | + | |
58 | 70 | For models, controllers, helpers, & features generators: |
59 | 71 | |
60 | 72 | blitz |
... | ... | @@ -106,25 +118,18 @@ from Joe Ferris that adds test spies (assert_received) to Mocha. |
106 | 118 | |
107 | 119 | jferris-mocha --version '0.9.5.0.1241126838' --source gems.github.com |
108 | 120 | |
109 | -Javascript | |
110 | ----------- | |
111 | - | |
112 | -jQuery and jRails are included. | |
113 | - | |
114 | 121 | Styles |
115 | 122 | ------ |
116 | 123 | |
117 | -Heroku's Suspenders includes a lightweight CSS framework called Stylus. | |
124 | +Heroku's Suspenders includes a lightweight CSS framework called Flutie. | |
125 | + | |
126 | +Flutie CSS and an empty project_name.css are included in the application layout. | |
118 | 127 | |
119 | -public/stylesheets/screen.css is included in the application layout. | |
120 | -It imports the Stylus framework: | |
128 | +Use project_name.css for your custom styles. | |
121 | 129 | |
122 | - @import url("framework/reset.css"); | |
123 | - @import url("framework/typography.css"); | |
124 | - @import url("framework/grid.css"); | |
125 | - @import url("framework/spacing.css"); | |
130 | +Browse to the following path in development for Style Guide: | |
126 | 131 | |
127 | -Add another import for your own styles, by convention named after your app. | |
132 | + http://localhost:3000/styleguide | |
128 | 133 | |
129 | 134 | Hoptoad |
130 | 135 | ------- | ... | ... |