-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoxymoron.gemspec
24 lines (19 loc) · 897 Bytes
/
oxymoron.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../lib/oxymoron/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "oxymoron"
gem.authors = ["Kononenko Paul"]
gem.email = ["storuky@gmail.com"]
gem.description = "Make your Single Page Application with new architecture"
gem.summary = "It's using AngularJS and Rails >= 4.2"
gem.version = Oxymoron::VERSION
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 1.9.3'
gem.add_runtime_dependency "awesome_print"
gem.add_runtime_dependency 'pry'
gem.add_runtime_dependency 'pry-remote'
gem.add_runtime_dependency 'pry-rails'
gem.add_runtime_dependency 'pry-stack_explorer'
end