memorybee 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/README.md +14 -3
- data/lib/memorybee.rb +1 -0
- data/lib/memorybee/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -21,16 +21,27 @@ Or install it yourself as:
|
|
21
21
|
|
22
22
|
While you're free to do what you like with this, I use it on heroku.
|
23
23
|
|
24
|
-
mkdir
|
25
|
-
cd
|
24
|
+
mkdir memorybee-poller
|
25
|
+
cd memorybee-poller
|
26
26
|
git init
|
27
|
-
echo
|
27
|
+
echo 'source "https://rubygems.org"
|
28
|
+
ruby "2.0.0"
|
29
|
+
gem "memorybee"" > Gemfile
|
30
|
+
echo "require 'memorybee'; Memorybee::poll" > poll.rb
|
31
|
+
bundle
|
32
|
+
git add .
|
28
33
|
git commit . -m "poller"
|
29
34
|
heroku create
|
30
35
|
git push heroku master
|
31
36
|
heroku addons:add scheduler:standard
|
32
37
|
heroku addons:open scheduler
|
33
38
|
# add a schedule to run "ruby poll.rb" daily
|
39
|
+
heroku config:set MEMRISE_USER=your_memrise_username
|
40
|
+
heroku config:set BMNDR_GOALNAME=your_memrise_goalname
|
41
|
+
# nb: this won't create the goal on memrise, you have to do
|
42
|
+
# that yourself. Use a "gain weight" goal, as the number of plants
|
43
|
+
# metric is absolute rather than relative.
|
44
|
+
|
34
45
|
|
35
46
|
|
36
47
|
## Contributing
|
data/lib/memorybee.rb
CHANGED
data/lib/memorybee/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: memorybee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -107,7 +107,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
107
|
version: '0'
|
108
108
|
segments:
|
109
109
|
- 0
|
110
|
-
hash:
|
110
|
+
hash: -3176605660707569962
|
111
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
112
|
none: false
|
113
113
|
requirements:
|
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
116
|
version: '0'
|
117
117
|
segments:
|
118
118
|
- 0
|
119
|
-
hash:
|
119
|
+
hash: -3176605660707569962
|
120
120
|
requirements: []
|
121
121
|
rubyforge_project:
|
122
122
|
rubygems_version: 1.8.23
|