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 +4 -4
- data/README.md +23 -2
- data/lib/ffaster/version.rb +1 -1
- data/lib/generators/{app → ffaster}/Guardfile +0 -0
- data/lib/generators/ffaster/USAGE +2 -0
- data/lib/generators/{app/app_generator.rb → ffaster/ffaster_generator.rb} +1 -1
- data/lib/generators/{app → ffaster}/templates/Gemfile +0 -0
- data/lib/generators/{app → ffaster}/templates/Guardfile +0 -0
- data/lib/generators/{app → ffaster}/templates/README.md +0 -0
- data/lib/generators/{app → ffaster}/templates/app/assets/javascripts/application.coffee +0 -0
- data/lib/generators/{app → ffaster}/templates/app/assets/stylesheets/application.scss +0 -0
- data/lib/generators/{app → ffaster}/templates/app/views/layouts/application.haml +0 -0
- data/lib/generators/{app → ffaster}/templates/config/database.yml +0 -0
- data/lib/generators/{app → ffaster}/templates/config/routes.rb +0 -0
- data/lib/generators/{app → ffaster}/templates/spec/rails_helper.rb +0 -0
- data/lib/generators/{app → ffaster}/templates/spec/spec_helper.rb +0 -0
- metadata +16 -16
- data/lib/generators/app/USAGE +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29829e2f10964be4faaca5eb0e8a5c882fd562be
|
|
4
|
+
data.tar.gz: 46391d686dc249a3dfc981a494968bd6e1c51276
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abd61aa79469e31200b5d00961d653f6a73be66771e85998aee6b3c5792e79232b9b3fb180f27cc4fbc4e1e2b160649a2a0cfbb2b6c9bc8c8b86b1ce4f819082
|
|
7
|
+
data.tar.gz: 5f43a6f67ba9e32b0aa8cc52a874416790d47a4b1d166bef14dc65f612a0730fff86043e27f775ea9a5aaa53fbf3e98b680ce071f208b12b9e9fb330d0bf368f
|
data/README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
ffaster
|
|
2
|
+
#######
|
|
2
3
|
|
|
3
|
-
|
|
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
|
data/lib/ffaster/version.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
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.
|
|
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:
|
|
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/
|
|
53
|
-
- lib/generators/
|
|
54
|
-
- lib/generators/
|
|
55
|
-
- lib/generators/
|
|
56
|
-
- lib/generators/
|
|
57
|
-
- lib/generators/
|
|
58
|
-
- lib/generators/
|
|
59
|
-
- lib/generators/
|
|
60
|
-
- lib/generators/
|
|
61
|
-
- lib/generators/
|
|
62
|
-
- lib/generators/
|
|
63
|
-
- lib/generators/
|
|
64
|
-
- lib/generators/
|
|
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:
|
|
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
|
data/lib/generators/app/USAGE
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
sample usage
|