|
1 | 1 | require File.expand_path('../lib/critical_path_css/rails/version', __FILE__) |
2 | 2 |
|
3 | | -Gem::Specification.new do |s| |
4 | | - s.name = 'critical-path-css-rails' |
5 | | - s.version = CriticalPathCSS::Rails::VERSION |
6 | | - s.platform = Gem::Platform::RUBY |
7 | | - s.authors = ['Michael Misshore'] |
8 | | - |
9 | | - s.summary = 'Critical Path CSS for Rails!' |
10 | | - s.description = 'Only load the CSS you need for the initial viewport in Rails!' |
11 | | - s.license = 'MIT' |
| 3 | +Gem::Specification.new do |gem| |
| 4 | + gem.name = 'critical-path-css-rails' |
| 5 | + gem.version = CriticalPathCSS::Rails::VERSION |
| 6 | + gem.platform = Gem::Platform::RUBY |
| 7 | + gem.authors = ['Michael Misshore'] |
| 8 | + |
| 9 | + gem.summary = 'Critical Path CSS for Rails!' |
| 10 | + gem.description = 'Only load the CSS you need for the initial viewport in Rails!' |
| 11 | + gem.license = 'MIT' |
12 | 12 |
|
13 | | - s.files = `git ls-files`.split("\n") |
14 | | - s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } |
15 | | - s.require_path = 'lib' |
| 13 | + gem.files = `git ls-files`.split("\n") |
| 14 | + gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } |
| 15 | + gem.require_path = 'lib' |
16 | 16 |
|
17 | | - s.add_development_dependency 'rspec', '~> 3.7' |
| 17 | + gem.add_development_dependency 'rspec', '~> 3.7' |
18 | 18 |
|
19 | | - s.extensions = ['ext/npm/extconf.rb'] |
| 19 | + gem.extensions = ['ext/npm/extconf.rb'] |
20 | 20 | end |
0 commit comments