bootstrap_leather 0.10.4 → 0.10.5
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/VERSION +1 -1
- data/bootstrap_leather.gemspec +3 -5
- data/lib/bootstrap_leather.rb +0 -3
- data/lib/bootstrap_leather/engine.rb +2 -3
- data/spec/dummy/config/routes.rb +0 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +3 -5
- data/bin/rails +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43c0092d2e939fe8847834f7bbdc37811ced34a0
|
|
4
|
+
data.tar.gz: 203ef8b1208d31ec47f1b638108b119644a2207c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 656a1c3164e0f857f57e9121ae9f4a90c42fa1f22dbb9ed59e3a7f3e18622724908985d85154db8e198e3a092562c26d9d34adc1b2a05c10dc4b5d2514739297
|
|
7
|
+
data.tar.gz: b2905ed796d0128cdf4ee3dd2aed91106a1035707ebbae0400ec1ad1d2871e4cdbec2e7003a5f715487d5036d66f4ceb984381fb3acae1eae2b4be0670c3c1cd
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.10.
|
|
1
|
+
0.10.5
|
data/bootstrap_leather.gemspec
CHANGED
|
@@ -2,19 +2,18 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: bootstrap_leather 0.10.
|
|
5
|
+
# stub: bootstrap_leather 0.10.5 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "bootstrap_leather".freeze
|
|
9
|
-
s.version = "0.10.
|
|
9
|
+
s.version = "0.10.5"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
13
13
|
s.authors = ["Karen Lundgren".freeze]
|
|
14
|
-
s.date = "2017-04-
|
|
14
|
+
s.date = "2017-04-09"
|
|
15
15
|
s.description = "BootstrapLeather is a collection of view helpers and scaffold generators that makes it easier to create apps using Twitter Bootstrap".freeze
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com".freeze
|
|
17
|
-
s.executables = ["rails".freeze]
|
|
18
17
|
s.extra_rdoc_files = [
|
|
19
18
|
"LICENSE.txt",
|
|
20
19
|
"README.md"
|
|
@@ -72,7 +71,6 @@ Gem::Specification.new do |s|
|
|
|
72
71
|
"app/views/bootstrap_leather/typography/_dl.html.haml",
|
|
73
72
|
"app/views/bootstrap_leather/typography/_page_header.html.haml",
|
|
74
73
|
"app/views/bootstrap_leather/widgets/_widgets.html.haml",
|
|
75
|
-
"bin/rails",
|
|
76
74
|
"bootstrap_leather.gemspec",
|
|
77
75
|
"config/locales/en.yml",
|
|
78
76
|
"lib/bootstrap_leather.rb",
|
data/lib/bootstrap_leather.rb
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require 'bootstrap_leather/engine'
|
|
4
|
-
|
|
5
3
|
# Bootstrap Leather module
|
|
6
4
|
module BootstrapLeather
|
|
7
5
|
require 'rails'
|
|
@@ -9,6 +7,5 @@ module BootstrapLeather
|
|
|
9
7
|
require 'bootstrap_leather/configuration'
|
|
10
8
|
require 'bootstrap_leather/engine'
|
|
11
9
|
require 'bootstrap_leather/localization'
|
|
12
|
-
# require 'bootstrap_leather/railtie'
|
|
13
10
|
require 'bootstrap_leather/version'
|
|
14
11
|
end
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module BootstrapLeather
|
|
4
|
-
#
|
|
4
|
+
# Bootstrap Leather Engine
|
|
5
5
|
class Engine < ::Rails::Engine
|
|
6
|
-
isolate_namespace BootstrapLeather
|
|
7
6
|
config.app_generators do |g|
|
|
7
|
+
# Use bootstrap leather for scaffolds
|
|
8
8
|
g.templates.unshift BootstrapLeather::Engine.root.join('lib/templates')
|
|
9
9
|
end
|
|
10
10
|
config.generators do |g|
|
|
11
|
-
g.templates.unshift BootstrapLeather::Engine.root.join('lib/templates')
|
|
12
11
|
g.hidden_namespaces << :test_unit << :mongoid
|
|
13
12
|
g.orm :active_record
|
|
14
13
|
g.template_engine :haml
|
data/spec/dummy/config/routes.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap_leather
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -277,8 +277,7 @@ dependencies:
|
|
|
277
277
|
description: BootstrapLeather is a collection of view helpers and scaffold generators
|
|
278
278
|
that makes it easier to create apps using Twitter Bootstrap
|
|
279
279
|
email: karen.e.lundgren@gmail.com
|
|
280
|
-
executables:
|
|
281
|
-
- rails
|
|
280
|
+
executables: []
|
|
282
281
|
extensions: []
|
|
283
282
|
extra_rdoc_files:
|
|
284
283
|
- LICENSE.txt
|
|
@@ -336,7 +335,6 @@ files:
|
|
|
336
335
|
- app/views/bootstrap_leather/typography/_dl.html.haml
|
|
337
336
|
- app/views/bootstrap_leather/typography/_page_header.html.haml
|
|
338
337
|
- app/views/bootstrap_leather/widgets/_widgets.html.haml
|
|
339
|
-
- bin/rails
|
|
340
338
|
- bootstrap_leather.gemspec
|
|
341
339
|
- config/locales/en.yml
|
|
342
340
|
- lib/bootstrap_leather.rb
|
data/bin/rails
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
# This command will automatically be run when you run "rails" with Rails gems
|
|
5
|
-
# installed from the root of your application.
|
|
6
|
-
|
|
7
|
-
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
|
8
|
-
ENGINE_PATH = File.expand_path('../../lib/bootstrap_leather/engine', __FILE__)
|
|
9
|
-
|
|
10
|
-
# Set up gems listed in the Gemfile.
|
|
11
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
12
|
-
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
13
|
-
|
|
14
|
-
require 'rails/all'
|
|
15
|
-
require 'rails/engine/commands'
|