mistiq 0.0.2

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,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZDBiNTkyZjZmOWYzZThmODc4NGNkMmVmNmQxYmVmMmI0NzU4ODBkYg==
5
+ data.tar.gz: !binary |-
6
+ ZTI3OTM2MzEzYzI4Mjc2NTQ4ZGNjNWJiN2VkOWI4MTc3MmZlYzI0OQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MTVlM2NhMDk1MzA0MTE3ODA3MTMzZjE5NmI5ODViYTJkMTZiYWM4MjRmZmY0
10
+ OTZmOWJhOTVkMjMyYjljOWU3YWZhNTkxNjhmMTJmM2Y5N2VlZDc0MmFmMTI3
11
+ NTRiODYyOWRmNjgzZTNlMDBjNTg2YTEyNWE1Y2VlNTIwNTc0YzA=
12
+ data.tar.gz: !binary |-
13
+ NGM4YTViMTU0ZGJjZGNjZmNhOTY3M2M2MzE5ODJlNzFiOGM2MjViMDYwMmY3
14
+ ZTkyMWY5OTA4MWY1NmI0ZWM1OGQwMzk2N2JiMDU2YzlmY2UxODRjMjYzNzlk
15
+ ZmU4OWIxZWExYTUxYWJlZGI4NTNjOGE2Zjg1YzdiYTkyM2MxZjE=
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
data/bin/mistiq ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'mistiq'
4
+ puts Mistiq.hi(ARGV[0])
data/lib/mistiq.rb ADDED
@@ -0,0 +1 @@
1
+ require 'mistiq/base'
@@ -0,0 +1,3 @@
1
+ module Mistiq
2
+ SITE_URL = "http://www.andreidesign.com"
3
+ end
@@ -0,0 +1,2 @@
1
+ require 'test/unit'
2
+ require 'mistiq'
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mistiq
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Andrei Papancea
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-10-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: alp2200@columbia.edu
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - Rakefile
20
+ - lib/mistiq.rb
21
+ - lib/mistiq/base.rb
22
+ - bin/mistiq
23
+ - test/test_mistiq.rb
24
+ homepage:
25
+ licenses: []
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.1.5
44
+ signing_key:
45
+ specification_version: 3
46
+ summary: Mistiq
47
+ test_files:
48
+ - test/test_mistiq.rb