|
1 |
| -$LOAD_PATH.push File.expand_path("../lib", __FILE__) |
| 1 | +$LOAD_PATH.push File.expand_path('../lib', __FILE__) |
2 | 2 | require 'cocaine/version'
|
3 | 3 |
|
4 | 4 | Gem::Specification.new do |s|
|
5 |
| - s.name = "cocaine" |
| 5 | + s.name = 'cocaine' |
6 | 6 | s.version = Cocaine::VERSION.dup
|
7 | 7 | s.platform = Gem::Platform::RUBY
|
8 |
| - s.author = "Jon Yurek" |
9 |
| - |
10 |
| - s.homepage = "https://github.com/thoughtbot/cocaine" |
11 |
| - s.summary = "A small library for doing (command) lines" |
12 |
| - s.description = "A small library for doing (command) lines" |
13 |
| - s.license = "MIT" |
| 8 | + s.author = 'Jon Yurek' |
| 9 | + |
| 10 | + s.homepage = 'https://github.com/thoughtbot/cocaine' |
| 11 | + s.summary = 'A small library for doing (command) lines' |
| 12 | + s.description = 'A small library for doing (command) lines' |
| 13 | + s.license = 'MIT' |
14 | 14 |
|
15 |
| - s.files = `git ls-files`.split("\n") |
16 |
| - s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") |
17 |
| - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } |
18 |
| - s.require_paths = ["lib"] |
| 15 | + s.files = `git ls-files`.split('\n') |
| 16 | + s.test_files = `git ls-files -- {test,spec,features}/*`.split('\n') |
| 17 | + s.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) } |
| 18 | + s.require_paths = ['lib'] |
19 | 19 |
|
20 |
| - s.add_dependency("terrapin", "= 0.6.0.alpha") |
| 20 | + s.add_dependency('terrapin', '= 0.6.0.alpha') |
21 | 21 | s.add_development_dependency('rspec')
|
22 | 22 | s.add_development_dependency('bourne')
|
23 | 23 | s.add_development_dependency('mocha')
|
24 | 24 | s.add_development_dependency('rake')
|
25 |
| - s.add_development_dependency('activesupport', ">= 3.0.0", "< 5.0") |
| 25 | + s.add_development_dependency('activesupport', '>= 3.0.0', '< 5.0') |
26 | 26 | s.add_development_dependency('pry')
|
27 | 27 | end
|
28 | 28 |
|
0 commit comments