analytica 0.0.1 → 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.
- data/Rakefile +11 -10
- data/lib/analytica.rb +2 -2
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
gem 'hoe', '>= 2.0.0'
|
|
3
|
-
|
|
3
|
+
gem 'typestrict', '>= 0.0.4'
|
|
4
4
|
require 'hoe'
|
|
5
|
-
require '
|
|
5
|
+
require 'typestrict'
|
|
6
6
|
require 'lib/analytica'
|
|
7
7
|
|
|
8
|
-
Hoe.
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
Hoe.spec 'Analytica' do
|
|
9
|
+
self.version = Analytica::VERSION
|
|
10
|
+
self.name = 'analytica'
|
|
11
|
+
self.author = 'Raeez Lorgat'
|
|
12
|
+
self.description = 'Data Analysis wrapper for ruby arrays'
|
|
13
|
+
self.email = 'raeez@mit.edu'
|
|
14
|
+
self.summary = 'Analytica implements simple data analysis and graph plotting over ruby arrays'
|
|
15
|
+
self.url = 'http://www.raeez.com/anlaytica'
|
|
16
|
+
self.extra_deps = ['typestrict']
|
|
16
17
|
end
|
|
17
18
|
|
|
18
19
|
desc "Release and publish documentation"
|
data/lib/analytica.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: analytica
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Raeez Lorgat
|
|
@@ -19,7 +19,7 @@ date: 2010-08-03 00:00:00 -04:00
|
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
|
-
name:
|
|
22
|
+
name: typestrict
|
|
23
23
|
prerelease: false
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
25
|
none: false
|