sinc 0.0.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5470ab670861b8b3df030eaefaa8ed60d133a911
4
+ data.tar.gz: 2fad2e9ed27975a3dac02e3ad599216b443890ef
5
+ SHA512:
6
+ metadata.gz: 0bdb6560b89f805376cffc41144f88cbac416a21e0342eedeaf2185a472da901b4aa62f7014f4e771fd8c8df81c700f73ac533cf2946c3cb8b4c5389cd55716e
7
+ data.tar.gz: f707313ad8db2ee4cdc3f24e0b9a54c5f60081e839a69e02b81d00940e7b94227e24523048f6f56cde55c83de3a06b3aa1bed0d11754b3ccef6e000b33e4823f
data/lib/sinc.rb ADDED
@@ -0,0 +1,6 @@
1
+ class Sinc
2
+ def self.test_gem
3
+ "sinc"
4
+ end
5
+ end
6
+
data/spec/sinc_spec.rb ADDED
@@ -0,0 +1,7 @@
1
+ describe "sinc gem" do
2
+ require "sinc"
3
+
4
+ it "should say hi" do
5
+ expect(Sinc.test_gem).to eq("sinc")
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ require "sinatra"
2
+ require "rspec"
3
+ require "rack/test"
4
+ require "spec_helper"
5
+ require "lib/sinc.rb"
6
+
7
+ Rspec.configure do |config|
8
+ config.color_enabled = true
9
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sinc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Weiksnar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: gem under construction
14
+ email: aweiksnar@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/sinc.rb
20
+ - spec/sinc_spec.rb
21
+ - spec/spec_helper.rb
22
+ homepage:
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.0.5
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Sinatra Console
46
+ test_files:
47
+ - spec/sinc_spec.rb
48
+ - spec/spec_helper.rb