Skip to content

Commit 7fdb7f6

Browse files
Change specification variable name
1 parent 53a421c commit 7fdb7f6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

critical-path-css-rails.gemspec

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
require File.expand_path('../lib/critical_path_css/rails/version', __FILE__)
22

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-
s.email = '[email protected]'
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+
gem.email = '[email protected]'
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'
1212

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'
1616

17-
s.add_development_dependency 'rspec', '~> 3.7'
17+
gem.add_development_dependency 'rspec', '~> 3.7'
1818

19-
s.extensions = ['ext/npm/extconf.rb']
19+
gem.extensions = ['ext/npm/extconf.rb']
2020
end

0 commit comments

Comments
 (0)