artemo 3.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # README.md
2
+
3
+ Install gem https://rubygems.org/gems/artemo and use by: `artemo [your file]`.
4
+
5
+ Version 3.0.0
6
+
7
+ * Rewritten, simpler and working.
8
+
9
+ Version 3.0.1
10
+
11
+ * Changed names of methods, add half of rspec tests, add Rakefile and Gemfile.
12
+
13
+ Version 3.0.2
14
+
15
+ * Add `rake file['']` to use on custom texts.
16
+
17
+ Version 3.0.3
18
+
19
+ * All rspec tests are write.
20
+
21
+ Version 3.0.4
22
+
23
+ * All documentation is write, add bin/artemo file and checked code by RuboCop, some methods change names.
24
+
25
+ Version 3.0.5
26
+
27
+ * Gem is ready.
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require 'bundler'
2
+ require 'rspec/core/rake_task'
3
+
4
+ Bundler::GemHelper.install_tasks
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task default: :spec
data/artemo.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ require File.expand_path("../lib/artemo/version", __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'artemo'
5
+ s.version = ArtEmo::VERSION
6
+ s.licenses = ['GPL-3.0']
7
+ s.summary = "Analyze emotions in texts"
8
+ s.description = "Simple program to analyze emotions in texts by keywords database. To use: artemo [path to file]"
9
+ s.author = ["Łukasz Fuszara"]
10
+ s.email = 'opalizoid@gmail.com'
11
+ s.date = '2016-11-11'
12
+ s.homepage = 'https://rubygems.org/gems/artemo'
13
+ s.required_ruby_version = '>= 2.3.1'
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.executable = 'artemo'
17
+ s.require_path = 'lib'
18
+
19
+ s.add_development_dependency 'rake', '~> 11.3'
20
+ s.add_development_dependency 'rspec', '~> 3.5'
21
+ s.add_development_dependency 'yard', '~> 0.9.5'
22
+ end
data/bin/artemo ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'artemo'
4
+ puts ArtEmo.call(ARGV[0])
data/include/.DS_Store ADDED
Binary file