social_tokenizer 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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +6 -10
- data/VERSION +1 -1
- data/cucumber.yml +1 -0
- data/social_tokenizer.gemspec +5 -4
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 033b0946485085189337aa62f946877ccffa0359
|
|
4
|
+
data.tar.gz: 5a549e6f192cba9ba907d15028b5680291fb4f3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdd66574167a3cf61e433274677dae159d930c4fab16c017495c3d9bdf0328acca11abad47f9d0ad7e1c6f2ae7d01c635de2aaaed075ef3243fe74bad6436a06
|
|
7
|
+
data.tar.gz: 53b169ea05c3ecf19f8bd20caca4db799c4d950caffebda3f3ea7ec948b36a3476696b621a81e66d04a45be6b8f093a46fa61313c6dafd8ca95a4a196d38941b
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
17
|
gem.name = "social_tokenizer"
|
|
18
|
-
gem.homepage = "http://
|
|
18
|
+
gem.homepage = "http://www.gemvein.com/museum/cases/social_tokenizer"
|
|
19
19
|
gem.license = "MIT"
|
|
20
20
|
gem.summary = %Q{Tokenizes strings for use in social applications.}
|
|
21
21
|
gem.description = %Q{Tokenizes strings for use in social applications.}
|
|
@@ -25,15 +25,11 @@ Jeweler::Tasks.new do |gem|
|
|
|
25
25
|
end
|
|
26
26
|
Jeweler::RubygemsDotOrgTasks.new
|
|
27
27
|
|
|
28
|
-
require '
|
|
29
|
-
require '
|
|
30
|
-
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
31
|
-
spec.pattern = FileList['spec/**/*_spec.rb']
|
|
32
|
-
end
|
|
28
|
+
require 'cucumber'
|
|
29
|
+
require 'cucumber/rake/task'
|
|
33
30
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
spec.rcov = true
|
|
31
|
+
Cucumber::Rake::Task.new(:features) do |t|
|
|
32
|
+
t.profile = 'ci'
|
|
37
33
|
end
|
|
38
34
|
|
|
39
|
-
task :default => :
|
|
35
|
+
task :default => :features
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/cucumber.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ci: --no-source --format pretty --tags ~@not_ready
|
data/social_tokenizer.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: social_tokenizer 0.0.
|
|
5
|
+
# stub: social_tokenizer 0.0.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "social_tokenizer"
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Karen Lundgren"]
|
|
14
|
-
s.date = "2014-05-
|
|
14
|
+
s.date = "2014-05-27"
|
|
15
15
|
s.description = "Tokenizes strings for use in social applications."
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -28,6 +28,7 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
"README.md",
|
|
29
29
|
"Rakefile",
|
|
30
30
|
"VERSION",
|
|
31
|
+
"cucumber.yml",
|
|
31
32
|
"features/social_tokenizer.feature",
|
|
32
33
|
"features/step_definitions/social_tokenizer_steps.rb",
|
|
33
34
|
"features/support/env.rb",
|
|
@@ -42,7 +43,7 @@ Gem::Specification.new do |s|
|
|
|
42
43
|
"lib/social_tokenizer/version.rb",
|
|
43
44
|
"social_tokenizer.gemspec"
|
|
44
45
|
]
|
|
45
|
-
s.homepage = "http://
|
|
46
|
+
s.homepage = "http://www.gemvein.com/museum/cases/social_tokenizer"
|
|
46
47
|
s.licenses = ["MIT"]
|
|
47
48
|
s.rubygems_version = "2.2.2"
|
|
48
49
|
s.summary = "Tokenizes strings for use in social applications."
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: social_tokenizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -139,6 +139,7 @@ files:
|
|
|
139
139
|
- README.md
|
|
140
140
|
- Rakefile
|
|
141
141
|
- VERSION
|
|
142
|
+
- cucumber.yml
|
|
142
143
|
- features/social_tokenizer.feature
|
|
143
144
|
- features/step_definitions/social_tokenizer_steps.rb
|
|
144
145
|
- features/support/env.rb
|
|
@@ -152,7 +153,7 @@ files:
|
|
|
152
153
|
- lib/social_tokenizer/tokenizer.rb
|
|
153
154
|
- lib/social_tokenizer/version.rb
|
|
154
155
|
- social_tokenizer.gemspec
|
|
155
|
-
homepage: http://
|
|
156
|
+
homepage: http://www.gemvein.com/museum/cases/social_tokenizer
|
|
156
157
|
licenses:
|
|
157
158
|
- MIT
|
|
158
159
|
metadata: {}
|