ffaster 0.0.2 → 0.0.3

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a4a0b46040cd2a95e56572ff3ed434f0abb134e
4
- data.tar.gz: eadbee37392e8d92414f3cd8a0df0bda5b1a88e4
3
+ metadata.gz: 29829e2f10964be4faaca5eb0e8a5c882fd562be
4
+ data.tar.gz: 46391d686dc249a3dfc981a494968bd6e1c51276
5
5
  SHA512:
6
- metadata.gz: 59a1a4bfd3b9d5e62060cafe2cb9f6e148b37d33e1db0dea867fa51c3e12a9cb5f1b09a38a2387836333ef6bbd28a060280d32b85b1e443f9ce630ef549b6380
7
- data.tar.gz: 02d0e0457a78940e2829b54918832f51b48f1b9cfeeb5f1b78335cf0a546cc7c0d6ebed6dd5ce3c5b4bd9e0286895db64143827c652eeabe96da060e4c5cd885
6
+ metadata.gz: abd61aa79469e31200b5d00961d653f6a73be66771e85998aee6b3c5792e79232b9b3fb180f27cc4fbc4e1e2b160649a2a0cfbb2b6c9bc8c8b86b1ce4f819082
7
+ data.tar.gz: 5f43a6f67ba9e32b0aa8cc52a874416790d47a4b1d166bef14dc65f612a0730fff86043e27f775ea9a5aaa53fbf3e98b680ce071f208b12b9e9fb330d0bf368f
data/README.md CHANGED
@@ -1,3 +1,24 @@
1
- = Ffaster
1
+ ffaster
2
+ #######
2
3
 
3
- This project rocks and uses MIT-LICENSE.
4
+ Generate your rails app ffaster.
5
+
6
+ #Overview
7
+
8
+ ffaster is a bunch of templates, which:
9
+ * changes your `application.css` to `application.scss`
10
+ * changes your `application.js` to `application.coffee`
11
+ * changes your `application.html.erb` to `application.haml`
12
+ * removes `sprockets`
13
+ * come up with bunch of gems: [gemfile], all ready to action, without
14
+ initialize(`guard`, `rspec`, etc)
15
+ * set your [database]
16
+
17
+ #Usage
18
+
19
+ In your application root directory, run: `rails generate ffaster NAME`, where
20
+ `NAME` is used to prefix your database names, etc.
21
+
22
+
23
+ [gemfile]: https://github.com/matDobek/ffaster/blob/master/lib/generators/app/templates/Gemfile
24
+ [database]: https://github.com/matDobek/ffaster/blob/master/lib/generators/app/templates/config/database.yml
@@ -1,3 +1,3 @@
1
1
  module Ffaster
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
File without changes
@@ -0,0 +1,2 @@
1
+ In your application root directory, run: `rails generate ffaster NAME`, where
2
+ `NAME` is used to prefix your database names, etc.
@@ -1,4 +1,4 @@
1
- class AppGenerator < Rails::Generators::Base
1
+ class FfasterGenerator < Rails::Generators::Base
2
2
  source_root File.expand_path('../templates', __FILE__)
3
3
  argument :name, :type => :string, :default => "application"
4
4
 
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffaster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Dobek
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Bunch of templates
41
+ description: Generate your rails app ffaster
42
42
  email:
43
43
  - mat.dobek@gmail.com
44
44
  executables: []
@@ -49,19 +49,19 @@ files:
49
49
  - README.md
50
50
  - Rakefile
51
51
  - lib/ffaster/version.rb
52
- - lib/generators/app/Guardfile
53
- - lib/generators/app/USAGE
54
- - lib/generators/app/app_generator.rb
55
- - lib/generators/app/templates/Gemfile
56
- - lib/generators/app/templates/Guardfile
57
- - lib/generators/app/templates/README.md
58
- - lib/generators/app/templates/app/assets/javascripts/application.coffee
59
- - lib/generators/app/templates/app/assets/stylesheets/application.scss
60
- - lib/generators/app/templates/app/views/layouts/application.haml
61
- - lib/generators/app/templates/config/database.yml
62
- - lib/generators/app/templates/config/routes.rb
63
- - lib/generators/app/templates/spec/rails_helper.rb
64
- - lib/generators/app/templates/spec/spec_helper.rb
52
+ - lib/generators/ffaster/Guardfile
53
+ - lib/generators/ffaster/USAGE
54
+ - lib/generators/ffaster/ffaster_generator.rb
55
+ - lib/generators/ffaster/templates/Gemfile
56
+ - lib/generators/ffaster/templates/Guardfile
57
+ - lib/generators/ffaster/templates/README.md
58
+ - lib/generators/ffaster/templates/app/assets/javascripts/application.coffee
59
+ - lib/generators/ffaster/templates/app/assets/stylesheets/application.scss
60
+ - lib/generators/ffaster/templates/app/views/layouts/application.haml
61
+ - lib/generators/ffaster/templates/config/database.yml
62
+ - lib/generators/ffaster/templates/config/routes.rb
63
+ - lib/generators/ffaster/templates/spec/rails_helper.rb
64
+ - lib/generators/ffaster/templates/spec/spec_helper.rb
65
65
  - test/dummy/README.rdoc
66
66
  - test/dummy/Rakefile
67
67
  - test/dummy/app/assets/javascripts/application.js
@@ -120,7 +120,7 @@ rubyforge_project:
120
120
  rubygems_version: 2.2.2
121
121
  signing_key:
122
122
  specification_version: 4
123
- summary: Ffaster generate your new rails app
123
+ summary: Generate your rails app ffaster
124
124
  test_files:
125
125
  - test/dummy/app/assets/javascripts/application.js
126
126
  - test/dummy/app/assets/stylesheets/application.css
@@ -1 +0,0 @@
1
- sample usage