font-roboto-rails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8fe93808123ce79036b62b222c412f84a4d57a62
4
- data.tar.gz: 0aaea974393da3d095f36299bbe4b7797c3db484
3
+ metadata.gz: c08f0f0bc8ef5225aa3e90acd54b7fe121177b0b
4
+ data.tar.gz: 63a373b398488dee4dbe37989810c9a20be6cd8b
5
5
  SHA512:
6
- metadata.gz: c545516dda4699095cd55fc95c2698a0452fb0d18474e6f2dcf5aa6671ffeffb0bce695a3e63c2805ed68cc6d19d57df8ab500eb440091a2ebe0f230c23ff2b2
7
- data.tar.gz: 5281d74e130579cbd9f953fac235f2d6a490d26b89dd6703f2d55da5f03b6de6e31d35afdbc76e78f7e813a5c08f50c30019284fd085c6d2bd4b000ecea30254
6
+ metadata.gz: 3a4793e6d32536dc4ca2ed983fa714bb1d6a10ecb58e613345f1fda8971b649fa6d52959fe4ec675d2ac28037b81c5f5ad2308884f09d795c5009689c8e00bf8
7
+ data.tar.gz: bfe5e487bfe2606634fbf9e9e62dc789edd8b085a4e6a906dced0a3ad143fbd22a8c8b851a0b410e5bd69cf798c355b5a04ea6b351159cd25b5df538c3a2937b
@@ -0,0 +1,3 @@
1
+ .bundle/
2
+ Gemfile.lock
3
+ pkg/
@@ -0,0 +1,121 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.3
3
+ # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
4
+ # to ignore them, so only the ones explicitly set in this file are enabled.
5
+ DisabledByDefault: true
6
+ Exclude:
7
+ - '**/templates/**/*'
8
+ - '**/vendor/**/*'
9
+ - 'actionpack/lib/action_dispatch/journey/parser.rb'
10
+ - 'db/schema.rb'
11
+
12
+ # Prefer &&/|| over and/or.
13
+ Style/AndOr:
14
+ Enabled: true
15
+
16
+ # Do not use braces for hash literals when they are the last argument of a
17
+ # method call.
18
+ Style/BracesAroundHashParameters:
19
+ Enabled: true
20
+
21
+ # Align `when` with `case`.
22
+ Style/CaseIndentation:
23
+ Enabled: true
24
+
25
+ # Align comments with method definitions.
26
+ Style/CommentIndentation:
27
+ Enabled: true
28
+
29
+ # No extra empty lines.
30
+ Style/EmptyLines:
31
+ Enabled: true
32
+
33
+ # In a regular class definition, no empty lines around the body.
34
+ Style/EmptyLinesAroundClassBody:
35
+ Enabled: true
36
+
37
+ # In a regular module definition, no empty lines around the body.
38
+ Style/EmptyLinesAroundModuleBody:
39
+ Enabled: true
40
+
41
+ # Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
42
+ Style/HashSyntax:
43
+ Enabled: true
44
+
45
+ # Method definitions after `private` or `protected` isolated calls need one
46
+ # extra level of indentation.
47
+ Style/IndentationConsistency:
48
+ Enabled: true
49
+ EnforcedStyle: normal
50
+
51
+ # Two spaces, no tabs (for indentation).
52
+ Style/IndentationWidth:
53
+ Enabled: true
54
+
55
+ Style/SpaceAfterColon:
56
+ Enabled: true
57
+
58
+ Style/SpaceAfterComma:
59
+ Enabled: true
60
+
61
+ Style/SpaceAroundEqualsInParameterDefault:
62
+ Enabled: true
63
+
64
+ Style/SpaceAroundKeyword:
65
+ Enabled: true
66
+
67
+ Style/SpaceAroundOperators:
68
+ Enabled: true
69
+
70
+ Style/SpaceBeforeFirstArg:
71
+ Enabled: true
72
+
73
+ # Defining a method with parameters needs parentheses.
74
+ Style/MethodDefParentheses:
75
+ Enabled: true
76
+
77
+ # Use `foo {}` not `foo{}`.
78
+ Style/SpaceBeforeBlockBraces:
79
+ Enabled: true
80
+
81
+ # Use `foo { bar }` not `foo {bar}`.
82
+ Style/SpaceInsideBlockBraces:
83
+ Enabled: true
84
+
85
+ # Use `{ a: 1 }` not `{a:1}`.
86
+ Style/SpaceInsideHashLiteralBraces:
87
+ Enabled: true
88
+
89
+ Style/SpaceInsideParens:
90
+ Enabled: true
91
+
92
+ # Check quotes usage according to lint rule below.
93
+ Style/StringLiterals:
94
+ Enabled: true
95
+ EnforcedStyle: single_quotes
96
+
97
+ # Detect hard tabs, no hard tabs.
98
+ Style/Tab:
99
+ Enabled: true
100
+
101
+ # Blank lines should not have any spaces.
102
+ Style/TrailingBlankLines:
103
+ Enabled: true
104
+
105
+ # No trailing whitespace.
106
+ Style/TrailingWhitespace:
107
+ Enabled: true
108
+
109
+ # Use quotes for string literals when they are enough.
110
+ Style/UnneededPercentQ:
111
+ Enabled: true
112
+
113
+ # Align `end` with the matching keyword or starting expression except for
114
+ # assignments, where it should be aligned with the LHS.
115
+ Lint/EndAlignment:
116
+ Enabled: true
117
+ EnforcedStyleAlignWith: variable
118
+
119
+ # Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
120
+ Lint/RequireParentheses:
121
+ Enabled: true
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Declare your gem's dependencies in font-roboto-rails.gemspec.
4
+ gemspec
@@ -0,0 +1,24 @@
1
+ $:.push File.expand_path('../lib', __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require 'font-roboto-rails/version'
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'font-roboto-rails'
9
+ spec.version = FontRobotoRails::VERSION
10
+ spec.authors = ['Vladimir Radetsky']
11
+ spec.email = ['chezka.rus@gmail.com']
12
+ spec.homepage = 'https://rubygems.org/gems/font-roboto-rails'
13
+ spec.summary = 'Font Roboto Rails - Roboto font for rails.'
14
+ spec.description = 'Just font'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.require_paths = ['lib']
18
+
19
+ spec.add_dependency 'less'
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.3'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'less-rails'
24
+ end
@@ -1,5 +1,4 @@
1
1
  module FontRobotoRails
2
2
  class Engine < ::Rails::Engine
3
- isolate_namespace FontRobotoRails
4
3
  end
5
4
  end
@@ -1,3 +1,3 @@
1
1
  module FontRobotoRails
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,37 +1,65 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font-roboto-rails
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
  - Vladimir Radetsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-03 00:00:00.000000000 Z
11
+ date: 2017-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: less
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 5.0.1
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
38
  - - "~>"
25
39
  - !ruby/object:Gem::Version
26
- version: 5.0.1
40
+ version: '1.3'
27
41
  - !ruby/object:Gem::Dependency
28
- name: less
42
+ name: rake
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - ">="
32
46
  - !ruby/object:Gem::Version
33
47
  version: '0'
34
- type: :runtime
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: less-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
@@ -45,6 +73,9 @@ executables: []
45
73
  extensions: []
46
74
  extra_rdoc_files: []
47
75
  files:
76
+ - ".gitignore"
77
+ - ".rubocop.yml"
78
+ - Gemfile
48
79
  - README.md
49
80
  - Rakefile
50
81
  - app/assets/fonts/roboto-bold.eot
@@ -68,6 +99,7 @@ files:
68
99
  - app/assets/fonts/roboto-thin.woff
69
100
  - app/assets/fonts/roboto-thin.woff2
70
101
  - app/assets/stylesheets/font-roboto-rails.less
102
+ - font-roboto-rails.gemspec
71
103
  - lib/font-roboto-rails.rb
72
104
  - lib/font-roboto-rails/version.rb
73
105
  homepage: https://rubygems.org/gems/font-roboto-rails