simple_services 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require "rake/testtask"
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.test_files = Dir["test/**/*_test.rb"]
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
File without changes
@@ -0,0 +1,10 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "simple_services"
3
+ s.version = "0.0.1"
4
+ s.description = "Ruby client to Simple Services API!"
5
+ s.summary = "Simple Services API client"
6
+ s.author = "Lucas D'Avila"
7
+ s.email = 'lucas@lucasdavi.la'
8
+ s.homepage = 'https://github.com/simpleservices/simpleservices'
9
+ s.files = Dir["{lib/**/*.rb,README.rdoc,test/**/*.rb,Rakefile,*.gemspec}"]
10
+ end
@@ -0,0 +1,4 @@
1
+ require "test/unit"
2
+
3
+ class SimpleServicesTest < Test::Unit::TestCase
4
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simple_services
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Lucas D'Avila
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-21 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Ruby client to Simple Services API!
15
+ email: lucas@lucasdavi.la
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/simple_services.rb
21
+ - test/simple_services_test.rb
22
+ - Rakefile
23
+ - simple_services.gemspec
24
+ homepage: https://github.com/simpleservices/simpleservices
25
+ licenses: []
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ! '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 1.8.24
45
+ signing_key:
46
+ specification_version: 3
47
+ summary: Simple Services API client
48
+ test_files: []