frontend-generators 0.0.4 → 0.0.6
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 +28 -7
- data/assets/stylish_portfolio/app/assets/javascripts/{manifest.js → stylish_portfolio/manifest.js} +0 -0
- data/assets/stylish_portfolio/app/assets/javascripts/{stylish_portfolio.js → stylish_portfolio/stylish_portfolio.js} +0 -0
- data/assets/stylish_portfolio/app/assets/stylesheets/{manifest.css → stylish_portfolio/manifest.css} +0 -0
- data/assets/stylish_portfolio/app/assets/stylesheets/{stylish_portfolio.css.scss → stylish_portfolio/stylish_portfolio.css.scss} +0 -0
- data/frontend-generators.gemspec +2 -2
- data/lib/frontend_generators/asset_copier.rb +1 -1
- data/lib/frontend_generators/version.rb +1 -1
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0bbd17d6eab1d485e134201f6d99cf732675c90
|
4
|
+
data.tar.gz: 04d5f8f0fe8bd80e30ab329662a98df8e219d5ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61c856ea22debf30fd5f47f013921bb48fbe660782d767264592891fef686cffc3468a37809c236056e493b69950b713b5447dc798822a6c761fa4ccda9036a2
|
7
|
+
data.tar.gz: c82f4f1e109e536fbfed9df9a2db4dbc8cb745845418cb0b392bb981321b0f6564e02ab63c11a361e8087124fba085de7377a64ec2e33b34829f58784892ea32
|
data/README.md
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# FrontendGenerators
|
2
2
|
|
3
|
-
This gem can be used to easily set up a [Start Bootstrap](http://startbootstrap.com/template-categories/all/) theme in your Rails application. The Start Bootstrap code has fully been modified to follow Rails conventions
|
3
|
+
This gem can be used to easily set up a [Start Bootstrap](http://startbootstrap.com/template-categories/all/) theme in your Rails application. The Start Bootstrap code has fully been modified to follow Rails conventions (Rails partials are awesome!).
|
4
4
|
|
5
5
|
The FrontendGenerators gem also lets you easily copy the Bootstrap & Font Awesome css, js, and fonts directly into your application. Most people use [twitter-bootstrap-rails](https://github.com/seyhunak/twitter-bootstrap-rails) and [font-awesome-rails](https://github.com/bokmann/font-awesome-rails) to access these frontend libraries in their code, but I find it much easier to just have the code in my own applications. It's easier to examine the source code when it's in your application and you can avoid frusterating Rails asset pipeline bugs with this straightforward setup. Annoying bugs are what motivated me to create this gem in the first place.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
Add this line to your application's Gemfile
|
9
|
+
Add this line to your application's Gemfile:
|
10
10
|
|
11
11
|
```ruby
|
12
|
-
gem 'frontend-generators'
|
12
|
+
gem 'frontend-generators'
|
13
13
|
```
|
14
14
|
|
15
15
|
And then execute:
|
@@ -61,7 +61,7 @@ Go to `application.css` and add this line:
|
|
61
61
|
|
62
62
|
## [Start Bootstrap Stylish Portfolio](http://ironsummitmedia.github.io/startbootstrap-stylish-portfolio/)
|
63
63
|
|
64
|
-
To move the Start Bootstrap Stylish Portfolio into your Rails application, run this rake task:
|
64
|
+
To move the Start Bootstrap Stylish Portfolio theme into your Rails application, run this rake task:
|
65
65
|
|
66
66
|
```ruby
|
67
67
|
bundle exec rake add_assets:stylish_portfolio
|
@@ -73,7 +73,7 @@ Add the route to `routes.rb`:
|
|
73
73
|
get 'stylish_portfolios/index'
|
74
74
|
```
|
75
75
|
|
76
|
-
|
76
|
+
Add this line to `config/initializers/assets.rb`:
|
77
77
|
|
78
78
|
```ruby
|
79
79
|
Rails.application.config.assets.precompile += %w( stylish_portfolio/manifest.css stylish_portfolio/manifest.js )
|
@@ -81,7 +81,7 @@ Rails.application.config.assets.precompile += %w( stylish_portfolio/manifest.css
|
|
81
81
|
|
82
82
|
## [Start Bootstrap Creative](http://startbootstrap.com/template-overviews/creative/)
|
83
83
|
|
84
|
-
To move the Start Bootstrap Creative into your Rails application, run this rake task:
|
84
|
+
To move the Start Bootstrap Creative theme into your Rails application, run this rake task:
|
85
85
|
|
86
86
|
```ruby
|
87
87
|
bundle exec rake add_assets:creative
|
@@ -93,12 +93,33 @@ Add the route to `routes.rb`:
|
|
93
93
|
get 'creatives/index'
|
94
94
|
```
|
95
95
|
|
96
|
-
|
96
|
+
Add this line to `config/initializers/assets.rb`:
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
Rails.application.config.assets.precompile += %w( creative/manifest.js creative/manifest.css )
|
100
100
|
```
|
101
101
|
|
102
|
+
## [Start Bootstrap Freelancer](http://startbootstrap.com/template-overviews/freelancer/)
|
103
|
+
|
104
|
+
To move the Start Bootstrap Freelancer theme into your Rails application, run this rake task:
|
105
|
+
|
106
|
+
```ruby
|
107
|
+
bundle exec rake add_assets:freelancer
|
108
|
+
```
|
109
|
+
|
110
|
+
Add the route to `routes.rb`:
|
111
|
+
|
112
|
+
```ruby
|
113
|
+
get 'freelancers/index'
|
114
|
+
```
|
115
|
+
|
116
|
+
Add this line to `config/initializers/assets.rb`:
|
117
|
+
|
118
|
+
```ruby
|
119
|
+
Rails.application.config.assets.precompile += %w( freelancer/manifest.js freelancer/manifest.css )
|
120
|
+
```
|
121
|
+
|
122
|
+
|
102
123
|
## Contributing
|
103
124
|
|
104
125
|
Bug reports and pull requests are welcome on GitHub at https://github.com/MrPowers/frontend-generators.
|
data/assets/stylish_portfolio/app/assets/javascripts/{manifest.js → stylish_portfolio/manifest.js}
RENAMED
File without changes
|
File without changes
|
data/assets/stylish_portfolio/app/assets/stylesheets/{manifest.css → stylish_portfolio/manifest.css}
RENAMED
File without changes
|
File without changes
|
data/frontend-generators.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["MrPowers"]
|
10
10
|
spec.email = ["matthewkevinpowers@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{Rake tasks to get Bootstrap
|
13
|
-
spec.description = %q{There are separate Ruby gems to access Bootstrap and Font Awesome in your Rails application, but they can be annoying when it comes time to deploy or when you want to look at the source code. These rake tasks actually move the source code into your application, so you have full control.}
|
12
|
+
spec.summary = %q{Rake tasks to get Bootstrap, Font Awesome, and Start Bootstrap themes into your Rails application}
|
13
|
+
spec.description = %q{There are separate Ruby gems to access Bootstrap and Font Awesome in your Rails application, but they can be annoying when it comes time to deploy or when you want to look at the source code. These rake tasks actually move the source code into your application, so you have full control. The rake tasks also make it easy to add Start Bootstrap themes to your site, which can be a pain.}
|
14
14
|
spec.homepage = "https://github.com/MrPowers/frontend-generators"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
@@ -22,7 +22,7 @@ module FrontendGenerators; class AssetCopier
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def destination_dirname
|
25
|
-
p = asset_path.gsub(asset_root_dirname, Turf.find(:destination_root))
|
25
|
+
p = asset_path.gsub(asset_root_dirname, Turf.find(:destination_root).to_s)
|
26
26
|
dirname = File.dirname(p)
|
27
27
|
FileUtils.mkdir_p(dirname)
|
28
28
|
dirname
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frontend-generators
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MrPowers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -97,7 +97,8 @@ dependencies:
|
|
97
97
|
description: There are separate Ruby gems to access Bootstrap and Font Awesome in
|
98
98
|
your Rails application, but they can be annoying when it comes time to deploy or
|
99
99
|
when you want to look at the source code. These rake tasks actually move the source
|
100
|
-
code into your application, so you have full control.
|
100
|
+
code into your application, so you have full control. The rake tasks also make
|
101
|
+
it easy to add Start Bootstrap themes to your site, which can be a pain.
|
101
102
|
email:
|
102
103
|
- matthewkevinpowers@gmail.com
|
103
104
|
executables: []
|
@@ -184,10 +185,10 @@ files:
|
|
184
185
|
- assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-2.jpg
|
185
186
|
- assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-3.jpg
|
186
187
|
- assets/stylish_portfolio/app/assets/images/stylish_portfolio/portfolio-4.jpg
|
187
|
-
- assets/stylish_portfolio/app/assets/javascripts/manifest.js
|
188
|
-
- assets/stylish_portfolio/app/assets/javascripts/stylish_portfolio.js
|
189
|
-
- assets/stylish_portfolio/app/assets/stylesheets/manifest.css
|
190
|
-
- assets/stylish_portfolio/app/assets/stylesheets/stylish_portfolio.css.scss
|
188
|
+
- assets/stylish_portfolio/app/assets/javascripts/stylish_portfolio/manifest.js
|
189
|
+
- assets/stylish_portfolio/app/assets/javascripts/stylish_portfolio/stylish_portfolio.js
|
190
|
+
- assets/stylish_portfolio/app/assets/stylesheets/stylish_portfolio/manifest.css
|
191
|
+
- assets/stylish_portfolio/app/assets/stylesheets/stylish_portfolio/stylish_portfolio.css.scss
|
191
192
|
- assets/stylish_portfolio/app/controllers/stylish_portfolios_controller.rb
|
192
193
|
- assets/stylish_portfolio/app/views/layouts/stylish_portfolio.html.erb
|
193
194
|
- assets/stylish_portfolio/app/views/stylish_portfolios/_about.html.erb
|
@@ -237,5 +238,6 @@ rubyforge_project:
|
|
237
238
|
rubygems_version: 2.4.5
|
238
239
|
signing_key:
|
239
240
|
specification_version: 4
|
240
|
-
summary: Rake tasks to get Bootstrap
|
241
|
+
summary: Rake tasks to get Bootstrap, Font Awesome, and Start Bootstrap themes into
|
242
|
+
your Rails application
|
241
243
|
test_files: []
|