r5 0.2.6.2 → 0.3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/r5/installations/default.rb +2 -2
- data/lib/r5/installations/testing.rb +1 -1
- data/lib/r5/recipes/bootstrap.rb +57 -12
- data/lib/r5/recipes/gemfile.rb +0 -3
- data/lib/r5/recipes/timepress_specifics.rb +0 -23
- data/lib/r5/starter.rb +11 -1
- data/lib/r5/template/Procfile +3 -0
- data/lib/r5/template/app/assets/stylesheets/bootstrap-generators.scss +21 -0
- data/lib/r5/template/app/assets/stylesheets/bootstrap-variables.scss +849 -0
- data/lib/r5/template/app/assets/stylesheets/theme.css +1 -803
- data/lib/r5/template/app/views/layouts/application.html.erb +1 -1
- data/lib/r5/version.rb +1 -1
- metadata +5 -2
@@ -12,7 +12,7 @@
|
|
12
12
|
<%= javascript_include_tag "https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js", "https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js" %>
|
13
13
|
<![endif]-->
|
14
14
|
|
15
|
-
<%=
|
15
|
+
<%= javascript_pack_tag 'application' %>
|
16
16
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
17
17
|
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
18
18
|
<%= csrf_meta_tags %>
|
data/lib/r5/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r5
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mousse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -91,11 +91,14 @@ files:
|
|
91
91
|
- lib/r5/recipes/xlsx_support.rb
|
92
92
|
- lib/r5/starter.rb
|
93
93
|
- lib/r5/template/.ruby-version
|
94
|
+
- lib/r5/template/Procfile
|
94
95
|
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.eot
|
95
96
|
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.ttf
|
96
97
|
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff
|
97
98
|
- lib/r5/template/app/assets/fonts/glyphicons-halflings-regular.woff2
|
98
99
|
- lib/r5/template/app/assets/javascripts/main.js.rb
|
100
|
+
- lib/r5/template/app/assets/stylesheets/bootstrap-generators.scss
|
101
|
+
- lib/r5/template/app/assets/stylesheets/bootstrap-variables.scss
|
99
102
|
- lib/r5/template/app/assets/stylesheets/custom.css.scss
|
100
103
|
- lib/r5/template/app/assets/stylesheets/main.css.scss
|
101
104
|
- lib/r5/template/app/assets/stylesheets/theme.css
|