lumberg 2.0.0.pre9 → 2.0.0.pre12

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore DELETED
@@ -1,10 +0,0 @@
1
- pkg/*
2
- *.gem
3
- .bundle
4
- .idea
5
- *.swp
6
- test.rb
7
- *~
8
- coverage/
9
- doc/
10
- Gemfile.lock
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- language: ruby
2
- script: "bundle exec rake spec"
3
- notifications:
4
- email:
5
- recipients:
6
- - engineering@internal.site5.com
7
- on_success: never
8
- on_failure: always
9
- rvm:
10
- - 1.9.3
11
- - 2.0.0
12
- - jruby-19mode
data/lumberg.gemspec DELETED
@@ -1,31 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "lumberg/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "lumberg"
7
- s.version = Lumberg::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ["Justin Mazzi"]
10
- s.email = ["jmazzi@site5.com"]
11
- s.homepage = ""
12
- s.summary = %q{Ruby library for the WHM & cPanel API}
13
- s.description = %q{Ruby library for the WHM & cPanel API; It's not a half day or anything like that}
14
- s.license = 'MIT'
15
-
16
- s.rubyforge_project = "lumberg"
17
-
18
- s.add_runtime_dependency 'json', '~> 1.7.3'
19
- s.add_runtime_dependency 'faraday', '~> 0.8.8'
20
- s.add_runtime_dependency 'faraday_middleware', '~> 0.9.0'
21
- s.add_runtime_dependency('jruby-openssl', '~> 0.7.3') if RUBY_PLATFORM == 'java'
22
- s.add_development_dependency 'rspec', '~> 2.10.0'
23
- s.add_development_dependency 'webmock', '~> 1.8.7'
24
- s.add_development_dependency 'vcr', '~> 2.4.0'
25
- s.add_development_dependency 'rake', '~> 0.9.2.2'
26
-
27
- s.files = `git ls-files`.split("\n")
28
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
29
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
30
- s.require_paths = ["lib"]
31
- end