science 0.0.1a

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ pkg/
2
+ doc/
3
+ .yardoc/
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use --create 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,62 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ science (0.2.0)
5
+ version (~> 1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ coderay (1.0.8)
11
+ diff-lcs (1.1.3)
12
+ fuubar (1.1.0)
13
+ rspec (~> 2.0)
14
+ rspec-instafail (~> 0.2.0)
15
+ ruby-progressbar (~> 1.0.0)
16
+ github-markup (0.7.4)
17
+ guard (1.5.4)
18
+ listen (>= 0.4.2)
19
+ lumberjack (>= 1.0.2)
20
+ pry (>= 0.9.10)
21
+ thor (>= 0.14.6)
22
+ guard-rspec (2.1.2)
23
+ guard (>= 1.1)
24
+ rspec (~> 2.11)
25
+ guard-yard (2.0.1)
26
+ guard (>= 1.1.0)
27
+ yard (>= 0.7.0)
28
+ listen (0.6.0)
29
+ lumberjack (1.0.2)
30
+ method_source (0.8.1)
31
+ pry (0.9.10)
32
+ coderay (~> 1.0.5)
33
+ method_source (~> 0.8)
34
+ slop (~> 3.3.1)
35
+ rb-fsevent (0.9.2)
36
+ redcarpet (2.2.2)
37
+ rspec (2.12.0)
38
+ rspec-core (~> 2.12.0)
39
+ rspec-expectations (~> 2.12.0)
40
+ rspec-mocks (~> 2.12.0)
41
+ rspec-core (2.12.0)
42
+ rspec-expectations (2.12.0)
43
+ diff-lcs (~> 1.1.3)
44
+ rspec-instafail (0.2.4)
45
+ rspec-mocks (2.12.0)
46
+ ruby-progressbar (1.0.2)
47
+ slop (3.3.3)
48
+ thor (0.16.0)
49
+ version (1.0.0)
50
+ yard (0.8.3)
51
+
52
+ PLATFORMS
53
+ ruby
54
+
55
+ DEPENDENCIES
56
+ fuubar (~> 1.1)
57
+ github-markup (~> 0.7)
58
+ guard-rspec (~> 2.1)
59
+ guard-yard (~> 2.0)
60
+ rb-fsevent (~> 0.9)
61
+ redcarpet (~> 2.2)
62
+ science!
@@ -0,0 +1,11 @@
1
+ guard 'yard' do
2
+ watch(%r{app/.+\.rb})
3
+ watch(%r{lib/.+\.rb})
4
+ watch(%r{ext/.+\.c})
5
+ end
6
+
7
+ guard 'rspec', cli: '-c -f Fuubar' do
8
+ watch(%r{^spec/.+_spec\.rb$})
9
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
10
+ watch('spec/spec_helper.rb') { "spec" }
11
+ end
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Ryan Scott Lewis <ryan@rynet.us>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # Science
2
+
3
+ * [Gem](https://rubygems.org/gems/science)
4
+ * [Source](https://github.com/RyanScottLewis/science)
5
+ * [Documentation](http://rubydoc.info/gems/science/frames)
6
+
7
+ Science, as homosapiens understand it, written in Ruby.
8
+
9
+ ## Install
10
+
11
+ ### Bundler: `gem 'science'`
12
+
13
+ ### RubyGems: `gem install science`
14
+
15
+ ## Usage
16
+
17
+ ## Contributing
18
+
19
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
20
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
21
+ * Fork the project
22
+ * Start a feature/bugfix branch
23
+ * Commit and push until you are happy with your contribution
24
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
25
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
26
+
27
+ ## Copyright
28
+
29
+ Copyright © 2013 Ryan Scott Lewis <ryan@rynet.us>.
30
+
31
+ The MIT License (MIT) - See LICENSE for further details.
@@ -0,0 +1,58 @@
1
+ require 'pathname'
2
+
3
+ def require_task(path)
4
+ begin
5
+ require path
6
+
7
+ yield
8
+ rescue LoadError
9
+ puts '', "Could not load '#{path}'.", 'Try to `rake gem:spec` and `bundle install` and try again.', ''
10
+ end
11
+ end
12
+
13
+ spec = Gem::Specification.new do |s|
14
+
15
+ # Variables
16
+ s.name = 'science'
17
+ s.author = 'Ryan Scott Lewis'
18
+ s.email = 'ryan@rynet.us'
19
+ s.summary = 'Science, as homosapiens understand it, written in Ruby'
20
+ s.description = 'Knowledge.'
21
+
22
+ # Dependencies
23
+ s.add_dependency 'version', '~> 1.0'
24
+ s.add_development_dependency 'guard-rspec', '~> 2.1'
25
+ s.add_development_dependency 'guard-yard', '~> 2.0'
26
+ s.add_development_dependency 'rb-fsevent', '~> 0.9'
27
+ s.add_development_dependency 'fuubar', '~> 1.1'
28
+ s.add_development_dependency 'redcarpet', '~> 2.2'
29
+ s.add_development_dependency 'github-markup', '~> 0.7'
30
+
31
+ # Pragmatically set variables
32
+ s.homepage = "http://github.com/RyanScottLewis/#{s.name}"
33
+ s.version = Pathname.glob('VERSION*').first.read
34
+ s.require_paths = ['lib']
35
+ s.files = `git ls-files`.lines.to_a.collect { |s| s.strip }
36
+ s.executables = `git ls-files -- bin/*`.lines.to_a.collect { |s| File.basename(s.strip) }
37
+
38
+ end
39
+
40
+ desc 'Generate the gemspec defined in this Rakefile'
41
+ task :gemspec do
42
+ Pathname.new("#{spec.name}.gemspec").open('w') { |f| f.write(spec.to_ruby) }
43
+ end
44
+
45
+ require_task 'rake/version_task' do
46
+ Rake::VersionTask.new do |t|
47
+ t.with_git_tag = true
48
+ t.with_gemspec = spec
49
+ end
50
+ end
51
+
52
+ require 'rubygems/package_task'
53
+ Gem::PackageTask.new(spec) do |t|
54
+ t.need_zip = false
55
+ t.need_tar = false
56
+ end
57
+
58
+ task :default => :gemspec
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1a
@@ -0,0 +1,39 @@
1
+ module Science
2
+
3
+ # Modules:
4
+
5
+ # Mathematics, Logic, Statistics
6
+
7
+ # ClassicalPhysics, ModernPhysics, ComputationalPhysics, AtomicPhysics, NuclearPhysics, ParticlePhysics, AppliedPhysics
8
+ # ExperimentalPhysics, TheoreticalPhysics, CondensedMatterPhysics, PlasmaPhysics, Thermodynamics, MolecularPhysics
9
+ # BioPhysics, Mechanics, ClassicalMechanics, QuantumMechanics, ContinuumMechanics, SolidMechanics, FluidMechanics
10
+ # Relativity, GeneralRelativity, SpecialRelativity, MathematicalPhysics
11
+
12
+ # AnalyticalChemistry, AstroChemistry, BioChemistry, Crystallography, EnvironmentalChemistry, FoodChemistry
13
+ # GeoChemistry, GreenChemistry, NuclearChemistry, OrganicChemistry, InorganicChemistry, PhotoChemistry, PhysicalChemistry
14
+ # RadioChemistry, SolidStateChemistry, StereoChemistry, SupramolecularChemistry, TheoreticalChemistry
15
+
16
+ # Cosmology, ExtragalacticAstronomy, GalacticAstronomy, PlanetaryAstronomy, StellarAstronomy, SolarAstronomy
17
+
18
+ # Meteorology, Climatology, Ecology, Environmental, Geodesy, Geology, Geomorphology, Geophysics, Glaciology, Hydrology,
19
+ # Limnology, Oceanography, Paleoclimatology, Paleoecology, Palynology, Geography, Pedology, Edaphology
20
+
21
+ # Anatomy, AstroBiology, BioGeography, BehavioralNeuroscience, BotanyCellBiology, ConservationBiology, CryoBiology
22
+ # DevelopmentalBiology, Ecology, EthnoBiology, Ethology, EvolutionaryBiology, Genetics, Gerontology, Immunology, Limnology
23
+ # MarineBiology, MicroBiology, MolecularBiology, Neuroscience, Paleontology, Parasitology, Physiology, RadioBiology
24
+ # SoilBiology, Systematics, Toxicology, Zoology, MathematicalBiology, TheoreticalBiology, SocioBiology
25
+
26
+ # Anthropology, Archaeology, Criminology, Demography, Economics, Education, HumanGeography, InternationalRelations
27
+ # Law, Linguistics, PoliticalScience, Psychology, Sociology
28
+
29
+ # AerospaceEngineering, BiologicalEngineering, AgriculturalEngineering, BiomedicalEngineering, ChemicalEngineering
30
+ # CivilEngineering, ElectricalEngineering, FireProtectionEngineering, GeneticEngineering, IndustrialEngineering
31
+ # MechanicalEngineering, MilitaryEngineering, MiningEngineering, NuclearEngineering, RoboticsEngineering
32
+ # ComputerEngineering, SoftwareEngineering, NeuralEngineering
33
+
34
+ # Dentistry, Epidemiology, Medicinal, Pharmaceutical, Veterinary
35
+
36
+ # ArtificialIntelligence, Bioethics, Bioinformatics, Biostatistics, CognitiveScience, Cultural, Cybernetics
37
+ # Ethnics, EvolutionaryPsychology, Forestry, Military, Semiotics
38
+
39
+ end
@@ -0,0 +1,47 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "science"
5
+ s.version = "0.0.1a"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Ryan Scott Lewis"]
9
+ s.date = "2013-02-23"
10
+ s.description = "Knowledge."
11
+ s.email = "ryan@rynet.us"
12
+ s.files = [".gitignore", ".rvmrc", "Gemfile", "Gemfile.lock", "Guardfile", "LICENSE", "README.md", "Rakefile", "VERSION", "lib/science.rb", "spec/science_spec.rb", "spec/spec_helper.rb"]
13
+ s.homepage = "http://github.com/RyanScottLewis/science"
14
+ s.require_paths = ["lib"]
15
+ s.rubygems_version = "1.8.25"
16
+ s.summary = "Science, as homosapiens understand it, written in Ruby"
17
+
18
+ if s.respond_to? :specification_version then
19
+ s.specification_version = 3
20
+
21
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
22
+ s.add_runtime_dependency(%q<version>, ["~> 1.0"])
23
+ s.add_development_dependency(%q<guard-rspec>, ["~> 2.1"])
24
+ s.add_development_dependency(%q<guard-yard>, ["~> 2.0"])
25
+ s.add_development_dependency(%q<rb-fsevent>, ["~> 0.9"])
26
+ s.add_development_dependency(%q<fuubar>, ["~> 1.1"])
27
+ s.add_development_dependency(%q<redcarpet>, ["~> 2.2"])
28
+ s.add_development_dependency(%q<github-markup>, ["~> 0.7"])
29
+ else
30
+ s.add_dependency(%q<version>, ["~> 1.0"])
31
+ s.add_dependency(%q<guard-rspec>, ["~> 2.1"])
32
+ s.add_dependency(%q<guard-yard>, ["~> 2.0"])
33
+ s.add_dependency(%q<rb-fsevent>, ["~> 0.9"])
34
+ s.add_dependency(%q<fuubar>, ["~> 1.1"])
35
+ s.add_dependency(%q<redcarpet>, ["~> 2.2"])
36
+ s.add_dependency(%q<github-markup>, ["~> 0.7"])
37
+ end
38
+ else
39
+ s.add_dependency(%q<version>, ["~> 1.0"])
40
+ s.add_dependency(%q<guard-rspec>, ["~> 2.1"])
41
+ s.add_dependency(%q<guard-yard>, ["~> 2.0"])
42
+ s.add_dependency(%q<rb-fsevent>, ["~> 0.9"])
43
+ s.add_dependency(%q<fuubar>, ["~> 1.1"])
44
+ s.add_dependency(%q<redcarpet>, ["~> 2.2"])
45
+ s.add_dependency(%q<github-markup>, ["~> 0.7"])
46
+ end
47
+ end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe Science do
4
+
5
+ it 'should have specs' do
6
+ pending
7
+ end
8
+
9
+ end
@@ -0,0 +1,2 @@
1
+ require 'bundler/setup'
2
+ require 'at/setup'
metadata ADDED
@@ -0,0 +1,172 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: science
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1a
5
+ prerelease: 5
6
+ platform: ruby
7
+ authors:
8
+ - Ryan Scott Lewis
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-23 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: version
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: guard-rspec
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '2.1'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '2.1'
46
+ - !ruby/object:Gem::Dependency
47
+ name: guard-yard
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '2.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rb-fsevent
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: '0.9'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: '0.9'
78
+ - !ruby/object:Gem::Dependency
79
+ name: fuubar
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: '1.1'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: '1.1'
94
+ - !ruby/object:Gem::Dependency
95
+ name: redcarpet
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ~>
100
+ - !ruby/object:Gem::Version
101
+ version: '2.2'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: '2.2'
110
+ - !ruby/object:Gem::Dependency
111
+ name: github-markup
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '0.7'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '0.7'
126
+ description: Knowledge.
127
+ email: ryan@rynet.us
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - .gitignore
133
+ - .rvmrc
134
+ - Gemfile
135
+ - Gemfile.lock
136
+ - Guardfile
137
+ - LICENSE
138
+ - README.md
139
+ - Rakefile
140
+ - VERSION
141
+ - lib/science.rb
142
+ - science.gemspec
143
+ - spec/science_spec.rb
144
+ - spec/spec_helper.rb
145
+ homepage: http://github.com/RyanScottLewis/science
146
+ licenses: []
147
+ post_install_message:
148
+ rdoc_options: []
149
+ require_paths:
150
+ - lib
151
+ required_ruby_version: !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - ! '>='
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
157
+ segments:
158
+ - 0
159
+ hash: 1918570815646396757
160
+ required_rubygems_version: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>'
164
+ - !ruby/object:Gem::Version
165
+ version: 1.3.1
166
+ requirements: []
167
+ rubyforge_project:
168
+ rubygems_version: 1.8.25
169
+ signing_key:
170
+ specification_version: 3
171
+ summary: Science, as homosapiens understand it, written in Ruby
172
+ test_files: []